/* * This file is part of WebLookAndFeel library. * * WebLookAndFeel library is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * WebLookAndFeel library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with WebLookAndFeel library. If not, see . */ package com.alee.laf.checkbox; import com.alee.laf.WebLookAndFeel; import com.alee.managers.hotkey.HotkeyData; import com.alee.managers.hotkey.HotkeyInfo; import com.alee.managers.hotkey.HotkeyManager; import com.alee.managers.language.LanguageManager; import com.alee.managers.language.LanguageMethods; import com.alee.managers.language.data.TooltipWay; import com.alee.managers.language.updaters.LanguageUpdater; import com.alee.managers.settings.DefaultValue; import com.alee.managers.settings.SettingsManager; import com.alee.managers.settings.SettingsMethods; import com.alee.managers.settings.SettingsProcessor; import com.alee.utils.ReflectUtils; import com.alee.utils.SizeUtils; import com.alee.utils.SwingUtils; import com.alee.utils.laf.ShapeProvider; import com.alee.utils.swing.FontMethods; import com.alee.utils.swing.SizeMethods; import javax.swing.*; import java.awt.*; import java.util.List; /** * User: mgarin Date: 28.06.11 Time: 0:50 */ public class WebCheckBox extends JCheckBox implements ShapeProvider, LanguageMethods, SettingsMethods, FontMethods, SizeMethods { public WebCheckBox () { super (); } public WebCheckBox ( final boolean selected ) { super ( "", selected ); } public WebCheckBox ( final Icon icon ) { super ( icon ); } public WebCheckBox ( final Icon icon, final boolean selected ) { super ( icon, selected ); } public WebCheckBox ( final String text ) { super ( text ); } public WebCheckBox ( final Action a ) { super ( a ); } public WebCheckBox ( final String text, final boolean selected ) { super ( text, selected ); } public WebCheckBox ( final String text, final Icon icon ) { super ( text, icon ); } public WebCheckBox ( final String text, final Icon icon, final boolean selected ) { super ( text, icon, selected ); } /** * Proxified kotkey manager methods */ public HotkeyInfo addHotkey ( final Integer keyCode ) { return addHotkey ( new HotkeyData ( keyCode ) ); } public HotkeyInfo addHotkey ( final boolean isCtrl, final boolean isAlt, final boolean isShift, final Integer keyCode ) { return addHotkey ( new HotkeyData ( isCtrl, isAlt, isShift, keyCode ) ); } public HotkeyInfo addHotkey ( final HotkeyData hotkeyData ) { return HotkeyManager.registerHotkey ( this, hotkeyData ); } public HotkeyInfo addHotkey ( final HotkeyData hotkeyData, final boolean hidden ) { return HotkeyManager.registerHotkey ( this, hotkeyData, hidden ); } public HotkeyInfo addHotkey ( final HotkeyData hotkeyData, final TooltipWay tooltipWay ) { return HotkeyManager.registerHotkey ( this, hotkeyData, tooltipWay ); } public HotkeyInfo addHotkey ( final Component topComponent, final HotkeyData hotkeyData ) { return HotkeyManager.registerHotkey ( topComponent, this, hotkeyData ); } public HotkeyInfo addHotkey ( final Component topComponent, final HotkeyData hotkeyData, final boolean hidden ) { return HotkeyManager.registerHotkey ( topComponent, this, hotkeyData, hidden ); } public HotkeyInfo addHotkey ( final Component topComponent, final HotkeyData hotkeyData, final TooltipWay tooltipWay ) { return HotkeyManager.registerHotkey ( topComponent, this, hotkeyData, tooltipWay ); } public List getHotkeys () { return HotkeyManager.getComponentHotkeys ( this ); } public void removeHotkey ( final HotkeyInfo hotkeyInfo ) { HotkeyManager.unregisterHotkey ( hotkeyInfo ); } public void removeHotkeys () { HotkeyManager.unregisterHotkeys ( this ); } /** * UI methods */ @Override public Insets getMargin () { return getWebUI ().getMargin (); } @Override public void setMargin ( final Insets margin ) { getWebUI ().setMargin ( margin ); } public void setMargin ( final int top, final int left, final int bottom, final int right ) { setMargin ( new Insets ( top, left, bottom, right ) ); } public void setMargin ( final int spacing ) { setMargin ( spacing, spacing, spacing, spacing ); } public boolean isAnimated () { return getWebUI ().isAnimated (); } public void setAnimated ( final boolean animated ) { getWebUI ().setAnimated ( animated ); } public boolean isRolloverDarkBorderOnly () { return getWebUI ().isRolloverDarkBorderOnly (); } public void setRolloverDarkBorderOnly ( final boolean rolloverDarkBorderOnly ) { getWebUI ().setRolloverDarkBorderOnly ( rolloverDarkBorderOnly ); } public Color getBorderColor () { return getWebUI ().getBorderColor (); } public void setBorderColor ( final Color borderColor ) { getWebUI ().setBorderColor ( borderColor ); } public Color getDarkBorderColor () { return getWebUI ().getDarkBorderColor (); } public void setDarkBorderColor ( final Color darkBorderColor ) { getWebUI ().setDarkBorderColor ( darkBorderColor ); } public Color getDisabledBorderColor () { return getWebUI ().getDisabledBorderColor (); } public void setDisabledBorderColor ( final Color disabledBorderColor ) { getWebUI ().setDisabledBorderColor ( disabledBorderColor ); } public Color getTopBgColor () { return getWebUI ().getTopBgColor (); } public void setTopBgColor ( final Color topBgColor ) { getWebUI ().setTopBgColor ( topBgColor ); } public Color getBottomBgColor () { return getWebUI ().getBottomBgColor (); } public void setBottomBgColor ( final Color bottomBgColor ) { getWebUI ().setBottomBgColor ( bottomBgColor ); } public Color getTopSelectedBgColor () { return getWebUI ().getTopSelectedBgColor (); } public void setTopSelectedBgColor ( final Color topSelectedBgColor ) { getWebUI ().setTopSelectedBgColor ( topSelectedBgColor ); } public Color getBottomSelectedBgColor () { return getWebUI ().getBottomSelectedBgColor (); } public void setBottomSelectedBgColor ( final Color bottomSelectedBgColor ) { getWebUI ().setBottomSelectedBgColor ( bottomSelectedBgColor ); } public int getRound () { return getWebUI ().getRound (); } public void setRound ( final int round ) { getWebUI ().setRound ( round ); } public int getShadeWidth () { return getWebUI ().getShadeWidth (); } public void setShadeWidth ( final int shadeWidth ) { getWebUI ().setShadeWidth ( shadeWidth ); } public int getIconWidth () { return getWebUI ().getIconWidth (); } public void setIconWidth ( final int iconWidth ) { getWebUI ().setIconWidth ( iconWidth ); } public int getIconHeight () { return getWebUI ().getIconHeight (); } public void setIconHeight ( final int iconHeight ) { getWebUI ().setIconHeight ( iconHeight ); } @Override public void setSelected ( final boolean b ) { setSelected ( b, isShowing () ); } public void setSelected ( final boolean b, final boolean withAnimation ) { final boolean animated = isAnimated (); if ( !withAnimation && animated ) { setAnimated ( false ); } super.setSelected ( b ); if ( !withAnimation ) { setAnimated ( animated ); } } @Override public Shape provideShape () { return getWebUI ().provideShape (); } public WebCheckBoxUI getWebUI () { return ( WebCheckBoxUI ) getUI (); } @Override public void updateUI () { if ( getUI () == null || !( getUI () instanceof WebCheckBoxUI ) ) { try { setUI ( ( WebCheckBoxUI ) ReflectUtils.createInstance ( WebLookAndFeel.checkBoxUI ) ); } catch ( final Throwable e ) { e.printStackTrace (); setUI ( new WebCheckBoxUI () ); } } else { setUI ( getUI () ); } } /** * Language methods */ /** * {@inheritDoc} */ @Override public void setLanguage ( final String key, final Object... data ) { LanguageManager.registerComponent ( this, key, data ); } /** * {@inheritDoc} */ @Override public void updateLanguage ( final Object... data ) { LanguageManager.updateComponent ( this, data ); } /** * {@inheritDoc} */ @Override public void updateLanguage ( final String key, final Object... data ) { LanguageManager.updateComponent ( this, key, data ); } /** * {@inheritDoc} */ @Override public void removeLanguage () { LanguageManager.unregisterComponent ( this ); } /** * {@inheritDoc} */ @Override public boolean isLanguageSet () { return LanguageManager.isRegisteredComponent ( this ); } /** * {@inheritDoc} */ @Override public void setLanguageUpdater ( final LanguageUpdater updater ) { LanguageManager.registerLanguageUpdater ( this, updater ); } /** * {@inheritDoc} */ @Override public void removeLanguageUpdater () { LanguageManager.unregisterLanguageUpdater ( this ); } /** * Settings methods */ /** * {@inheritDoc} */ @Override public void registerSettings ( final String key ) { SettingsManager.registerComponent ( this, key ); } /** * {@inheritDoc} */ @Override public void registerSettings ( final String key, final Class defaultValueClass ) { SettingsManager.registerComponent ( this, key, defaultValueClass ); } /** * {@inheritDoc} */ @Override public void registerSettings ( final String key, final Object defaultValue ) { SettingsManager.registerComponent ( this, key, defaultValue ); } /** * {@inheritDoc} */ @Override public void registerSettings ( final String group, final String key ) { SettingsManager.registerComponent ( this, group, key ); } /** * {@inheritDoc} */ @Override public void registerSettings ( final String group, final String key, final Class defaultValueClass ) { SettingsManager.registerComponent ( this, group, key, defaultValueClass ); } /** * {@inheritDoc} */ @Override public void registerSettings ( final String group, final String key, final Object defaultValue ) { SettingsManager.registerComponent ( this, group, key, defaultValue ); } /** * {@inheritDoc} */ @Override public void registerSettings ( final String key, final boolean loadInitialSettings, final boolean applySettingsChanges ) { SettingsManager.registerComponent ( this, key, loadInitialSettings, applySettingsChanges ); } /** * {@inheritDoc} */ @Override public void registerSettings ( final String key, final Class defaultValueClass, final boolean loadInitialSettings, final boolean applySettingsChanges ) { SettingsManager.registerComponent ( this, key, defaultValueClass, loadInitialSettings, applySettingsChanges ); } /** * {@inheritDoc} */ @Override public void registerSettings ( final String key, final Object defaultValue, final boolean loadInitialSettings, final boolean applySettingsChanges ) { SettingsManager.registerComponent ( this, key, defaultValue, loadInitialSettings, applySettingsChanges ); } /** * {@inheritDoc} */ @Override public void registerSettings ( final String group, final String key, final Class defaultValueClass, final boolean loadInitialSettings, final boolean applySettingsChanges ) { SettingsManager.registerComponent ( this, group, key, defaultValueClass, loadInitialSettings, applySettingsChanges ); } /** * {@inheritDoc} */ @Override public void registerSettings ( final String group, final String key, final Object defaultValue, final boolean loadInitialSettings, final boolean applySettingsChanges ) { SettingsManager.registerComponent ( this, group, key, defaultValue, loadInitialSettings, applySettingsChanges ); } /** * {@inheritDoc} */ @Override public void registerSettings ( final SettingsProcessor settingsProcessor ) { SettingsManager.registerComponent ( this, settingsProcessor ); } /** * {@inheritDoc} */ @Override public void unregisterSettings () { SettingsManager.unregisterComponent ( this ); } /** * {@inheritDoc} */ @Override public void loadSettings () { SettingsManager.loadComponentSettings ( this ); } /** * {@inheritDoc} */ @Override public void saveSettings () { SettingsManager.saveComponentSettings ( this ); } /** * Font methods */ /** * {@inheritDoc} */ @Override public WebCheckBox setPlainFont () { return SwingUtils.setPlainFont ( this ); } /** * {@inheritDoc} */ @Override public WebCheckBox setPlainFont ( final boolean apply ) { return SwingUtils.setPlainFont ( this, apply ); } /** * {@inheritDoc} */ @Override public boolean isPlainFont () { return SwingUtils.isPlainFont ( this ); } /** * {@inheritDoc} */ @Override public WebCheckBox setBoldFont () { return SwingUtils.setBoldFont ( this ); } /** * {@inheritDoc} */ @Override public WebCheckBox setBoldFont ( final boolean apply ) { return SwingUtils.setBoldFont ( this, apply ); } /** * {@inheritDoc} */ @Override public boolean isBoldFont () { return SwingUtils.isBoldFont ( this ); } /** * {@inheritDoc} */ @Override public WebCheckBox setItalicFont () { return SwingUtils.setItalicFont ( this ); } /** * {@inheritDoc} */ @Override public WebCheckBox setItalicFont ( final boolean apply ) { return SwingUtils.setItalicFont ( this, apply ); } /** * {@inheritDoc} */ @Override public boolean isItalicFont () { return SwingUtils.isItalicFont ( this ); } /** * {@inheritDoc} */ @Override public WebCheckBox setFontStyle ( final boolean bold, final boolean italic ) { return SwingUtils.setFontStyle ( this, bold, italic ); } /** * {@inheritDoc} */ @Override public WebCheckBox setFontStyle ( final int style ) { return SwingUtils.setFontStyle ( this, style ); } /** * {@inheritDoc} */ @Override public WebCheckBox setFontSize ( final int fontSize ) { return SwingUtils.setFontSize ( this, fontSize ); } /** * {@inheritDoc} */ @Override public WebCheckBox changeFontSize ( final int change ) { return SwingUtils.changeFontSize ( this, change ); } /** * {@inheritDoc} */ @Override public int getFontSize () { return SwingUtils.getFontSize ( this ); } /** * {@inheritDoc} */ @Override public WebCheckBox setFontSizeAndStyle ( final int fontSize, final boolean bold, final boolean italic ) { return SwingUtils.setFontSizeAndStyle ( this, fontSize, bold, italic ); } /** * {@inheritDoc} */ @Override public WebCheckBox setFontSizeAndStyle ( final int fontSize, final int style ) { return SwingUtils.setFontSizeAndStyle ( this, fontSize, style ); } /** * {@inheritDoc} */ @Override public WebCheckBox setFontName ( final String fontName ) { return SwingUtils.setFontName ( this, fontName ); } /** * {@inheritDoc} */ @Override public String getFontName () { return SwingUtils.getFontName ( this ); } /** * Size methods. */ /** * {@inheritDoc} */ @Override public int getPreferredWidth () { return SizeUtils.getPreferredWidth ( this ); } /** * {@inheritDoc} */ @Override public WebCheckBox setPreferredWidth ( final int preferredWidth ) { return SizeUtils.setPreferredWidth ( this, preferredWidth ); } /** * {@inheritDoc} */ @Override public int getPreferredHeight () { return SizeUtils.getPreferredHeight ( this ); } /** * {@inheritDoc} */ @Override public WebCheckBox setPreferredHeight ( final int preferredHeight ) { return SizeUtils.setPreferredHeight ( this, preferredHeight ); } /** * {@inheritDoc} */ @Override public int getMinimumWidth () { return SizeUtils.getMinimumWidth ( this ); } /** * {@inheritDoc} */ @Override public WebCheckBox setMinimumWidth ( final int minimumWidth ) { return SizeUtils.setMinimumWidth ( this, minimumWidth ); } /** * {@inheritDoc} */ @Override public int getMinimumHeight () { return SizeUtils.getMinimumHeight ( this ); } /** * {@inheritDoc} */ @Override public WebCheckBox setMinimumHeight ( final int minimumHeight ) { return SizeUtils.setMinimumHeight ( this, minimumHeight ); } /** * {@inheritDoc} */ @Override public Dimension getPreferredSize () { return SizeUtils.getPreferredSize ( this, super.getPreferredSize () ); } }