mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-11 06:27:13 -06:00
macOS window buttons spacing:
- renamed client property `MACOS_WINDOW_BUTTON_STYLE` to `MACOS_WINDOW_BUTTONS_SPACING` - no longer allow value `true` for that client property - enable using `MACOS_WINDOW_BUTTONS_SPACING` without `apple.awt.fullWindowContent` - remove client property `FULL_WINDOW_CONTENT_BUTTONS_BOUNDS` when `apple.awt.fullWindowContent` is set to false or null - added placeholder options `zeroInFullScreen`, `leftToRight` and `rightToLeft` - hide close/min/max buttons during the transition from full-screen to non-full-screen to avoid that they "jump" when the nsToolbar is made visible - fixed: full-screen listeners where added multiple times - updated macOS native libraries - added `FlatMacOSTest`
This commit is contained in:
@@ -0,0 +1,283 @@
|
||||
/*
|
||||
* Copyright 2024 FormDev Software GmbH
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.formdev.flatlaf.testing;
|
||||
|
||||
import java.awt.*;
|
||||
import javax.swing.*;
|
||||
import com.formdev.flatlaf.FlatClientProperties;
|
||||
import com.formdev.flatlaf.ui.FlatNativeMacLibrary;
|
||||
import com.formdev.flatlaf.util.SystemInfo;
|
||||
import net.miginfocom.swing.*;
|
||||
|
||||
/**
|
||||
* @author Karl Tauber
|
||||
*/
|
||||
public class FlatMacOSTest
|
||||
extends FlatTestPanel
|
||||
{
|
||||
public static void main( String[] args ) {
|
||||
SwingUtilities.invokeLater( () -> {
|
||||
FlatTestFrame frame = FlatTestFrame.create( args, FlatMacOSTest.class.getSimpleName() );
|
||||
frame.applyComponentOrientationToFrame = true;
|
||||
|
||||
JRootPane rootPane = frame.getRootPane();
|
||||
rootPane.putClientProperty( "apple.awt.fullWindowContent", true );
|
||||
rootPane.putClientProperty( "apple.awt.transparentTitleBar", true );
|
||||
rootPane.putClientProperty( "apple.awt.windowTitleVisible", false );
|
||||
|
||||
frame.showFrame( FlatMacOSTest::new );
|
||||
} );
|
||||
}
|
||||
|
||||
FlatMacOSTest() {
|
||||
initComponents();
|
||||
|
||||
if( SystemInfo.isMacFullWindowContentSupported ) {
|
||||
fullWindowContentHint.setVisible( false );
|
||||
transparentTitleBarHint.setVisible( false );
|
||||
}
|
||||
if( SystemInfo.isJava_17_orLater ) {
|
||||
windowTitleVisibleHint.setVisible( false );
|
||||
buttonsSpacingHint.setVisible( false );
|
||||
}
|
||||
|
||||
placeholderPanel.putClientProperty( FlatClientProperties.FULL_WINDOW_CONTENT_BUTTONS_PLACEHOLDER, "mac zeroInFullScreen" );
|
||||
UIManager.put( "FlatLaf.debug.panel.showPlaceholders", true );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addNotify() {
|
||||
super.addNotify();
|
||||
|
||||
JRootPane rootPane = getRootPane();
|
||||
fullWindowContentCheckBox.setSelected( FlatClientProperties.clientPropertyBoolean( rootPane, "apple.awt.fullWindowContent", false ) );
|
||||
transparentTitleBarCheckBox.setSelected( FlatClientProperties.clientPropertyBoolean( rootPane, "apple.awt.transparentTitleBar", false ) );
|
||||
windowTitleVisibleCheckBox.setSelected( FlatClientProperties.clientPropertyBoolean( rootPane, "apple.awt.windowTitleVisible", true ) );
|
||||
|
||||
rootPane.addPropertyChangeListener( FlatClientProperties.FULL_WINDOW_CONTENT_BUTTONS_BOUNDS, e -> {
|
||||
Rectangle bounds = (Rectangle) e.getNewValue();
|
||||
fullWindowContentButtonsBoundsField.setText( bounds2string( bounds ) );
|
||||
} );
|
||||
updateNativeButtonBounds();
|
||||
}
|
||||
|
||||
private void fullWindowContentChanged() {
|
||||
getRootPane().putClientProperty( "apple.awt.fullWindowContent", fullWindowContentCheckBox.isSelected() );
|
||||
}
|
||||
|
||||
private void transparentTitleBarChanged() {
|
||||
getRootPane().putClientProperty( "apple.awt.transparentTitleBar", transparentTitleBarCheckBox.isSelected() );
|
||||
}
|
||||
|
||||
private void windowTitleVisibleChanged() {
|
||||
getRootPane().putClientProperty( "apple.awt.windowTitleVisible", windowTitleVisibleCheckBox.isSelected() );
|
||||
}
|
||||
|
||||
private void buttonsSpacingChanged() {
|
||||
String buttonsSpacing = null;
|
||||
if( buttonsSpacingMediumRadioButton.isSelected() )
|
||||
buttonsSpacing = FlatClientProperties.MACOS_WINDOW_BUTTONS_SPACING_MEDIUM;
|
||||
else if( buttonsSpacingLargeRadioButton.isSelected() )
|
||||
buttonsSpacing = FlatClientProperties.MACOS_WINDOW_BUTTONS_SPACING_LARGE;
|
||||
|
||||
getRootPane().putClientProperty( FlatClientProperties.MACOS_WINDOW_BUTTONS_SPACING, buttonsSpacing );
|
||||
|
||||
updateNativeButtonBounds();
|
||||
}
|
||||
|
||||
private void updateNativeButtonBounds() {
|
||||
if( !FlatNativeMacLibrary.isLoaded() )
|
||||
return;
|
||||
|
||||
Window window = SwingUtilities.windowForComponent( this );
|
||||
Rectangle bounds = FlatNativeMacLibrary.getWindowButtonsBounds( window );
|
||||
nativeButtonsBoundsField.setText( bounds2string( bounds ) );
|
||||
}
|
||||
|
||||
private String bounds2string( Rectangle bounds ) {
|
||||
return (bounds != null)
|
||||
? bounds.width + ", " + bounds.height + " @ " + bounds.x + ", " + bounds.y
|
||||
: "null";
|
||||
}
|
||||
|
||||
private void toggleFullScreen() {
|
||||
if( !FlatNativeMacLibrary.isLoaded() )
|
||||
return;
|
||||
|
||||
Window window = SwingUtilities.windowForComponent( this );
|
||||
FlatNativeMacLibrary.toggleWindowFullScreen( window );
|
||||
}
|
||||
|
||||
private void initComponents() {
|
||||
// JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents
|
||||
JPanel panel1 = new JPanel();
|
||||
placeholderPanel = new JPanel();
|
||||
JPanel panel2 = new JPanel();
|
||||
fullWindowContentCheckBox = new JCheckBox();
|
||||
fullWindowContentHint = new JLabel();
|
||||
transparentTitleBarCheckBox = new JCheckBox();
|
||||
transparentTitleBarHint = new JLabel();
|
||||
windowTitleVisibleCheckBox = new JCheckBox();
|
||||
windowTitleVisibleHint = new JLabel();
|
||||
JLabel buttonsSpacingLabel = new JLabel();
|
||||
buttonsSpacingDefaultRadioButton = new JRadioButton();
|
||||
buttonsSpacingMediumRadioButton = new JRadioButton();
|
||||
buttonsSpacingLargeRadioButton = new JRadioButton();
|
||||
buttonsSpacingHint = new JLabel();
|
||||
JLabel fullWindowContentButtonsBoundsLabel = new JLabel();
|
||||
fullWindowContentButtonsBoundsField = new JLabel();
|
||||
JLabel nativeButtonsBoundsLabel = new JLabel();
|
||||
nativeButtonsBoundsField = new JLabel();
|
||||
JButton toggleFullScreenButton = new JButton();
|
||||
|
||||
//======== this ========
|
||||
setLayout(new BorderLayout());
|
||||
|
||||
//======== panel1 ========
|
||||
{
|
||||
panel1.setLayout(new BorderLayout());
|
||||
|
||||
//======== placeholderPanel ========
|
||||
{
|
||||
placeholderPanel.setBackground(Color.green);
|
||||
placeholderPanel.setLayout(new FlowLayout());
|
||||
}
|
||||
panel1.add(placeholderPanel, BorderLayout.WEST);
|
||||
}
|
||||
add(panel1, BorderLayout.PAGE_START);
|
||||
|
||||
//======== panel2 ========
|
||||
{
|
||||
panel2.setLayout(new MigLayout(
|
||||
"ltr,insets dialog,hidemode 3",
|
||||
// columns
|
||||
"[left]" +
|
||||
"[left]" +
|
||||
"[left]" +
|
||||
"[left]para" +
|
||||
"[fill]",
|
||||
// rows
|
||||
"[]" +
|
||||
"[]" +
|
||||
"[]" +
|
||||
"[fill]" +
|
||||
"[]" +
|
||||
"[]para" +
|
||||
"[]"));
|
||||
|
||||
//---- fullWindowContentCheckBox ----
|
||||
fullWindowContentCheckBox.setText("fullWindowContent");
|
||||
fullWindowContentCheckBox.addActionListener(e -> fullWindowContentChanged());
|
||||
panel2.add(fullWindowContentCheckBox, "cell 0 0");
|
||||
|
||||
//---- fullWindowContentHint ----
|
||||
fullWindowContentHint.setText("requires Java 12, 11.0.8 or 8u292");
|
||||
fullWindowContentHint.setForeground(Color.red);
|
||||
panel2.add(fullWindowContentHint, "cell 4 0");
|
||||
|
||||
//---- transparentTitleBarCheckBox ----
|
||||
transparentTitleBarCheckBox.setText("transparentTitleBar");
|
||||
transparentTitleBarCheckBox.addActionListener(e -> transparentTitleBarChanged());
|
||||
panel2.add(transparentTitleBarCheckBox, "cell 0 1");
|
||||
|
||||
//---- transparentTitleBarHint ----
|
||||
transparentTitleBarHint.setText("requires Java 12, 11.0.8 or 8u292");
|
||||
transparentTitleBarHint.setForeground(Color.red);
|
||||
panel2.add(transparentTitleBarHint, "cell 4 1");
|
||||
|
||||
//---- windowTitleVisibleCheckBox ----
|
||||
windowTitleVisibleCheckBox.setText("windowTitleVisible");
|
||||
windowTitleVisibleCheckBox.addActionListener(e -> windowTitleVisibleChanged());
|
||||
panel2.add(windowTitleVisibleCheckBox, "cell 0 2");
|
||||
|
||||
//---- windowTitleVisibleHint ----
|
||||
windowTitleVisibleHint.setText("requires Java 17");
|
||||
windowTitleVisibleHint.setForeground(Color.red);
|
||||
panel2.add(windowTitleVisibleHint, "cell 4 2");
|
||||
|
||||
//---- buttonsSpacingLabel ----
|
||||
buttonsSpacingLabel.setText("Buttons spacing:");
|
||||
panel2.add(buttonsSpacingLabel, "cell 0 3");
|
||||
|
||||
//---- buttonsSpacingDefaultRadioButton ----
|
||||
buttonsSpacingDefaultRadioButton.setText("Default");
|
||||
buttonsSpacingDefaultRadioButton.setSelected(true);
|
||||
buttonsSpacingDefaultRadioButton.addActionListener(e -> buttonsSpacingChanged());
|
||||
panel2.add(buttonsSpacingDefaultRadioButton, "cell 1 3");
|
||||
|
||||
//---- buttonsSpacingMediumRadioButton ----
|
||||
buttonsSpacingMediumRadioButton.setText("Medium");
|
||||
buttonsSpacingMediumRadioButton.addActionListener(e -> buttonsSpacingChanged());
|
||||
panel2.add(buttonsSpacingMediumRadioButton, "cell 2 3");
|
||||
|
||||
//---- buttonsSpacingLargeRadioButton ----
|
||||
buttonsSpacingLargeRadioButton.setText("Large");
|
||||
buttonsSpacingLargeRadioButton.addActionListener(e -> buttonsSpacingChanged());
|
||||
panel2.add(buttonsSpacingLargeRadioButton, "cell 3 3");
|
||||
|
||||
//---- buttonsSpacingHint ----
|
||||
buttonsSpacingHint.setText("requires Java 17");
|
||||
buttonsSpacingHint.setForeground(Color.red);
|
||||
panel2.add(buttonsSpacingHint, "cell 4 3");
|
||||
|
||||
//---- fullWindowContentButtonsBoundsLabel ----
|
||||
fullWindowContentButtonsBoundsLabel.setText("Buttons bounds:");
|
||||
panel2.add(fullWindowContentButtonsBoundsLabel, "cell 0 4");
|
||||
|
||||
//---- fullWindowContentButtonsBoundsField ----
|
||||
fullWindowContentButtonsBoundsField.setText("null");
|
||||
panel2.add(fullWindowContentButtonsBoundsField, "cell 1 4 3 1");
|
||||
|
||||
//---- nativeButtonsBoundsLabel ----
|
||||
nativeButtonsBoundsLabel.setText("Native buttons bounds:");
|
||||
panel2.add(nativeButtonsBoundsLabel, "cell 0 5");
|
||||
|
||||
//---- nativeButtonsBoundsField ----
|
||||
nativeButtonsBoundsField.setText("null");
|
||||
panel2.add(nativeButtonsBoundsField, "cell 1 5 3 1");
|
||||
|
||||
//---- toggleFullScreenButton ----
|
||||
toggleFullScreenButton.setText("Toggle Full Screen");
|
||||
toggleFullScreenButton.addActionListener(e -> toggleFullScreen());
|
||||
panel2.add(toggleFullScreenButton, "cell 0 6");
|
||||
}
|
||||
add(panel2, BorderLayout.CENTER);
|
||||
|
||||
//---- buttonsSpacingButtonGroup ----
|
||||
ButtonGroup buttonsSpacingButtonGroup = new ButtonGroup();
|
||||
buttonsSpacingButtonGroup.add(buttonsSpacingDefaultRadioButton);
|
||||
buttonsSpacingButtonGroup.add(buttonsSpacingMediumRadioButton);
|
||||
buttonsSpacingButtonGroup.add(buttonsSpacingLargeRadioButton);
|
||||
// JFormDesigner - End of component initialization //GEN-END:initComponents
|
||||
}
|
||||
|
||||
// JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables
|
||||
private JPanel placeholderPanel;
|
||||
private JCheckBox fullWindowContentCheckBox;
|
||||
private JLabel fullWindowContentHint;
|
||||
private JCheckBox transparentTitleBarCheckBox;
|
||||
private JLabel transparentTitleBarHint;
|
||||
private JCheckBox windowTitleVisibleCheckBox;
|
||||
private JLabel windowTitleVisibleHint;
|
||||
private JRadioButton buttonsSpacingDefaultRadioButton;
|
||||
private JRadioButton buttonsSpacingMediumRadioButton;
|
||||
private JRadioButton buttonsSpacingLargeRadioButton;
|
||||
private JLabel buttonsSpacingHint;
|
||||
private JLabel fullWindowContentButtonsBoundsField;
|
||||
private JLabel nativeButtonsBoundsField;
|
||||
// JFormDesigner - End of variables declaration //GEN-END:variables
|
||||
}
|
||||
@@ -0,0 +1,191 @@
|
||||
JFDML JFormDesigner: "8.2.1.0.348" Java: "21.0.1" encoding: "UTF-8"
|
||||
|
||||
new FormModel {
|
||||
contentType: "form/swing"
|
||||
root: new FormRoot {
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.defaultVariableLocal": true
|
||||
}
|
||||
add( new FormContainer( "com.formdev.flatlaf.testing.FlatTestPanel", new FormLayoutManager( class java.awt.BorderLayout ) ) {
|
||||
name: "this"
|
||||
add( new FormContainer( "javax.swing.JPanel", new FormLayoutManager( class java.awt.BorderLayout ) ) {
|
||||
name: "panel1"
|
||||
add( new FormContainer( "javax.swing.JPanel", new FormLayoutManager( class java.awt.FlowLayout ) ) {
|
||||
name: "placeholderPanel"
|
||||
"background": sfield java.awt.Color green
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
}, new FormLayoutConstraints( class java.lang.String ) {
|
||||
"value": "West"
|
||||
} )
|
||||
}, new FormLayoutConstraints( class java.lang.String ) {
|
||||
"value": "First"
|
||||
} )
|
||||
add( new FormContainer( "javax.swing.JPanel", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
|
||||
"$layoutConstraints": "ltr,insets dialog,hidemode 3"
|
||||
"$columnConstraints": "[left][left][left][left]para[fill]"
|
||||
"$rowConstraints": "[][][][fill][][]para[]"
|
||||
} ) {
|
||||
name: "panel2"
|
||||
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
||||
name: "fullWindowContentCheckBox"
|
||||
"text": "fullWindowContent"
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "fullWindowContentChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 0"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "fullWindowContentHint"
|
||||
"text": "requires Java 12, 11.0.8 or 8u292"
|
||||
"foreground": sfield java.awt.Color red
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 4 0"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
||||
name: "transparentTitleBarCheckBox"
|
||||
"text": "transparentTitleBar"
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "transparentTitleBarChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 1"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "transparentTitleBarHint"
|
||||
"text": "requires Java 12, 11.0.8 or 8u292"
|
||||
"foreground": sfield java.awt.Color red
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 4 1"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JCheckBox" ) {
|
||||
name: "windowTitleVisibleCheckBox"
|
||||
"text": "windowTitleVisible"
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "windowTitleVisibleChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 2"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "windowTitleVisibleHint"
|
||||
"text": "requires Java 17"
|
||||
"foreground": sfield java.awt.Color red
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 4 2"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "buttonsSpacingLabel"
|
||||
"text": "Buttons spacing:"
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 3"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JRadioButton" ) {
|
||||
name: "buttonsSpacingDefaultRadioButton"
|
||||
"text": "Default"
|
||||
"$buttonGroup": new FormReference( "buttonsSpacingButtonGroup" )
|
||||
"selected": true
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "buttonsSpacingChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 1 3"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JRadioButton" ) {
|
||||
name: "buttonsSpacingMediumRadioButton"
|
||||
"text": "Medium"
|
||||
"$buttonGroup": new FormReference( "buttonsSpacingButtonGroup" )
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "buttonsSpacingChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 2 3"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JRadioButton" ) {
|
||||
name: "buttonsSpacingLargeRadioButton"
|
||||
"text": "Large"
|
||||
"$buttonGroup": new FormReference( "buttonsSpacingButtonGroup" )
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "buttonsSpacingChanged", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 3 3"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "buttonsSpacingHint"
|
||||
"text": "requires Java 17"
|
||||
"foreground": sfield java.awt.Color red
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 4 3"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "fullWindowContentButtonsBoundsLabel"
|
||||
"text": "Buttons bounds:"
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 4"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "fullWindowContentButtonsBoundsField"
|
||||
"text": "null"
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 1 4 3 1"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "nativeButtonsBoundsLabel"
|
||||
"text": "Native buttons bounds:"
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 5"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JLabel" ) {
|
||||
name: "nativeButtonsBoundsField"
|
||||
"text": "null"
|
||||
auxiliary() {
|
||||
"JavaCodeGenerator.variableLocal": false
|
||||
}
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 1 5 3 1"
|
||||
} )
|
||||
add( new FormComponent( "javax.swing.JButton" ) {
|
||||
name: "toggleFullScreenButton"
|
||||
"text": "Toggle Full Screen"
|
||||
addEvent( new FormEvent( "java.awt.event.ActionListener", "actionPerformed", "toggleFullScreen", false ) )
|
||||
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
|
||||
"value": "cell 0 6"
|
||||
} )
|
||||
}, new FormLayoutConstraints( class java.lang.String ) {
|
||||
"value": "Center"
|
||||
} )
|
||||
}, new FormLayoutConstraints( null ) {
|
||||
"location": new java.awt.Point( 0, 0 )
|
||||
"size": new java.awt.Dimension( 725, 350 )
|
||||
} )
|
||||
add( new FormNonVisual( "javax.swing.ButtonGroup" ) {
|
||||
name: "buttonsSpacingButtonGroup"
|
||||
}, new FormLayoutConstraints( null ) {
|
||||
"location": new java.awt.Point( 0, 360 )
|
||||
} )
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user