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

com.alee.laf.text.WebTextAreaUI 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.laf.text;

import com.alee.api.annotations.NotNull;
import com.alee.api.annotations.Nullable;
import com.alee.api.jdk.Objects;
import com.alee.managers.style.StyleManager;
import com.alee.painter.PainterSupport;
import com.alee.utils.ReflectUtils;

import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import java.awt.*;

/**
 * Custom UI for {@link JTextArea} component.
 *
 * @author Mikle Garin
 * @author Alexandr Zernov
 */
public class WebTextAreaUI extends WTextAreaUI
{
    /**
     * Input prompt text.
     */
    protected String inputPrompt;

    /**
     * Runtime variables.
     */
    protected transient JTextArea textArea = null;

    /**
     * Returns an instance of the {@link WebTextAreaUI} for the specified component.
     * This tricky method is used by {@link UIManager} to create component UIs when needed.
     *
     * @param c component that will use UI instance
     * @return instance of the {@link WebTextAreaUI}
     */
    @NotNull
    public static ComponentUI createUI ( @NotNull final JComponent c )
    {
        return new WebTextAreaUI ();
    }

    @Override
    public void installUI ( @NotNull final JComponent c )
    {
        // Saving text field reference
        textArea = ( JTextArea ) c;

        super.installUI ( c );

        // Applying skin
        StyleManager.installSkin ( textArea );
    }

    @Override
    public void uninstallUI ( @NotNull final JComponent c )
    {
        // Uninstalling applied skin
        StyleManager.uninstallSkin ( textArea );

        super.uninstallUI ( c );

        // Removing text area reference
        textArea = null;
    }

    @Nullable
    @Override
    public String getInputPrompt ()
    {
        return inputPrompt;
    }

    @Override
    public void setInputPrompt ( @Nullable final String text )
    {
        if ( Objects.notEquals ( text, this.inputPrompt ) )
        {
            this.inputPrompt = text;
            textArea.repaint ();
        }
    }

    @Override
    public boolean contains ( @NotNull final JComponent c, final int x, final int y )
    {
        return PainterSupport.contains ( c, this, x, y );
    }

    @Override
    protected void paintSafely ( @NotNull final Graphics g )
    {
        // Updating painted field
        // This is important for proper basic UI usage
        ReflectUtils.setFieldValueSafely ( this, "painted", true );

        // Painting text component
        PainterSupport.paint ( g, getComponent (), this );
    }

    @Nullable
    @Override
    public Dimension getPreferredSize ( @NotNull final JComponent c )
    {
        return PainterSupport.getPreferredSize ( c, super.getPreferredSize ( c ) );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy