NewBranch.bjs
[gitlive] / NewBranch.vala
1 static NewBranch  _NewBranch;
2
3 public class NewBranch : Object
4 {
5     public Gtk.Dialog el;
6     private NewBranch  _this;
7
8     public static NewBranch singleton()
9     {
10         if (_NewBranch == null) {
11             _NewBranch= new NewBranch();
12         }
13         return _NewBranch;
14     }
15     public Xcls_ticketsel ticketsel;
16     public Xcls_dbcellrenderer dbcellrenderer;
17     public Xcls_dbmodel dbmodel;
18     public Xcls_name name;
19
20         // my vars (def)
21     public GitRepo? repo;
22     public bool running;
23     public Gee.ArrayList<GitMonitorQueue> queue;
24
25     // ctor
26     public NewBranch()
27     {
28         _this = this;
29         this.el = new Gtk.Dialog();
30
31         // my vars (dec)
32         this.repo = null;
33         this.running = false;
34         this.queue = null;
35
36         // set gobject values
37         this.el.title = "Create a working branch ";
38         this.el.default_height = 200;
39         this.el.default_width = 500;
40         this.el.deletable = true;
41         this.el.modal = true;
42         var child_0 = new Xcls_VBox2( _this );
43         child_0.ref();
44         this.el.get_content_area().add (  child_0.el  );
45         var child_1 = new Xcls_Button10( _this );
46         child_1.ref();
47         this.el.add_action_widget (  child_1.el , 0 );
48         var child_2 = new Xcls_Button11( _this );
49         child_2.ref();
50         this.el.add_action_widget (  child_2.el , 1 );
51
52         //listeners
53         this.el.delete_event.connect( (self, event) => {
54             this.el.hide();
55             return true; 
56             //test  
57         });
58         this.el.response.connect( (self, response_id) =>  { 
59           
60                 GLib.debug("got %d", (int) response_id);
61                 if (response_id == 0) {
62                     _this.el.hide();    
63                     this.running = false; 
64                         return;
65                 }
66                  
67                 // have they selected a ticket..
68                 // make that the current active ticket?
69                 // we really need to store locally what ticket is being worked on..
70                 // in theory we could be working on multiple project and not merging..
71                 // -- each repo would have their active ticket (only one per repo)
72                 // -- so we could just store that in there
73                 // -- initial load can check the contents of the ticket files on first scan.
74                 var ticket_id = _this.ticketsel.selectedTicketId();
75                 
76             if (this.repo != null) {
77                 var bn = _this.name.el.get_text();
78         
79                         var res = this.repo.setActiveTicket(                    
80                                  RooTicket.singleton().getById(ticket_id != "" ? ticket_id : "-1"), bn
81                          );
82                          if (res) {
83                                 // start the monitoring..
84                                  GitMonitor.gitmonitor.start();
85                                  
86                          }
87             }
88             
89         
90             this.running = false; 
91         
92                 this.el.hide();
93                  
94                  
95         
96                  
97         });
98         this.el.show.connect( (self)  => {
99          
100         
101           //test
102         });
103     }
104
105     // user defined functions
106     public   void show ( GitRepo repo, Gee.ArrayList<GitMonitorQueue> queue ) 
107     {
108          // this.el.set_gravity(Gdk.Gravity.NORTH);
109         if (this.running) { // should not happen!!
110                 GLib.error("new branch show called, when already being displayed?");
111         }
112         this.queue = queue;
113         
114         this.running  = true;
115         GitMonitor.gitmonitor.stop();
116         
117         this.repo = repo;
118         
119         this.el.move((Gdk.Screen.width() / 2)- 250 ,0);
120                 GLib.debug("Loading tickets"); 
121     
122     
123         this.el.show_all();
124             this.el.set_keep_above(true);
125         _this.dbmodel.loadTickets();
126         this.el.run();
127     
128     }
129     public class Xcls_VBox2 : Object
130     {
131         public Gtk.VBox el;
132         private NewBranch  _this;
133
134
135             // my vars (def)
136
137         // ctor
138         public Xcls_VBox2(NewBranch _owner )
139         {
140             _this = _owner;
141             this.el = new Gtk.VBox( true, 0 );
142
143             // my vars (dec)
144
145             // set gobject values
146             var child_0 = new Xcls_Table3( _this );
147             child_0.ref();
148             this.el.pack_start (  child_0.el , false,false,0 );
149         }
150
151         // user defined functions
152     }
153     public class Xcls_Table3 : Object
154     {
155         public Gtk.Table el;
156         private NewBranch  _this;
157
158
159             // my vars (def)
160
161         // ctor
162         public Xcls_Table3(NewBranch _owner )
163         {
164             _this = _owner;
165             this.el = new Gtk.Table( 5, 6, false );
166
167             // my vars (dec)
168
169             // set gobject values
170             this.el.margin = 2;
171             this.el.column_spacing = 2;
172             var child_0 = new Xcls_Label4( _this );
173             child_0.ref();
174             this.el.attach_defaults (  child_0.el , 0,1,0,1 );
175             var child_1 = new Xcls_ticketsel( _this );
176             child_1.ref();
177             this.el.attach_defaults (  child_1.el , 2,5,1,2 );
178             var child_2 = new Xcls_Label8( _this );
179             child_2.ref();
180             this.el.attach_defaults (  child_2.el , 0,1,2,3 );
181             var child_3 = new Xcls_name( _this );
182             child_3.ref();
183             this.el.attach_defaults (  child_3.el , 0,5,3,4 );
184         }
185
186         // user defined functions
187     }
188     public class Xcls_Label4 : Object
189     {
190         public Gtk.Label el;
191         private NewBranch  _this;
192
193
194             // my vars (def)
195
196         // ctor
197         public Xcls_Label4(NewBranch _owner )
198         {
199             _this = _owner;
200             this.el = new Gtk.Label( "Project" );
201
202             // my vars (dec)
203
204             // set gobject values
205             this.el.xalign = 0.900000f;
206             this.el.visible = true;
207         }
208
209         // user defined functions
210     }
211
212     public class Xcls_ticketsel : Object
213     {
214         public Gtk.ComboBox el;
215         private NewBranch  _this;
216
217
218             // my vars (def)
219         public bool loading;
220
221         // ctor
222         public Xcls_ticketsel(NewBranch _owner )
223         {
224             _this = _owner;
225             _this.ticketsel = this;
226             this.el = new Gtk.ComboBox();
227
228             // my vars (dec)
229             this.loading = false;
230
231             // set gobject values
232             var child_0 = new Xcls_dbcellrenderer( _this );
233             child_0.ref();
234             this.el.pack_start (  child_0.el , true );
235             var child_1 = new Xcls_dbmodel( _this );
236             child_1.ref();
237             this.el.set_model (  child_1.el  );
238
239             // init method
240
241             this.el.add_attribute(_this.dbcellrenderer.el , "markup", 1 );
242
243             //listeners
244             this.el.changed.connect( () => {
245                 if (this.loading) {
246                         return;
247                 }
248                 var ticket_id = this.selectedTicketId();
249                 
250                 var name = RooTicket.singleton().usernameLocal();
251                 
252                 if (ticket_id == "" || ticket_id == null) {
253                 
254                         var dt = new  DateTime.now_local();
255                         _this.name.el.set_text("wip_%s_%s".printf(name,dt.format("%Y_%b_%d")));
256                         return;
257                 }
258                 
259                 
260                 var ticket = RooTicket.singleton().getById(ticket_id);
261                
262                 _this.name.el.set_text("wip_%s_T%s_%s".printf(name,ticket.id, ticket.summaryToBranchName()));
263                 
264                 //GLib.debug (//"Selection: %s, %s\n", (string) val1, (string) val2);
265             });
266         }
267
268         // user defined functions
269         public string selectedTicketId () {
270         Gtk.TreeIter iter;
271                 Value val1;
272          
273          
274                 this.el.get_active_iter (out iter);
275                 _this.dbmodel.el.get_value (iter, 0, out val1);
276          
277         
278                 return  (string) val1;
279                 
280                 
281                 
282                 
283         }
284     }
285     public class Xcls_dbcellrenderer : Object
286     {
287         public Gtk.CellRendererText el;
288         private NewBranch  _this;
289
290
291             // my vars (def)
292
293         // ctor
294         public Xcls_dbcellrenderer(NewBranch _owner )
295         {
296             _this = _owner;
297             _this.dbcellrenderer = this;
298             this.el = new Gtk.CellRendererText();
299
300             // my vars (dec)
301
302             // set gobject values
303         }
304
305         // user defined functions
306     }
307
308     public class Xcls_dbmodel : Object
309     {
310         public Gtk.ListStore el;
311         private NewBranch  _this;
312
313
314             // my vars (def)
315
316         // ctor
317         public Xcls_dbmodel(NewBranch _owner )
318         {
319             _this = _owner;
320             _this.dbmodel = this;
321             this.el = new Gtk.ListStore( 2, typeof(string),typeof(string) );
322
323             // my vars (dec)
324
325             // set gobject values
326         }
327
328         // user defined functions
329         public void loadTickets () {
330         
331             RooTicket.singleton().loadTickets();
332             
333             _this.ticketsel.loading = true;
334         
335             this.el.clear();                                    
336             Gtk.TreeIter iter;
337             var el = this.el;
338             
339             el.append(out iter);
340         
341             
342             el.set_value(iter, 0, "");
343             el.set_value(iter, 1, "-- select a ticket --");
344             
345             _this.ticketsel.el.set_active_iter(iter);
346             var tickets = RooTicket.singleton().tickets;
347             foreach(var ticket in tickets) {
348             
349                 el.append(out iter);
350                 
351                 el.set_value(iter, 0, ticket.id);
352                 el.set_value(iter, 1, "#%s [%s] %s".printf( ticket.id, ticket.project_id_name , ticket.summary));
353                 
354                 //if (data.get(i) == cur) {
355                  //   _this.build_module.el.set_active_iter(iter);
356                // }
357                 
358             }
359             
360             _this.ticketsel.loading = false;
361              //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          
362                                              
363         }
364     }
365
366
367     public class Xcls_Label8 : Object
368     {
369         public Gtk.Label el;
370         private NewBranch  _this;
371
372
373             // my vars (def)
374
375         // ctor
376         public Xcls_Label8(NewBranch _owner )
377         {
378             _this = _owner;
379             this.el = new Gtk.Label( "Use this as branch name" );
380
381             // my vars (dec)
382
383             // set gobject values
384             this.el.halign = Gtk.Align.START;
385             this.el.justify = Gtk.Justification.RIGHT;
386             this.el.xalign = 0.900000f;
387         }
388
389         // user defined functions
390     }
391
392     public class Xcls_name : Object
393     {
394         public Gtk.Entry el;
395         private NewBranch  _this;
396
397
398             // my vars (def)
399
400         // ctor
401         public Xcls_name(NewBranch _owner )
402         {
403             _this = _owner;
404             _this.name = this;
405             this.el = new Gtk.Entry();
406
407             // my vars (dec)
408
409             // set gobject values
410             this.el.visible = true;
411         }
412
413         // user defined functions
414     }
415
416
417
418     public class Xcls_Button10 : Object
419     {
420         public Gtk.Button el;
421         private NewBranch  _this;
422
423
424             // my vars (def)
425
426         // ctor
427         public Xcls_Button10(NewBranch _owner )
428         {
429             _this = _owner;
430             this.el = new Gtk.Button();
431
432             // my vars (dec)
433
434             // set gobject values
435             this.el.relief = Gtk.ReliefStyle.NONE;
436             this.el.label = "Do not create Branch";
437         }
438
439         // user defined functions
440     }
441
442     public class Xcls_Button11 : Object
443     {
444         public Gtk.Button el;
445         private NewBranch  _this;
446
447
448             // my vars (def)
449
450         // ctor
451         public Xcls_Button11(NewBranch _owner )
452         {
453             _this = _owner;
454             this.el = new Gtk.Button();
455
456             // my vars (dec)
457
458             // set gobject values
459             this.el.label = "Create Branch";
460         }
461
462         // user defined functions
463     }
464
465 }