Inheritance: Gtk.StatusIcon, ITomboyTray
Exemplo n.º 1
0
 static void StartTrayIcon()
 {
     // Create the tray icon and run the main loop
     tray_icon = new TomboyTrayIcon(manager);
     tray      = tray_icon.Tray;
     StartMainLoop();
 }
        static void StartTrayIcon()
        {
            if (TomboyIndicatorTray.IndicatorTrayPresent)
            {
                indicator = new TomboyIndicatorTray(manager);
            }
            else
            {
                // Create the tray icon and run the main loop
                tray_icon = new TomboyTrayIcon(manager);
                tray      = tray_icon.Tray;
            }

            StartMainLoop();
        }
Exemplo n.º 3
0
		static void StartTrayIcon ()
		{
			// Create the tray icon and run the main loop
			tray_icon = new TomboyTrayIcon (manager);
			tray = tray_icon.Tray;
			StartMainLoop ();
		}