mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2025-12-07 14:30:56 +03:00
JIDE: JideTabbedPane: scale tab gripper
This commit is contained in:
@@ -369,6 +369,13 @@ public class FlatJideOssContainerTest
|
||||
tabbedPane.setShowTabButtons( showTabButtons );
|
||||
}
|
||||
|
||||
private void showGripperChanged() {
|
||||
boolean showGripper = showGripperCheckBox.isSelected();
|
||||
|
||||
for( JideTabbedPane tabbedPane : allTabbedPanes )
|
||||
tabbedPane.setShowGripper( showGripper );
|
||||
}
|
||||
|
||||
private void initComponents() {
|
||||
// JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents
|
||||
JPanel panel9 = new JPanel();
|
||||
@@ -405,6 +412,7 @@ public class FlatJideOssContainerTest
|
||||
boldActiveTabCheckBox = new JCheckBox();
|
||||
showTabButtonsCheckBox = new JCheckBox();
|
||||
smallerInsetsCheckBox = new JCheckBox();
|
||||
showGripperCheckBox = new JCheckBox();
|
||||
showTabSeparatorsCheckBox = new JCheckBox();
|
||||
hideTabAreaWithOneTabCheckBox = new JCheckBox();
|
||||
CellConstraints cc = new CellConstraints();
|
||||
@@ -600,6 +608,11 @@ public class FlatJideOssContainerTest
|
||||
smallerInsetsCheckBox.addActionListener(e -> smallerInsetsChanged());
|
||||
tabbedPaneControlPanel.add(smallerInsetsCheckBox, "cell 2 8");
|
||||
|
||||
//---- showGripperCheckBox ----
|
||||
showGripperCheckBox.setText("Show gripper");
|
||||
showGripperCheckBox.addActionListener(e -> showGripperChanged());
|
||||
tabbedPaneControlPanel.add(showGripperCheckBox, "cell 0 9");
|
||||
|
||||
//---- showTabSeparatorsCheckBox ----
|
||||
showTabSeparatorsCheckBox.setText("Show tab separators");
|
||||
showTabSeparatorsCheckBox.addActionListener(e -> showTabSeparatorsChanged());
|
||||
@@ -646,6 +659,7 @@ public class FlatJideOssContainerTest
|
||||
private JCheckBox boldActiveTabCheckBox;
|
||||
private JCheckBox showTabButtonsCheckBox;
|
||||
private JCheckBox smallerInsetsCheckBox;
|
||||
private JCheckBox showGripperCheckBox;
|
||||
private JCheckBox showTabSeparatorsCheckBox;
|
||||
private JCheckBox hideTabAreaWithOneTabCheckBox;
|
||||
// JFormDesigner - End of variables declaration //GEN-END:variables
|
||||
|
||||
@@ -337,6 +337,16 @@ new FormModel {
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 2 8"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
||||
name: "showGripperCheckBox"
|
||||
"text": "Show gripper"
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "showGripperChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 9"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
||||
name: "showTabSeparatorsCheckBox"
|
||||
"text": "Show tab separators"
|
||||
|
||||
Reference in New Issue
Block a user