本文整理汇总了Java中com.jgoodies.looks.Options.setDefaultIconSize方法的典型用法代码示例。如果您正苦于以下问题:Java Options.setDefaultIconSize方法的具体用法?Java Options.setDefaultIconSize怎么用?Java Options.setDefaultIconSize使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.jgoodies.looks.Options
的用法示例。
在下文中一共展示了Options.setDefaultIconSize方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: configureUI
import com.jgoodies.looks.Options; //导入方法依赖的package包/类
/**
* Configures the UI; tries to set the system look on Mac,
* <code>WindowsLookAndFeel</code> on general Windows, and
* <code>Plastic3DLookAndFeel</code> on Windows XP and all other OS.<p>
*
* The JGoodies Swing Suite's <code>ApplicationStarter</code>,
* <code>ExtUIManager</code>, and <code>LookChoiceStrategies</code>
* classes provide a much more fine grained algorithm to choose and
* restore a look and theme.
*/
private void configureUI ()
{
UIManager.put(Options.USE_SYSTEM_FONTS_APP_KEY, Boolean.TRUE);
//Options.setGlobalFontSizeHints(FontSizeHints.MIXED);
Options.setDefaultIconSize(new Dimension(18, 18));
String lafName
= LookUtils.IS_OS_WINDOWS_XP
? Options.getCrossPlatformLookAndFeelClassName()
: Options.getSystemLookAndFeelClassName();
try {
UIManager.setLookAndFeel(lafName);
} catch (Exception e) {
System.err.println("Can't set look & feel:" + e);
}
}
示例2: createInstance
import com.jgoodies.looks.Options; //导入方法依赖的package包/类
public static void createInstance() {
try {
Toolkit.getDefaultToolkit().setDynamicLayout(true);
System.setProperty("sun.awt.noerasebackground","true");
// JGoodies
Options.setDefaultIconSize(new Dimension(16, 16)); // menu icons
Options.setUseNarrowButtons(false);
Options.setPopupDropShadowEnabled(true);
UIManager.setLookAndFeel(System.getProperty("os.name").toLowerCase().startsWith("windows")
? new WindowsLookAndFeel() : new PlasticXPLookAndFeel());
_instance = new MainFrame();
} catch (Exception e) {
System.err.println(e);
}
}
示例3: configureUI
import com.jgoodies.looks.Options; //导入方法依赖的package包/类
/**
* Configures the UI; tries to set the system look on Mac,
* <code>WindowsLookAndFeel</code> on general Windows, and
* <code>Plastic3DLookAndFeel</code> on Windows XP and all other OS.<p>
*
* The JGoodies Swing Suite's <code>ApplicationStarter</code>,
* <code>ExtUIManager</code>, and <code>LookChoiceStrategies</code>
* classes provide a much more fine grained algorithm to choose and
* restore a look and theme.
*/
private void configureUI() {
UIManager.put(Options.USE_SYSTEM_FONTS_APP_KEY, Boolean.TRUE);
//Options.setGlobalFontSizeHints(FontSizeHints.MIXED);
Options.setDefaultIconSize(new Dimension(18, 18));
String lafName =
LookUtils.IS_OS_WINDOWS_XP
? Options.getCrossPlatformLookAndFeelClassName()
: Options.getSystemLookAndFeelClassName();
try {
UIManager.setLookAndFeel(lafName);
} catch (Exception e) {
System.err.println("Can't set look & feel:" + e);
}
}
示例4: createInstance
import com.jgoodies.looks.Options; //导入方法依赖的package包/类
public static void createInstance() {
try {
Toolkit.getDefaultToolkit().setDynamicLayout(true);
System.setProperty("sun.awt.noerasebackground","true");
// JGoodies
Options.setDefaultIconSize(new Dimension(16, 16)); // menu icons
Options.setUseNarrowButtons(false);
Options.setPopupDropShadowEnabled(true);
UIManager.setLookAndFeel(new PlasticXPLookAndFeel());
_instance = new MainFrame();
} catch (Exception e) {
System.err.println(e);
}
}
示例5: configureUI
import com.jgoodies.looks.Options; //导入方法依赖的package包/类
private static void configureUI(String plafURI) {
UIManager.put(Options.USE_SYSTEM_FONTS_APP_KEY, Boolean.TRUE);
// Options.setGlobalFontSizeHints(FontSizeHints.MIXED);
Options.setDefaultIconSize(new Dimension(18, 18));
try {
UIManager.setLookAndFeel(plafURI);
} catch (Exception e) {
System.err.println("Can't set look & feel:" + e);
}
}
示例6: configureUI
import com.jgoodies.looks.Options; //导入方法依赖的package包/类
private void configureUI() {
Options.setDefaultIconSize(new Dimension(18, 18));
Options.setUseNarrowButtons(this.settings.isUseNarrowButtons());
Options.setTabIconsEnabled(this.settings.isTabIconsEnabled());
UIManager.put("jgoodies.popupDropShadowEnabled", this.settings
.isPopupDropShadowEnabled());
LookAndFeel selectedLaf = this.settings.getSelectedLookAndFeel();
if ((selectedLaf instanceof PlasticLookAndFeel)) {
PlasticLookAndFeel
.setPlasticTheme(this.settings.getSelectedTheme());
PlasticLookAndFeel.setTabStyle(this.settings.getPlasticTabStyle());
PlasticLookAndFeel.setHighContrastFocusColorsEnabled(this.settings
.isPlasticHighContrastFocusEnabled());
} else if (selectedLaf.getClass() == MetalLookAndFeel.class) {
MetalLookAndFeel.setCurrentTheme(new DefaultMetalTheme());
}
JRadioButton radio = new JRadioButton();
radio.getUI().uninstallUI(radio);
JCheckBox checkBox = new JCheckBox();
checkBox.getUI().uninstallUI(checkBox);
try {
UIManager.setLookAndFeel(selectedLaf);
} catch (Exception e) {
System.out.println("Can't change L&F: " + e);
}
}
示例7: setDefaultIconSize
import com.jgoodies.looks.Options; //导入方法依赖的package包/类
/**
* @param size default Dimension for the icons.
* @see com.jgoodies.looks.Options#setDefaultIconSize(java.awt.Dimension)
*/
public void setDefaultIconSize(Dimension size) {
Options.setDefaultIconSize(size);
}