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

mdlaf.components.tooltip.MaterialToolTipUI Maven / Gradle / Ivy

There is a newer version: 1.1.4
Show newest version
package mdlaf.components.tooltip;

import mdlaf.utils.MaterialDrawingUtils;

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

/**
 * @author https://github.com/vincenzopalazzo
 * @author https://github.com/atarw
 */
public class MaterialToolTipUI extends BasicToolTipUI {

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

    @Override
    public void paint(Graphics g, JComponent c) {
        super.paint(MaterialDrawingUtils.getAliasedGraphics(g), c);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy