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

org.noos.xing.mydoggy.plaf.ui.look.ToolWindowTitleButtonUI Maven / Gradle / Ivy

The newest version!
package org.noos.xing.mydoggy.plaf.ui.look;

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

/**
 * @author Angelo De Caro ([email protected])
 */
public class ToolWindowTitleButtonUI extends BasicButtonUI {
    // Shared UI object
    private final static ToolWindowTitleButtonUI buttonUI = new ToolWindowTitleButtonUI();

    
    public static ComponentUI createUI(JComponent c) {
        return buttonUI;
    }


    @Override
    protected void installDefaults(AbstractButton b) {
        super.installDefaults(b);
        
        b.setRolloverEnabled(true);
        b.setOpaque(false);
        b.setFocusPainted(false);
        b.setFocusable(false);
        b.setBorder(null);
        b.setBorderPainted(false);
        b.setForeground(Color.WHITE);

        defaultTextShiftOffset = 1;
    }

    protected void paintButtonPressed(Graphics g, AbstractButton b) {
        setTextShiftOffset();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy