StatusIcon.vala
[gitlive] / StatusIcon.vala
1 /**
2  * Status icon and menu for component of gitlive.
3  * 
4  * Implements XObject - however we want to control initialization.
5  * 
6  * 
7  * 
8  * Currently only does a few things
9  * a) Quit
10  * 
11  * b) Pause!??!
12  */
13    
14 // Compile::
15 // valac --pkg gtk+-3.0 StatusIcon.vala -o /tmp/StatusIcon
16    
17 //var gitlive = imports.gitlive;
18
19
20 using Gtk;
21
22
23 static int main (string[] args) {
24     // A reference to our file
25     Gtk.init (ref args);
26
27     var window = new TestWindow();
28     
29     window.show_all ();
30
31     Gtk.main ();
32     return 0;
33      
34
35 }
36
37 public class TestButton : Button {
38     public TestButton()
39     {
40         this.set_label("Click me");
41         
42         
43         this.clicked.connect (() => {
44             this.label = "Thank you";
45         });
46         
47     }
48     
49     
50 }
51
52 public class TestWindow : Window {
53
54     public TestWindow() {
55          this.title = "First GTK+ Program";
56         this.border_width = 10;
57         this.window_position = WindowPosition.CENTER;
58         this.set_default_size (350, 70);
59         
60         // -- connect all
61         this.destroy.connect (Gtk.main_quit);        
62         
63         // add children..
64         this.add(new TestButton());
65
66     }
67    
68     
69  
70    
71 }
72
73
74 pubic StatusIconA statusicon;
75  
76 class StatusIconA : StatusIcon {
77
78     bool paused = false;
79      
80     public StatusIconA() {
81         
82         statusicon = this;
83         
84         
85          //title : 'gitlive',
86         this.stock = Gtk.STOCK_REFRESH;
87         this.tooltip_text = "GitLive";
88         this.title = "gitlive";
89         
90         this.set_name("gitlive");
91        
92         
93         var menu = new MenuA();
94                  
95          
96         this.popup_menu.connect( (button,event_time) =>{
97             
98             //print(Array.prototype.slice.call(arguments).join(','));
99             
100             //var menu = this.get('menu');
101             
102             this.menu.show_all();
103             
104             if (this.paused) {
105                 menu.resume.show();
106                 menu.pause.hide();
107             } else {
108                 menu.resume.hide();
109                 menu.pause.show();
110             }
111              
112             //Gtk.get_current_event_device ()
113             menu.popup(
114                     
115                         null, null,
116                         null, button,
117                         event_time, null
118             );
119                         
120             
121             
122             //var g = { };
123             //var a = new Gdk.Rectangle();
124             //  needs direction=inout setting in gir to work (in bugzilla @present)
125             //this.el.get_geometry(g,a,null);
126              
127             // should check to see if @ top or bottom I guess..
128             //menu.el.get_toplevel().move(a.x, a.y +a.height);
129             //menu.el.get_toplevel().move(10,10);
130               
131         }); 
132         
133     }
134     
135     class MenuA : Menu
136     {
137         public ImageMenuItem pause;
138         public ImageMenuItem resume;
139         
140         public MenuA()
141         {
142             this.pause = new ImageMenuItemA();
143             this.append(this.pause);
144             this.resume = new ImageMenuItemB();
145             this.append(this.resume);
146         }
147         
148         
149         class ImageMenuItemA : ImageMenuItem {
150             
151             public ImageMenuItemA()
152             {
153                 this.set_from_stock( Gtk.STOCK_MEDIA_PAUSE );
154                 this.label= "Pause Commits";
155                 this.always_show_image = true;
156                 this.accel_group = null;
157                 
158                 this.activate.connect( () => {
159                     statusicon.paused = true;
160                     
161                     //GitMonitor.GitMonitor.stop();
162                    // this.el.label  = status ? 'Resume' : 'Pause';
163                     statusicon.set_from_stock( Gtk.STOCK_MEDIA_PAUSE );
164                     
165                     
166                 })
167                 //    id : 'pause',
168             }
169             
170             
171         }
172          class ImageMenuItemB : ImageMenuItem {
173             
174             public ImageMenuItemB()
175             {
176                 this.set_from_stock( Gtk.STOCK_MEDIA_PLAY );
177                 this.label= "Start Commits";
178                 this.always_show_image = true;
179                 this.accel_group = null;
180                 
181                 this.activate.connect( () => {
182                     //GitMonitor.GitMonitor.start();
183                     statusicon.paused = false;
184                     
185                     //
186                    // this.el.label  = status ? 'Resume' : 'Pause';
187                     statusicon.set_from_stock( Gtk.STOCK_MEDIA_PLAY );
188                     
189                     
190                 })
191                 //    id : 'pause',
192             }
193             
194             
195         }
196     }
197 }
198     
199     /*
200                 
201                 {
202                     init : function() {
203                         this.el = XObject.isSeed ?
204                             new Gtk.ImageMenuItem.from_stock(Gtk.STOCK_FULLSCREEN)
205                             : new Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_FULLSCREEN, null);
206                       
207                         XObject.prototype.init.call(this);
208                     },
209                     label: 'Pull (Refresh) All',
210                     always_show_image : true,
211                     accel_group : null,
212                     //label: 'Pause',
213                     pack:  'append',
214                     listeners : {
215                         activate : function () {
216                             imports.GitMonitor.GitMonitor.stop();
217                            
218                             
219                             var tr = imports.Scm.Repo.Repo.list();
220                             for (var i= 0; i< tr.length;i++) {
221                                 this.parent.parent.el.set_from_stock( i%2 ?  Gtk.STOCK_FULLSCREEN : Gtk.STOCK_LEAVE_FULLSCREEN );
222                                 
223                                 var repo = tr[i];
224                                 if (!repo.autocommit()) {
225                                     //??? should we ignore ones not on autocommit..
226                                     continue;
227                                 }
228                                 try {
229                                     this.parent.parent.el.set_tooltip_text("pull: " + repo.name);
230                                
231                                     var str = repo.pull();
232                                     // do not care if it's already in sycn..
233                                     if (str.match(/Already up-to-date/)) {
234                                         continue;
235                                     }
236                                     var notification = new Notify.Notification({
237                                        summary: "Updated " + repo.name,
238                                        body : str
239                                    });
240                                    notification.set_timeout(20);
241                                    notification.show();
242                                    
243                                 } catch(e) {
244                                     this.parent.parent.el.set_from_stock( Gtk.STOCK_MEDIA_RECORD );
245                                     print(JSON.stringify(e));
246                                     print("notification or push errror- probably to many in queue..");
247                                     imports.gitlive.errorDialog(e.message);
248
249                                 }
250                             }
251                             this.parent.parent.el.set_tooltip_text(this.parent.parent.tooltip_text);
252                                
253                             
254                              
255                           
256                             imports.GitMonitor.GitMonitor.start();
257                         }   
258                     }
259                 },
260                 {
261                     init : function() {
262                         this.el = XObject.isSeed ?
263                             new Gtk.ImageMenuItem.from_stock(Gtk.STOCK_SAVE)
264                             : new Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_SAVE, null);
265                          
266                         XObject.prototype.init.call(this);
267                     },
268                     label: 'Update Timesheet',
269                     always_show_image : true,
270                     accel_group : null,
271                     
272                     //label: 'Pause',
273                     pack:  'append',
274                     listeners : {
275                         activate : function () {
276                             var ret = imports.FixBug.FixBug.show();
277                             
278                         }
279                     }
280                 },
281                 
282                 
283                 {
284                     init : function() {
285                         this.el = XObject.isSeed ?
286                             new Gtk.ImageMenuItem.from_stock(Gtk.STOCK_FULLSCREEN)
287                             : new Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_FULLSCREEN, null);
288                          XObject.prototype.init.call(this);
289                     },
290                     label: 'Manage Clones',
291                     always_show_image : true,
292                     accel_group : null,
293                     
294                     //label: 'Pause',
295                     pack:  'append',
296                     listeners : {
297                         activate : function () {
298                              var ret = imports.Clones.Clones.show();
299                             
300                         }
301                     }
302                 },
303                 
304                 
305                 
306             
307                 {
308                     init : function() {
309                         this.el = XObject.isSeed ?
310                             new Gtk.ImageMenuItem.from_stock(Gtk.STOCK_ABOUT)
311                             : new Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_ABOUT, null);
312                    
313                         XObject.prototype.init.call(this);
314                     },
315                     label: 'About GitLive',
316                     pack:  'append',
317                     listeners : {
318                         activate : function () {
319                             var msg = new Gtk.AboutDialog({
320                                 program_name : "Git Live",
321                                 version: '0.3',
322                                 website: 'http://www.roojs.org/index.php/projects/gitlive.html',
323                                 website_label: 'RooJS Consulting',
324                                 license : 'LGPL'
325                             });
326                             msg.set_authors([ "Alan Knowles <alan@roojs.com>" ]);
327                             msg.run();
328                             msg.destroy();
329                         }
330                     }
331                 },
332                 
333                 {
334                     init : function() {
335                         
336                         this.el = XObject.isSeed ?
337                             new Gtk.ImageMenuItem.from_stock(Gtk.STOCK_QUIT)
338                             : new Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_QUIT, null);
339                      
340                         XObject.prototype.init.call(this);
341                     },
342                     label: 'Quit',
343                     pack:  'append',
344                     listeners : {
345                         activate : function () {
346                             Seed.quit();
347                         }
348                     }
349                 }
350                 
351                 
352             ]
353         }
354     ]
355     
356 });
357 */
358
359