com.jgoodies.looks.MicroLayouts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jgoodies-looks Show documentation
Show all versions of jgoodies-looks Show documentation
The JGoodies Looks make your Swing applications and
applets look better. They have been optimized for readability,
precise micro-design and usability. And they simplify
the multi-platform support by using similar widget dimensions.
In addition, many people have reviewed them as elegant.
/*
* Copyright (c) 2001-2012 JGoodies Karsten Lentzsch. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* o Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* o Neither the name of JGoodies Karsten Lentzsch nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.jgoodies.looks;
import java.awt.Insets;
import javax.swing.plaf.InsetsUIResource;
/**
* A factory that vends predefined MicroLayout instances.
*
* @author Karsten Lentzsch
* @version $Revision: 1.6 $
*
* @see MicroLayout
* @see MicroLayoutPolicy
* @see MicroLayoutPolicies
*
* @since 2.1
*/
public final class MicroLayouts {
private MicroLayouts() {
// Override default constructor; prevents instantation.
}
// Plastic and Plastic3D MicroLayouts *************************************
private static final InsetsUIResource PLASTIC_MENU_ITEM_MARGIN =
new InsetsUIResource(3, 0, 3, 0);
private static final InsetsUIResource PLASTIC_MENU_MARGIN =
new InsetsUIResource(2, 4, 2, 4);
private static final InsetsUIResource PLASTIC_CHECK_BOX_MARGIN =
new InsetsUIResource(2, 0, 2, 1);
public static MicroLayout createPlasticLowResMicroLayout() {
return new MicroLayout(
new InsetsUIResource(1, 1, 2, 1), // text insets
new InsetsUIResource(2, 2, 2, 1), // wrapped text insets
new InsetsUIResource(1, 1, 2, 1), // combo box editor insets
-1, // combo border size
1 , // combo popup border size
new Insets(2, 3, 3, 3), // button border insets
getButtonMargin(1, 1), // button margin
getButtonMargin(1, 1), // commit button margin
PLASTIC_CHECK_BOX_MARGIN, // check box margin
PLASTIC_MENU_ITEM_MARGIN, // menu item margin
PLASTIC_MENU_MARGIN, // menu margin
null // popup menu separator margin
);
}
public static MicroLayout createPlasticHiResMicroLayout() {
return new MicroLayout(
new InsetsUIResource(1, 1, 2, 1), // text insets
new InsetsUIResource(2, 2, 2, 1), // wrapped text insets
new InsetsUIResource(1, 1, 2, 1), // combo box editor insets
-1, // combo border size
1, // combo popup border size
new Insets(1, 3, 1, 3), // button border insets
getButtonMargin(2, 3), // button margin
getButtonMargin(2, 3), // commit button margin
PLASTIC_CHECK_BOX_MARGIN, // check box margin
PLASTIC_MENU_ITEM_MARGIN, // menu item margin
PLASTIC_MENU_MARGIN, // menu margin
null // popup menu separator margin
);
}
public static MicroLayout createPlasticVistaMicroLayout() {
return new MicroLayout(
new InsetsUIResource(1, 1, 1, 1), // text insets
new InsetsUIResource(1, 2, 1, 1), // wrapped text insets
new InsetsUIResource(1, 1, 1, 1), // combo box editor insets
-1, // combo border size
1, // combo popup border size
new Insets(2, 3, 3, 3), // button border insets
getButtonMargin(0, 1), // button margin
getButtonMargin(0, 1), // commit button margin
PLASTIC_CHECK_BOX_MARGIN, // check box margin
PLASTIC_MENU_ITEM_MARGIN, // menu item margin
PLASTIC_MENU_MARGIN, // menu margin
null // popup menu separator margin
);
}
public static MicroLayout createPlasticVistaClassicMicroLayout() {
return new MicroLayout(
new InsetsUIResource(1, 1, 2, 1), // text insets
new InsetsUIResource(2, 2, 2, 1), // wrapped text insets
new InsetsUIResource(1, 1, 2, 1), // combo box editor insets
-1, // combo border size
1, // combo popup border size
new Insets(3, 3, 3, 3), // button border insets
getButtonMargin(0, 1), // button margin
getButtonMargin(0, 1), // commit button margin
PLASTIC_CHECK_BOX_MARGIN, // check box margin
PLASTIC_MENU_ITEM_MARGIN, // menu item margin
PLASTIC_MENU_MARGIN, // menu margin
null // popup menu separator margin
);
}
// PlasticXP MicroLayouts *************************************************
public static MicroLayout createPlasticXPLowResMicroLayout() {
return new MicroLayout(
new InsetsUIResource(2, 2, 3, 2), // text insets
new InsetsUIResource(2, 2, 3, 2), // wrapped text insets
new InsetsUIResource(2, 2, 3, 2), // combo box editor insets
-1, // combo border size
1, // combo popup border size
new Insets(3, 2, 3, 2), // button border insets
getButtonMargin(0, 1), // button margin
getButtonMargin(0, 1), // commit button margin
PLASTIC_CHECK_BOX_MARGIN, // check box margin
PLASTIC_MENU_ITEM_MARGIN, // menu item margin
PLASTIC_MENU_MARGIN, // menu margin
null // popup menu separator margin
);
}
public static MicroLayout createPlasticXPHiResMicroLayout() {
return new MicroLayout(
new InsetsUIResource(2, 2, 3, 2), // text insets
new InsetsUIResource(2, 2, 3, 2), // wrapped text insets
new InsetsUIResource(2, 2, 3, 2), // combo box editor insets
-1, // combo border size
1, // combo popup border size
new Insets(2, 2, 2, 2), // button border insets
getButtonMargin(1, 2), // button margin
getButtonMargin(1, 2), // commit button margin
PLASTIC_CHECK_BOX_MARGIN, // check box margin
PLASTIC_MENU_ITEM_MARGIN, // menu item margin
PLASTIC_MENU_MARGIN, // menu margin
null // popup menu separator margin
);
}
public static MicroLayout createPlasticXPVistaMicroLayout() {
return new MicroLayout(
new InsetsUIResource(1, 2, 2, 2), // text insets
new InsetsUIResource(1, 2, 2, 2), // wrapped text insets
new InsetsUIResource(1, 2, 2, 2), // combo box editor insets
-1, // combo border size
1, // combo popup border size
new Insets(2, 2, 3, 2), // button border insets
getButtonMargin(0, 0), // button margin
getButtonMargin(0, 0), // commit button margin
PLASTIC_CHECK_BOX_MARGIN, // check box margin
PLASTIC_MENU_ITEM_MARGIN, // menu item margin
PLASTIC_MENU_MARGIN, // menu margin
null // popup menu separator margin
);
}
public static MicroLayout createPlasticXPVistaClassicMicroLayout() {
return new MicroLayout(
new InsetsUIResource(2, 2, 3, 2), // text insets
new InsetsUIResource(2, 2, 3, 2), // wrapped text insets
new InsetsUIResource(2, 2, 3, 2), // combo box editor insets
-1, // combo border size
1, // combo popup border size
new Insets(3, 2, 4, 2), // button border insets
getButtonMargin(0, 0), // button margin
getButtonMargin(0, 0), // commit button margin
PLASTIC_CHECK_BOX_MARGIN, // check box margin
PLASTIC_MENU_ITEM_MARGIN, // menu item margin
PLASTIC_MENU_MARGIN, // menu margin
null // popup menu separator margin
);
}
// Windows MicroLayouts ***************************************************
private static final InsetsUIResource WINDOWS_CHECK_BOX_MARGIN =
new InsetsUIResource(2, 0, 2, 0);
public static MicroLayout createWindowsClassicLowResMicroLayout() {
return new MicroLayout(
new InsetsUIResource(1, 2, 2, 2), // text insets
new InsetsUIResource(1, 2, 2, 2), // wrapped text insets
new InsetsUIResource(1, 2, 2, 2), // combo box editor insets
2, // combo border size
1, // combo popup border size
new Insets(3, 2, 4, 2), // button border insets
getButtonMargin(1, 1), // button margin
getButtonMargin(1, 1), // commit button margin
WINDOWS_CHECK_BOX_MARGIN, // check box margin
new InsetsUIResource(3, 0, 3, 0), // menu item margin
new InsetsUIResource(2, 3, 2, 3), // menu margin
new InsetsUIResource(2, 0, 3, 0) // popup menu separator margin
);
}
public static MicroLayout createWindowsClassicHiResMicroLayout() {
return new MicroLayout(
new InsetsUIResource(1, 2, 2, 2), // text insets
new InsetsUIResource(1, 2, 2, 2), // wrapped text insets
new InsetsUIResource(1, 2, 2, 2), // combo box editor insets
2, // combo border size
1, // combo popup border size
new Insets(3, 2, 4, 2), // button border insets
getButtonMargin(1, 1), // button margin
getButtonMargin(1, 1), // commit button margin
WINDOWS_CHECK_BOX_MARGIN, // check box margin
new InsetsUIResource(2, 0, 2, 0), // menu item margin
new InsetsUIResource(2, 4, 2, 4), // menu margin
new InsetsUIResource(3, 0, 4, 0) // popup menu separator margin
);
}
public static MicroLayout createWindowsXPLowResMicroLayout() {
return new MicroLayout(
new InsetsUIResource(2, 2, 3, 2), // text insets
new InsetsUIResource(2, 2, 3, 2), // wrapped text insets
new InsetsUIResource(2, 2, 3, 2), // combo box editor insets
1, // combo border size
1, // combo popup border size
new Insets(3, 2, 4, 2), // button border insets
getButtonMargin(2, 3), // button margin
getButtonMargin(2, 3), // commit button margin
WINDOWS_CHECK_BOX_MARGIN, // check box margin
new InsetsUIResource(3, 0, 3, 0), // menu item margin
new InsetsUIResource(2, 3, 2, 4), // menu margin
new InsetsUIResource(2, 3, 3, 3) // popup menu separator margin
);
}
public static MicroLayout createWindowsXPHiResMicroLayout() {
return new MicroLayout(
new InsetsUIResource(2, 2, 3, 2), // text insets
new InsetsUIResource(2, 2, 3, 2), // wrapped text insets
new InsetsUIResource(2, 2, 3, 2), // combo box editor insets
1, // combo border size
1, // combo popup border size
new Insets(3, 2, 4, 2), // button border insets
getButtonMargin(2, 3), // button margin
getButtonMargin(2, 3), // commit button margin
WINDOWS_CHECK_BOX_MARGIN, // check box margin
new InsetsUIResource(2, 0, 2, 0), // menu item margin
new InsetsUIResource(2, 5, 2, 6), // menu margin
new InsetsUIResource(3, 3, 4, 3) // popup menu separator margin
);
}
public static MicroLayout createWindowsVistaLowResMicroLayout() {
return new MicroLayout(
new InsetsUIResource(1, 2, 2, 2), // text insets
new InsetsUIResource(1, 2, 2, 2), // wrapped text insets
new InsetsUIResource(1, 2, 2, 2), // combo box editor insets
1, // combo border size
1, // combo popup border size
new Insets(3, 2, 4, 2), // button border insets
getButtonMargin(1, 2), // button margin
getButtonMargin(1, 2), // commit button margin
WINDOWS_CHECK_BOX_MARGIN, // check box margin
new InsetsUIResource(3, 0, 3, 0), // menu item margin
new InsetsUIResource(2, 3, 2, 4), // menu margin
new InsetsUIResource(2, 3, 3, 3) // popup menu separator margin
);
}
public static MicroLayout createWindowsVistaHiResMicroLayout() {
return new MicroLayout(
new InsetsUIResource(1, 2, 2, 2), // text insets
new InsetsUIResource(1, 2, 2, 2), // wrapped text insets
new InsetsUIResource(1, 2, 2, 2), // combo box editor insets
1, // combo border size
1, // combo popup border size
new Insets(3, 2, 4, 2), // button border insets
getButtonMargin(1, 2), // button margin
getButtonMargin(1, 2), // commit button margin
WINDOWS_CHECK_BOX_MARGIN, // check box margin
new InsetsUIResource(2, 0, 2, 0), // menu item margin
new InsetsUIResource(2, 5, 2, 6), // menu margin
new InsetsUIResource(3, 3, 4, 3) // popup menu separator margin
);
}
// Helper Code ************************************************************
private static InsetsUIResource getButtonMargin(int top, int bottom) {
int pad = Options.getUseNarrowButtons() ? 4 : 14;
return new InsetsUIResource(top, pad, bottom, pad);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy