Examples of TrayManager


Examples of org.tomighty.ui.tray.TrayManager

    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    Injector injector = Guice.createInjector(new TomightyModule(), Jsr250.newJsr250Module());

    Tomighty tomighty = injector.getInstance(Tomighty.class);
    invokeLater(tomighty);
    TrayManager trayManager = injector.getInstance(TrayManager.class);
    invokeLater(trayManager);
  }
View Full Code Here

Examples of ui.tray.TrayManager

    return uniquePath;
  }

  private void notifyUser()
  {
    TrayManager trayManager = getGuiManager().getTrayManager();
    if (trayManager.isTrayed())
    {
      trayManager.showTrayMessage("Sillian - Download finished",
          "Finished downloading " + file.getName(), TrayIcon.MessageType.INFO);
    }
  }
View Full Code Here

Examples of ui.tray.TrayManager

    setupTabs();
    setupStatusBar();

    mainFrame.addWindowListener(new Disposer());

    trayManager = new TrayManager(mainFrame);

    if (Settings.application.start_to_tray)
    {
      trayManager.startToTray();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.