Home
Name Modified Size InfoDownloads / Week
JQTray 0.9.9-beta 2012-12-08
JQTray 0.9.0-alpha 2012-11-20
README 2012-12-08 624 Bytes
Totals: 3 Items   624 Bytes 0
Requirement:
	- Qt4 (libqtgui)
	- jni-utils
	- jdk6

Usage:
  
       Tray tray;
       TrayIcon icon;
       tray=TrayProvider.getTray();
           //get Tray instance (QtSystemTray on linux, 
                   otherwise java.awt.SystemTray)
  
       icon=tray.createTrayIcon("tray.png");
           //create a tray icon using tray
  
       PopupMenu pop=new PopupMenu();
       MenuItem m=new MenuItem(...);
       m.addActionListener(...);
       pop.add(m);
        
       //....
       
       icon.setPopupMenu(pop); // add the popup menu to the tray icon
       tray.add(icon); //show the tray icon
       //...
Source: README, updated 2012-12-08