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

tray.TrayIconAdapter Maven / Gradle / Ivy

Go to download

Provides a simple adapter that makes the tray use gtk under linux, providing a native look and feel.

The newest version!
package tray;

import java.awt.TrayIcon.MessageType;
import java.awt.event.ActionListener;
import java.net.URL;

public interface TrayIconAdapter {

	public void displayMessage(String caption, String text, MessageType messageType);

	public void setImageAutoSize(boolean autoSize);

	public void addActionListener(ActionListener actionListener);

	public void setImage(URL imageUrl);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy