StatusIcon.vala
[gitlive] / StatusIcon.vala
index 20ff50a..064cef1 100644 (file)
@@ -23,10 +23,8 @@ using Gtk;
 static int main (string[] args) {
     // A reference to our file
     Gtk.init (ref args);
-  new StatusIcon();
-    
-    window.show_all ();
-
+    new StatusIcon();
     Gtk.main ();
     return 0;
      
@@ -35,7 +33,7 @@ static int main (string[] args) {
  
 
 
-pubic StatusIconA statusicon;
+public StatusIconA statusicon;
  
 class StatusIconA : StatusIcon {
 
@@ -47,7 +45,7 @@ class StatusIconA : StatusIcon {
         
         
          //title : 'gitlive',
-        this.stock = Gtk.STOCK_REFRESH;
+        this.stock = Gtk.Stock.REFRESH;
         this.tooltip_text = "GitLive";
         this.title = "gitlive";
         
@@ -96,7 +94,7 @@ class StatusIconA : StatusIcon {
         
     }
     
-    class MenuA : Menu
+    class MenuA : Gtk.Menu
     {
         public ImageMenuItem pause;
         public ImageMenuItem resume;
@@ -114,7 +112,12 @@ class StatusIconA : StatusIcon {
             
             public ImageMenuItemA()
             {
-                this.set_from_stock( Gtk.STOCK_MEDIA_PAUSE );
+                this.set_from_stock( Gtk.Stock.MEDIA_PAUSE );
+                
+               var  image = new Gtk.Image();
+               image.set_from_stock(Gtk.Stock.MEDIA_PAUSE,Gtk.IconSize.MENU );
+               item_open.set_image (image);
+                
                 this.label= "Pause Commits";
                 this.always_show_image = true;
                 this.accel_group = null;
@@ -124,10 +127,10 @@ class StatusIconA : StatusIcon {
                     
                     //GitMonitor.GitMonitor.stop();
                    // this.el.label  = status ? 'Resume' : 'Pause';
-                    statusicon.set_from_stock( Gtk.STOCK_MEDIA_PAUSE );
+                    statusicon.set_from_stock( Gtk.Stock.MEDIA_PAUSE );
                     
                     
-                })
+                });
                 //    id : 'pause',
             }
             
@@ -137,7 +140,7 @@ class StatusIconA : StatusIcon {
             
             public ImageMenuItemB()
             {
-                this.set_from_stock( Gtk.STOCK_MEDIA_PLAY );
+                this.set_from_stock( Gtk.Stock.MEDIA_PLAY );
                 this.label= "Start Commits";
                 this.always_show_image = true;
                 this.accel_group = null;
@@ -148,10 +151,10 @@ class StatusIconA : StatusIcon {
                     
                     //
                    // this.el.label  = status ? 'Resume' : 'Pause';
-                    statusicon.set_from_stock( Gtk.STOCK_MEDIA_PLAY );
+                    statusicon.set_from_stock( Gtk.Stock.MEDIA_PLAY );
                     
                     
-                })
+                });
                 //    id : 'pause',
             }