All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alee.extended.label.WebStyledLabel Maven / Gradle / Ivy

There is a newer version: 1.2.14
Show newest version
/*
 * 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.extended.label;

import com.alee.managers.hotkey.HotkeyData;
import com.alee.managers.language.*;
import com.alee.managers.language.LanguageUpdater;
import com.alee.managers.settings.Configuration;
import com.alee.managers.settings.SettingsMethods;
import com.alee.managers.settings.SettingsProcessor;
import com.alee.managers.settings.UISettingsManager;
import com.alee.managers.style.*;
import com.alee.managers.tooltip.ToolTipMethods;
import com.alee.managers.tooltip.TooltipManager;
import com.alee.managers.tooltip.TooltipWay;
import com.alee.managers.tooltip.WebCustomTooltip;
import com.alee.painter.Paintable;
import com.alee.painter.Painter;
import com.alee.utils.CollectionUtils;
import com.alee.utils.swing.MouseButton;
import com.alee.utils.swing.extensions.*;

import javax.swing.*;
import java.awt.*;
import java.awt.event.FocusAdapter;
import java.awt.event.KeyAdapter;
import java.awt.event.MouseAdapter;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

/**
 * {@link JLabel} component extension that can render styled text.
 * Its rendering speed is far superior to HTML rendering within common {@link JLabel}.
 * In addition to customizable style ranges text in this label also supports custom styling syntax.
 * You can find styling syntax description in {@link StyleRanges} class JavaDoc.
 *
 * This component should never be used with a non-Web UIs as it might cause an unexpected behavior.
 * You could still use that component even if WebLaF is not your application LaF as this component will use Web-UI in any case.
 *
 * @author Mikle Garin
 * @see How to use WebStyledLabel
 * @see StyleSettings
 * @see StyledLabelDescriptor
 * @see WStyledLabelUI
 * @see WebStyledLabelUI
 * @see IStyledLabelPainter
 * @see StyledLabelPainter
 * @see JLabel
 */
public class WebStyledLabel extends JLabel implements Styleable, Paintable, ShapeMethods, MarginMethods, PaddingMethods, EventMethods,
        ToolTipMethods, LanguageMethods, LanguageEventMethods, SettingsMethods, FontMethods, SizeMethods
{
    /**
     * Component properties.
     */
    public static final String STYLE_RANGES_PROPERTY = "styleRanges";
    public static final String WRAP_PROPERTY = "wrap";
    public static final String ROWS_PROPERTY = "rows";
    public static final String MAXIMUM_ROWS_PROPERTY = "maximumRows";
    public static final String MINIMUM_ROWS_PROPERTY = "minimumRows";
    public static final String HORIZONTAL_TEXT_ALIGNMENT_PROPERTY = "horizontalTextAlignment";
    public static final String VERTICAL_TEXT_ALIGNMENT_PROPERTY = "verticalTextAlignment";

    /**
     * StyleRange list.
     */
    protected List styleRanges;

    /**
     * Text wrapping type.
     */
    protected TextWrap wrap;

    /**
     * Horizontal text alignment.
     */
    protected int horizontalTextAlignment;

    /**
     * Vertical text alignment.
     */
    protected int verticalTextAlignment;

    /**
     * Amount of rows used to wrap label text.
     */
    protected int rows;

    /**
     * Maximum amount of rows.
     */
    protected int maximumRows;

    /**
     * Minimum amount of rows.
     */
    protected int minimumRows;

    /**
     * Constructs empty label.
     */
    public WebStyledLabel ()
    {
        this ( StyleId.auto );
    }

    /**
     * Constructs label with the specified preferences.
     *
     * @param horizontalAlignment horizontal alignment
     */
    public WebStyledLabel ( final int horizontalAlignment )
    {
        this ( StyleId.auto, horizontalAlignment );
    }

    /**
     * Constructs label with the specified preferences.
     *
     * @param icon icon
     */
    public WebStyledLabel ( final Icon icon )
    {
        this ( StyleId.auto, icon );
    }

    /**
     * Constructs label with the specified preferences.
     *
     * @param icon                label icon
     * @param horizontalAlignment horizontal alignment
     */
    public WebStyledLabel ( final Icon icon, final int horizontalAlignment )
    {
        this ( StyleId.auto, icon, horizontalAlignment );
    }

    /**
     * Constructs label with the specified preferences.
     *
     * @param text text or translation key
     */
    public WebStyledLabel ( final String text )
    {
        this ( StyleId.auto, text );
    }

    /**
     * Constructs label with the specified preferences.
     *
     * @param text                text or translation key
     * @param horizontalAlignment horizontal alignment
     * @param data                language data, may not be passed
     */
    public WebStyledLabel ( final String text, final int horizontalAlignment, final Object... data )
    {
        this ( StyleId.auto, text, horizontalAlignment, data );
    }

    /**
     * Constructs label with the specified preferences.
     *
     * @param text text or translation key
     * @param icon label icon
     */
    public WebStyledLabel ( final String text, final Icon icon )
    {
        this ( StyleId.auto, text, icon );
    }

    /**
     * Constructs label with the specified preferences.
     *
     * @param text                text or translation key
     * @param icon                label icon
     * @param horizontalAlignment horizontal alignment
     * @param data                language data, may not be passed
     */
    public WebStyledLabel ( final String text, final Icon icon, final int horizontalAlignment, final Object... data )
    {
        this ( StyleId.auto, text, icon, horizontalAlignment, data );
    }

    /**
     * Constructs empty label.
     *
     * @param id style ID
     */
    public WebStyledLabel ( final StyleId id )
    {
        this ( id, null, null, LEADING, LM.emptyData );
    }

    /**
     * Constructs label with the specified preferences.
     *
     * @param id                  style ID
     * @param horizontalAlignment horizontal alignment
     */
    public WebStyledLabel ( final StyleId id, final int horizontalAlignment )
    {
        this ( id, null, null, horizontalAlignment, LM.emptyData );
    }

    /**
     * Constructs label with the specified preferences.
     *
     * @param id   style ID
     * @param icon icon
     */
    public WebStyledLabel ( final StyleId id, final Icon icon )
    {
        this ( id, null, icon, LEADING, LM.emptyData );
    }

    /**
     * Constructs label with the specified preferences.
     *
     * @param id                  style ID
     * @param icon                label icon
     * @param horizontalAlignment horizontal alignment
     */
    public WebStyledLabel ( final StyleId id, final Icon icon, final int horizontalAlignment )
    {
        this ( id, null, icon, horizontalAlignment, LM.emptyData );
    }

    /**
     * Constructs label with the specified preferences.
     *
     * @param id   style ID
     * @param text text or translation key
     */
    public WebStyledLabel ( final StyleId id, final String text )
    {
        this ( id, text, null, LEADING );
    }

    /**
     * Constructs label with the specified preferences.
     *
     * @param id                  style ID
     * @param text                text or translation key
     * @param horizontalAlignment horizontal alignment
     * @param data                language data, may not be passed
     */
    public WebStyledLabel ( final StyleId id, final String text, final int horizontalAlignment, final Object... data )
    {
        this ( id, text, null, horizontalAlignment, data );
    }

    /**
     * Constructs label with the specified preferences.
     *
     * @param id   style ID
     * @param text text or translation key
     * @param icon label icon
     */
    public WebStyledLabel ( final StyleId id, final String text, final Icon icon )
    {
        this ( id, text, icon, LEADING );
    }

    /**
     * Constructs label with the specified preferences.
     *
     * @param id                  style ID
     * @param text                text or translation key
     * @param icon                label icon
     * @param horizontalAlignment horizontal alignment
     * @param data                language data, may not be passed
     */
    public WebStyledLabel ( final StyleId id, final String text, final Icon icon, final int horizontalAlignment, final Object... data )
    {
        super ( UILanguageManager.getInitialText ( text, data ), icon, horizontalAlignment );
        UILanguageManager.registerInitialLanguage ( this, text, data );
        setStyleId ( id );
    }

    @Override
    public void setText ( final String text )
    {
        // Parsing styles
        final IStyleRanges styleRanges = getStyleRanges ( text );

        // Update text
        super.setText ( styleRanges.getPlainText () );

        // Update styles
        setStyleRanges ( styleRanges.getStyleRanges () );
    }

    /**
     * Returns style ranges implementation used to parse style syntax.
     * You can override this method to provide a customized {@link IStyleRanges} implementation.
     *
     * @param text text containing style syntax
     * @return style ranges implementation used to parse style syntax
     */
    protected IStyleRanges getStyleRanges ( final String text )
    {
        return new StyleRanges ( text );
    }

    /**
     * Returns added style ranges.
     *
     * @return added style ranges
     */
    public List getStyleRanges ()
    {
        return CollectionUtils.copy ( getStyleRangesImpl () );
    }

    /**
     * Adds style range into this label.
     *
     * @param styleRange new style range
     */
    public void addStyleRange ( final StyleRange styleRange )
    {
        addStyleRangeImpl ( styleRange );
        firePropertyChange ( STYLE_RANGES_PROPERTY, null, styleRange );
    }

    /**
     * Adds style ranges into this label.
     *
     * @param styleRanges new style ranges list
     */
    public void addStyleRanges ( final List styleRanges )
    {
        addStyleRangesImpl ( styleRanges );
        firePropertyChange ( STYLE_RANGES_PROPERTY, null, styleRanges );
    }

    /**
     * Removes style range from this label.
     *
     * @param styleRange style range to remove
     */
    public void removeStyleRange ( final StyleRange styleRange )
    {
        removeStyleRangeImpl ( styleRange );
        firePropertyChange ( STYLE_RANGES_PROPERTY, styleRange, null );
    }

    /**
     * Removes style ranges from this label.
     *
     * @param styleRanges style ranges to remove
     */
    public void removeStyleRanges ( final List styleRanges )
    {
        removeStyleRangesImpl ( styleRanges );
        firePropertyChange ( STYLE_RANGES_PROPERTY, styleRanges, null );
    }

    /**
     * Clears all style ranges and adds new ones.
     *
     * @param styleRanges new style ranges
     */
    public void setStyleRanges ( final List styleRanges )
    {
        clearStyleRangesImpl ();
        addStyleRangesImpl ( styleRanges );
        firePropertyChange ( STYLE_RANGES_PROPERTY, null, styleRanges );
    }

    /**
     * Clears all style ranges.
     */
    public void clearStyleRanges ()
    {
        clearStyleRangesImpl ();
        firePropertyChange ( STYLE_RANGES_PROPERTY, null, null );
    }

    /**
     * Returns added style ranges.
     *
     * @return added style ranges
     */
    protected List getStyleRangesImpl ()
    {
        if ( styleRanges == null )
        {
            styleRanges = new ArrayList ( 3 );
        }
        return styleRanges;
    }

    /**
     * Adds style range into this label.
     *
     * @param styleRange new style range
     */
    protected void addStyleRangeImpl ( final StyleRange styleRange )
    {
        getStyleRangesImpl ().add ( styleRange );
    }

    /**
     * Adds style ranges into this label.
     *
     * @param styleRanges new style ranges list
     */
    protected void addStyleRangesImpl ( final List styleRanges )
    {
        if ( CollectionUtils.notEmpty ( styleRanges ) )
        {
            for ( final StyleRange styleRange : styleRanges )
            {
                addStyleRangeImpl ( styleRange );
            }
        }
    }

    /**
     * Removes style range from this label.
     *
     * @param styleRange style range to remove
     */
    protected void removeStyleRangeImpl ( final StyleRange styleRange )
    {
        if ( !getStyleRangesImpl ().remove ( styleRange ) )
        {
            final Iterator iterator = getStyleRangesImpl ().iterator ();
            while ( iterator.hasNext () )
            {
                final StyleRange range = iterator.next ();
                if ( range.getStartIndex () == styleRange.getStartIndex () && range.getLength () == styleRange.getLength () )
                {
                    iterator.remove ();
                }
            }
        }
    }

    /**
     * Removes style ranges from this label.
     *
     * @param styleRanges style ranges to remove
     */
    protected void removeStyleRangesImpl ( final List styleRanges )
    {
        if ( styleRanges != null )
        {
            for ( final StyleRange styleRange : styleRanges )
            {
                removeStyleRangeImpl ( styleRange );
            }
        }
    }

    /**
     * Clears all style ranges.
     */
    protected void clearStyleRangesImpl ()
    {
        getStyleRangesImpl ().clear ();
    }

    /**
     * Returns text wrapping type.
     *
     * @return text wrapping type
     */
    public TextWrap getWrap ()
    {
        return wrap != null ? wrap : TextWrap.none;
    }

    /**
     * Sets text wrapping type.
     *
     * @param wrap text wrapping type
     */
    public void setWrap ( final TextWrap wrap )
    {
        final TextWrap old = this.wrap;
        this.wrap = wrap;
        firePropertyChange ( WRAP_PROPERTY, old, wrap );
    }

    /**
     * Returns horizontal text alignment.
     *
     * @return horizontal text alignment
     */
    public int getHorizontalTextAlignment ()
    {
        return horizontalTextAlignment != -1 ? horizontalTextAlignment : getHorizontalAlignment ();
    }

    /**
     * Sets horizontal text alignment.
     *
     * @param alignment horizontal text alignment
     */
    public void setHorizontalTextAlignment ( final int alignment )
    {
        final int old = this.horizontalTextAlignment;
        this.horizontalTextAlignment = alignment;
        firePropertyChange ( HORIZONTAL_TEXT_ALIGNMENT_PROPERTY, old, alignment );
    }

    /**
     * Returns vertical text alignment.
     *
     * @return vertical text alignment
     */
    public int getVerticalTextAlignment ()
    {
        return verticalTextAlignment != -1 ? verticalTextAlignment : getVerticalAlignment ();
    }

    /**
     * Sets vertical text alignment.
     *
     * @param alignment vertical text alignment
     */
    public void setVerticalTextAlignment ( final int alignment )
    {
        final int old = this.verticalTextAlignment;
        this.verticalTextAlignment = alignment;
        firePropertyChange ( VERTICAL_TEXT_ALIGNMENT_PROPERTY, old, alignment );
    }

    /**
     * Returns amount of rows used to wrap label text.
     *
     * @return amount of rows used to wrap label text
     */
    public int getRows ()
    {
        return rows;
    }

    /**
     * Sets amount of rows used to wrap label text.
     * By default it is set to zero.
     * 

* Note that it has lower priority than preferred width. * If preferred width is set this value is ignored. * * @param rows amount of rows used to wrap label text */ public void setRows ( final int rows ) { final int old = this.rows; this.rows = rows; firePropertyChange ( ROWS_PROPERTY, old, rows ); } /** * Returns maximum rows amount visible after wrapping. * * @return maximum rows amount visible after wrapping */ public int getMaximumRows () { return maximumRows; } /** * Sets maximum rows amount visible after wrapping. * By default it is set to zero. * * @param maximumRows maximum rows amount visible after wrapping */ public void setMaximumRows ( final int maximumRows ) { final int old = this.maximumRows; this.maximumRows = maximumRows; firePropertyChange ( MAXIMUM_ROWS_PROPERTY, old, maximumRows ); } /** * Returns minimum rows amount visible after wrapping. * * @return minimum rows amount visible after wrapping */ public int getMinimumRows () { return minimumRows; } /** * Sets minimum rows amount visible after wrapping. * By default it is set to zero. * * @param minimumRows minimum rows amount visible after wrapping */ public void setMinimumRows ( final int minimumRows ) { final int old = this.minimumRows; this.minimumRows = minimumRows; firePropertyChange ( MINIMUM_ROWS_PROPERTY, old, minimumRows ); } @Override public StyleId getDefaultStyleId () { return StyleId.styledlabel; } @Override public StyleId getStyleId () { return StyleManager.getStyleId ( this ); } @Override public StyleId setStyleId ( final StyleId id ) { return StyleManager.setStyleId ( this, id ); } @Override public StyleId resetStyleId () { return StyleManager.resetStyleId ( this ); } @Override public Skin getSkin () { return StyleManager.getSkin ( this ); } @Override public Skin setSkin ( final Skin skin ) { return StyleManager.setSkin ( this, skin ); } @Override public Skin setSkin ( final Skin skin, final boolean recursively ) { return StyleManager.setSkin ( this, skin, recursively ); } @Override public Skin resetSkin () { return StyleManager.resetSkin ( this ); } @Override public void addStyleListener ( final StyleListener listener ) { StyleManager.addStyleListener ( this, listener ); } @Override public void removeStyleListener ( final StyleListener listener ) { StyleManager.removeStyleListener ( this, listener ); } @Override public Painter getCustomPainter () { return StyleManager.getCustomPainter ( this ); } @Override public Painter setCustomPainter ( final Painter painter ) { return StyleManager.setCustomPainter ( this, painter ); } @Override public boolean resetCustomPainter () { return StyleManager.resetCustomPainter ( this ); } @Override public Shape getShape () { return ShapeMethodsImpl.getShape ( this ); } @Override public boolean isShapeDetectionEnabled () { return ShapeMethodsImpl.isShapeDetectionEnabled ( this ); } @Override public void setShapeDetectionEnabled ( final boolean enabled ) { ShapeMethodsImpl.setShapeDetectionEnabled ( this, enabled ); } @Override public Insets getMargin () { return MarginMethodsImpl.getMargin ( this ); } @Override public void setMargin ( final int margin ) { MarginMethodsImpl.setMargin ( this, margin ); } @Override public void setMargin ( final int top, final int left, final int bottom, final int right ) { MarginMethodsImpl.setMargin ( this, top, left, bottom, right ); } @Override public void setMargin ( final Insets margin ) { MarginMethodsImpl.setMargin ( this, margin ); } @Override public Insets getPadding () { return PaddingMethodsImpl.getPadding ( this ); } @Override public void setPadding ( final int padding ) { PaddingMethodsImpl.setPadding ( this, padding ); } @Override public void setPadding ( final int top, final int left, final int bottom, final int right ) { PaddingMethodsImpl.setPadding ( this, top, left, bottom, right ); } @Override public void setPadding ( final Insets padding ) { PaddingMethodsImpl.setPadding ( this, padding ); } @Override public MouseAdapter onMousePress ( final MouseEventRunnable runnable ) { return EventMethodsImpl.onMousePress ( this, runnable ); } @Override public MouseAdapter onMousePress ( final MouseButton mouseButton, final MouseEventRunnable runnable ) { return EventMethodsImpl.onMousePress ( this, mouseButton, runnable ); } @Override public MouseAdapter onMouseEnter ( final MouseEventRunnable runnable ) { return EventMethodsImpl.onMouseEnter ( this, runnable ); } @Override public MouseAdapter onMouseExit ( final MouseEventRunnable runnable ) { return EventMethodsImpl.onMouseExit ( this, runnable ); } @Override public MouseAdapter onMouseDrag ( final MouseEventRunnable runnable ) { return EventMethodsImpl.onMouseDrag ( this, runnable ); } @Override public MouseAdapter onMouseDrag ( final MouseButton mouseButton, final MouseEventRunnable runnable ) { return EventMethodsImpl.onMouseDrag ( this, mouseButton, runnable ); } @Override public MouseAdapter onMouseClick ( final MouseEventRunnable runnable ) { return EventMethodsImpl.onMouseClick ( this, runnable ); } @Override public MouseAdapter onMouseClick ( final MouseButton mouseButton, final MouseEventRunnable runnable ) { return EventMethodsImpl.onMouseClick ( this, mouseButton, runnable ); } @Override public MouseAdapter onDoubleClick ( final MouseEventRunnable runnable ) { return EventMethodsImpl.onDoubleClick ( this, runnable ); } @Override public MouseAdapter onMenuTrigger ( final MouseEventRunnable runnable ) { return EventMethodsImpl.onMenuTrigger ( this, runnable ); } @Override public KeyAdapter onKeyType ( final KeyEventRunnable runnable ) { return EventMethodsImpl.onKeyType ( this, runnable ); } @Override public KeyAdapter onKeyType ( final HotkeyData hotkey, final KeyEventRunnable runnable ) { return EventMethodsImpl.onKeyType ( this, hotkey, runnable ); } @Override public KeyAdapter onKeyPress ( final KeyEventRunnable runnable ) { return EventMethodsImpl.onKeyPress ( this, runnable ); } @Override public KeyAdapter onKeyPress ( final HotkeyData hotkey, final KeyEventRunnable runnable ) { return EventMethodsImpl.onKeyPress ( this, hotkey, runnable ); } @Override public KeyAdapter onKeyRelease ( final KeyEventRunnable runnable ) { return EventMethodsImpl.onKeyRelease ( this, runnable ); } @Override public KeyAdapter onKeyRelease ( final HotkeyData hotkey, final KeyEventRunnable runnable ) { return EventMethodsImpl.onKeyRelease ( this, hotkey, runnable ); } @Override public FocusAdapter onFocusGain ( final FocusEventRunnable runnable ) { return EventMethodsImpl.onFocusGain ( this, runnable ); } @Override public FocusAdapter onFocusLoss ( final FocusEventRunnable runnable ) { return EventMethodsImpl.onFocusLoss ( this, runnable ); } @Override public MouseAdapter onDragStart ( final int shift, final MouseEventRunnable runnable ) { return EventMethodsImpl.onDragStart ( this, shift, runnable ); } @Override public MouseAdapter onDragStart ( final int shift, final MouseButton mouseButton, final MouseEventRunnable runnable ) { return EventMethodsImpl.onDragStart ( this, shift, mouseButton, runnable ); } @Override public WebCustomTooltip setToolTip ( final String tooltip ) { return TooltipManager.setTooltip ( this, tooltip ); } @Override public WebCustomTooltip setToolTip ( final Icon icon, final String tooltip ) { return TooltipManager.setTooltip ( this, icon, tooltip ); } @Override public WebCustomTooltip setToolTip ( final String tooltip, final TooltipWay tooltipWay ) { return TooltipManager.setTooltip ( this, tooltip, tooltipWay ); } @Override public WebCustomTooltip setToolTip ( final Icon icon, final String tooltip, final TooltipWay tooltipWay ) { return TooltipManager.setTooltip ( this, icon, tooltip, tooltipWay ); } @Override public WebCustomTooltip setToolTip ( final String tooltip, final TooltipWay tooltipWay, final int delay ) { return TooltipManager.setTooltip ( this, tooltip, tooltipWay, delay ); } @Override public WebCustomTooltip setToolTip ( final Icon icon, final String tooltip, final TooltipWay tooltipWay, final int delay ) { return TooltipManager.setTooltip ( this, icon, tooltip, tooltipWay, delay ); } @Override public WebCustomTooltip setToolTip ( final JComponent tooltip ) { return TooltipManager.setTooltip ( this, tooltip ); } @Override public WebCustomTooltip setToolTip ( final JComponent tooltip, final int delay ) { return TooltipManager.setTooltip ( this, tooltip, delay ); } @Override public WebCustomTooltip setToolTip ( final JComponent tooltip, final TooltipWay tooltipWay ) { return TooltipManager.setTooltip ( this, tooltip, tooltipWay ); } @Override public WebCustomTooltip setToolTip ( final JComponent tooltip, final TooltipWay tooltipWay, final int delay ) { return TooltipManager.setTooltip ( this, tooltip, tooltipWay, delay ); } @Override public WebCustomTooltip addToolTip ( final String tooltip ) { return TooltipManager.addTooltip ( this, tooltip ); } @Override public WebCustomTooltip addToolTip ( final Icon icon, final String tooltip ) { return TooltipManager.addTooltip ( this, icon, tooltip ); } @Override public WebCustomTooltip addToolTip ( final String tooltip, final TooltipWay tooltipWay ) { return TooltipManager.addTooltip ( this, tooltip, tooltipWay ); } @Override public WebCustomTooltip addToolTip ( final Icon icon, final String tooltip, final TooltipWay tooltipWay ) { return TooltipManager.addTooltip ( this, icon, tooltip, tooltipWay ); } @Override public WebCustomTooltip addToolTip ( final String tooltip, final TooltipWay tooltipWay, final int delay ) { return TooltipManager.addTooltip ( this, tooltip, tooltipWay, delay ); } @Override public WebCustomTooltip addToolTip ( final Icon icon, final String tooltip, final TooltipWay tooltipWay, final int delay ) { return TooltipManager.addTooltip ( this, icon, tooltip, tooltipWay, delay ); } @Override public WebCustomTooltip addToolTip ( final JComponent tooltip ) { return TooltipManager.addTooltip ( this, tooltip ); } @Override public WebCustomTooltip addToolTip ( final JComponent tooltip, final int delay ) { return TooltipManager.addTooltip ( this, tooltip, delay ); } @Override public WebCustomTooltip addToolTip ( final JComponent tooltip, final TooltipWay tooltipWay ) { return TooltipManager.addTooltip ( this, tooltip, tooltipWay ); } @Override public WebCustomTooltip addToolTip ( final JComponent tooltip, final TooltipWay tooltipWay, final int delay ) { return TooltipManager.addTooltip ( this, tooltip, tooltipWay, delay ); } @Override public void removeToolTip ( final WebCustomTooltip tooltip ) { TooltipManager.removeTooltip ( this, tooltip ); } @Override public void removeToolTips () { TooltipManager.removeTooltips ( this ); } @Override public void removeToolTips ( final WebCustomTooltip... tooltips ) { TooltipManager.removeTooltips ( this, tooltips ); } @Override public void removeToolTips ( final List tooltips ) { TooltipManager.removeTooltips ( this, tooltips ); } @Override public Dimension getMinimumSize () { return getWrap () != TextWrap.none ? new Dimension ( 1, 1 ) : super.getMinimumSize (); } @Override public Dimension getMaximumSize () { return getWrap () != TextWrap.none ? new Dimension ( Integer.MAX_VALUE, Integer.MAX_VALUE ) : super.getMaximumSize (); } @Override public String getLanguage () { return UILanguageManager.getComponentKey ( this ); } @Override public void setLanguage ( final String key, final Object... data ) { UILanguageManager.registerComponent ( this, key, data ); } @Override public void updateLanguage ( final Object... data ) { UILanguageManager.updateComponent ( this, data ); } @Override public void updateLanguage ( final String key, final Object... data ) { UILanguageManager.updateComponent ( this, key, data ); } @Override public void removeLanguage () { UILanguageManager.unregisterComponent ( this ); } @Override public boolean isLanguageSet () { return UILanguageManager.isRegisteredComponent ( this ); } @Override public void setLanguageUpdater ( final LanguageUpdater updater ) { UILanguageManager.registerLanguageUpdater ( this, updater ); } @Override public void removeLanguageUpdater () { UILanguageManager.unregisterLanguageUpdater ( this ); } @Override public void addLanguageListener ( final LanguageListener listener ) { UILanguageManager.addLanguageListener ( getRootPane (), listener ); } @Override public void removeLanguageListener ( final LanguageListener listener ) { UILanguageManager.removeLanguageListener ( getRootPane (), listener ); } @Override public void removeLanguageListeners () { UILanguageManager.removeLanguageListeners ( getRootPane () ); } @Override public void addDictionaryListener ( final DictionaryListener listener ) { UILanguageManager.addDictionaryListener ( getRootPane (), listener ); } @Override public void removeDictionaryListener ( final DictionaryListener listener ) { UILanguageManager.removeDictionaryListener ( getRootPane (), listener ); } @Override public void removeDictionaryListeners () { UILanguageManager.removeDictionaryListeners ( getRootPane () ); } @Override public void registerSettings ( final Configuration configuration ) { UISettingsManager.registerComponent ( this, configuration ); } @Override public void registerSettings ( final SettingsProcessor processor ) { UISettingsManager.registerComponent ( this, processor ); } @Override public void unregisterSettings () { UISettingsManager.unregisterComponent ( this ); } @Override public void loadSettings () { UISettingsManager.loadSettings ( this ); } @Override public void saveSettings () { UISettingsManager.saveSettings ( this ); } @Override public WebStyledLabel setPlainFont () { return FontMethodsImpl.setPlainFont ( this ); } @Override public WebStyledLabel setPlainFont ( final boolean apply ) { return FontMethodsImpl.setPlainFont ( this, apply ); } @Override public boolean isPlainFont () { return FontMethodsImpl.isPlainFont ( this ); } @Override public WebStyledLabel setBoldFont () { return FontMethodsImpl.setBoldFont ( this ); } @Override public WebStyledLabel setBoldFont ( final boolean apply ) { return FontMethodsImpl.setBoldFont ( this, apply ); } @Override public boolean isBoldFont () { return FontMethodsImpl.isBoldFont ( this ); } @Override public WebStyledLabel setItalicFont () { return FontMethodsImpl.setItalicFont ( this ); } @Override public WebStyledLabel setItalicFont ( final boolean apply ) { return FontMethodsImpl.setItalicFont ( this, apply ); } @Override public boolean isItalicFont () { return FontMethodsImpl.isItalicFont ( this ); } @Override public WebStyledLabel setFontStyle ( final boolean bold, final boolean italic ) { return FontMethodsImpl.setFontStyle ( this, bold, italic ); } @Override public WebStyledLabel setFontStyle ( final int style ) { return FontMethodsImpl.setFontStyle ( this, style ); } @Override public WebStyledLabel setFontSize ( final int fontSize ) { return FontMethodsImpl.setFontSize ( this, fontSize ); } @Override public WebStyledLabel changeFontSize ( final int change ) { return FontMethodsImpl.changeFontSize ( this, change ); } @Override public int getFontSize () { return FontMethodsImpl.getFontSize ( this ); } @Override public WebStyledLabel setFontSizeAndStyle ( final int fontSize, final boolean bold, final boolean italic ) { return FontMethodsImpl.setFontSizeAndStyle ( this, fontSize, bold, italic ); } @Override public WebStyledLabel setFontSizeAndStyle ( final int fontSize, final int style ) { return FontMethodsImpl.setFontSizeAndStyle ( this, fontSize, style ); } @Override public WebStyledLabel setFontName ( final String fontName ) { return FontMethodsImpl.setFontName ( this, fontName ); } @Override public String getFontName () { return FontMethodsImpl.getFontName ( this ); } @Override public int getPreferredWidth () { return SizeMethodsImpl.getPreferredWidth ( this ); } @Override public WebStyledLabel setPreferredWidth ( final int preferredWidth ) { return SizeMethodsImpl.setPreferredWidth ( this, preferredWidth ); } @Override public int getPreferredHeight () { return SizeMethodsImpl.getPreferredHeight ( this ); } @Override public WebStyledLabel setPreferredHeight ( final int preferredHeight ) { return SizeMethodsImpl.setPreferredHeight ( this, preferredHeight ); } @Override public int getMinimumWidth () { return SizeMethodsImpl.getMinimumWidth ( this ); } @Override public WebStyledLabel setMinimumWidth ( final int minimumWidth ) { return SizeMethodsImpl.setMinimumWidth ( this, minimumWidth ); } @Override public int getMinimumHeight () { return SizeMethodsImpl.getMinimumHeight ( this ); } @Override public WebStyledLabel setMinimumHeight ( final int minimumHeight ) { return SizeMethodsImpl.setMinimumHeight ( this, minimumHeight ); } @Override public int getMaximumWidth () { return SizeMethodsImpl.getMaximumWidth ( this ); } @Override public WebStyledLabel setMaximumWidth ( final int maximumWidth ) { return SizeMethodsImpl.setMaximumWidth ( this, maximumWidth ); } @Override public int getMaximumHeight () { return SizeMethodsImpl.getMaximumHeight ( this ); } @Override public WebStyledLabel setMaximumHeight ( final int maximumHeight ) { return SizeMethodsImpl.setMaximumHeight ( this, maximumHeight ); } @Override public Dimension getPreferredSize () { return SizeMethodsImpl.getPreferredSize ( this, super.getPreferredSize () ); } @Override public Dimension getOriginalPreferredSize () { return SizeMethodsImpl.getOriginalPreferredSize ( this, super.getPreferredSize () ); } @Override public WebStyledLabel setPreferredSize ( final int width, final int height ) { return SizeMethodsImpl.setPreferredSize ( this, width, height ); } /** * Returns the look and feel (LaF) object that renders this component. * * @return the {@link WStyledLabelUI} object that renders this component */ @Override public WStyledLabelUI getUI () { return ( WStyledLabelUI ) super.getUI (); } /** * Sets the LaF object that renders this component. * * @param ui {@link WStyledLabelUI} */ public void setUI ( final WStyledLabelUI ui ) { super.setUI ( ui ); } @Override public void updateUI () { StyleManager.getDescriptor ( this ).updateUI ( this ); } @Override public String getUIClassID () { return StyleManager.getDescriptor ( this ).getUIClassId (); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy