Changed MergeBranch.bjsMergeBranch.vala
[gitlive] / MergeBranch.vala
1 static MergeBranch  _MergeBranch;
2
3 public class MergeBranch : Object
4 {
5     public Gtk.Dialog el;
6     private MergeBranch  _this;
7
8     public static MergeBranch singleton()
9     {
10         if (_MergeBranch == null) {
11             _MergeBranch= new MergeBranch();
12         }
13         return _MergeBranch;
14     }
15     public Xcls_table table;
16     public Xcls_actionsel actionsel;
17     public Xcls_actioncellrenderer actioncellrenderer;
18     public Xcls_actionmodel actionmodel;
19     public Xcls_projectsel projectsel;
20     public Xcls_prcellrenderer prcellrenderer;
21     public Xcls_prmodel prmodel;
22     public Xcls_ticketsel ticketsel;
23     public Xcls_dbcellrenderer dbcellrenderer;
24     public Xcls_dbmodel dbmodel;
25     public Xcls_btn_not_me btn_not_me;
26     public Xcls_btn_closed btn_closed;
27     public Xcls_name name;
28     public Xcls_label_diff label_diff;
29     public Xcls_label_ticket label_ticket;
30     public Xcls_diff_view diff_view;
31     public Xcls_scrolled_window scrolled_window;
32     public Xcls_view view;
33     public Xcls_spinner spinner;
34     public Xcls_mergebtn mergebtn;
35
36         // my vars (def)
37     public GitRepo repo;
38     public RooTicket? ticket;
39     public bool running;
40
41     // ctor
42     public MergeBranch()
43     {
44         _this = this;
45         this.el = new Gtk.Dialog();
46
47         // my vars (dec)
48         this.ticket = null;
49         this.running = false;
50
51         // set gobject values
52         this.el.title = "Merge Branch";
53         this.el.default_height = 200;
54         this.el.default_width = 500;
55         this.el.deletable = true;
56         this.el.modal = true;
57         var child_0 = new Xcls_Box2( _this );
58         child_0.ref();
59         this.el.get_content_area().add (  child_0.el  );
60         var child_1 = new Xcls_Button32( _this );
61         child_1.ref();
62         this.el.add_action_widget (  child_1.el , 0 );
63         var child_2 = new Xcls_mergebtn( _this );
64         child_2.ref();
65         this.el.add_action_widget (  child_2.el , 1 );
66
67         //listeners
68         this.el.delete_event.connect( (self, event) => {
69             this.el.hide();
70             return true; 
71             //test  
72         });
73         this.el.response.connect( (self, response_id) =>  { 
74           
75                 GLib.debug("got %d", (int) response_id);
76                 if (response_id < 1) {
77                     _this.el.hide();    
78                     this.running = false; 
79                 GitMonitor.gitmonitor.start();
80                         return;
81                 }
82                 
83                 
84                 
85                  /*
86                 // have they selected a ticket..
87                 // make that the current active ticket?
88                 // we really need to store locally what ticket is being worked on..
89                 // in theory we could be working on multiple project and not merging..
90                 // -- each repo would have their active ticket (only one per repo)
91                 // -- so we could just store that in there
92                 // -- initial load can check the contents of the ticket files on first scan.
93                 var ticket_id = _this.ticketsel.selectedTicketId();
94                 
95             if (this.repo != null) {
96                 var bn = _this.name.el.get_text();
97                 if (ticket_id != "" ) {
98                                 this.repo.setActiveTicket( RooTicket.singleton().getById(ticket_id), bn);
99                         } else {
100                                 this.repo.createBranchNamed(bn);
101                         }
102             }
103                 */
104                 
105                 if (this.repo != null) {
106                         repo.doMerge(
107                                 _this.actionsel.selectedAction(), 
108                                 _this.ticketsel.selectedTicketId(),
109                                 _this.name.el.get_text()
110                         );
111                 
112                 } else {
113                         GitRepo.doMerges(
114                                 _this.actionsel.selectedAction(), 
115                                 _this.ticketsel.selectedTicketId(),
116                                 _this.name.el.get_text()
117                         );
118                 }
119                 this.running = false; 
120         
121                  
122                 _this.el.hide();        
123                 GitMonitor.gitmonitor.start();
124         
125                  
126         });
127     }
128
129     // user defined functions
130     public   void show (  RooTicket ticket, GitRepo? repo ) 
131     {
132          // this.el.set_gravity(Gdk.Gravity.NORTH);
133         if (this.running) {
134                 return;
135         }
136         GitMonitor.gitmonitor.stop();
137         
138         _this.el.show_all();
139         
140         _this.table.el.hide();
141         _this.scrolled_window.el.hide();
142         _this.spinner.el.show();
143         _this.spinner.el.start();       
144         this.el.set_keep_above(true);    
145         this.el.move((Gdk.Screen.width() / 2)- 250 ,0);
146                 GLib.debug("Loading tickets"); 
147      
148         
149         this.ticket = ticket;
150         this.repo = repo;
151         
152         
153         Timeout.add_seconds(1, () => {
154         
155             _this.prmodel.loadProjects(ticket.project_id);
156         
157             _this.diff_view.el.get_buffer().set_text(
158                 repo != null ? repo.previewMerge() : GitRepo.previewMerges(ticket.id)
159                 );              
160                 // if we are not working on a ticket, then we should be able to pick one?
161                 _this.dbmodel.loadTickets(ticket.project_id);
162                 _this.actionmodel.loadActions();
163                 _this.mergebtn.updateState();
164                 _this.view.loadTicket(ticket.id);
165                 _this.spinner.el.stop();
166                 _this.spinner.el.hide();        
167     
168                 this.table.el.show();
169                 return false;
170         });
171         
172         this.el.run();
173          
174     }
175     public class Xcls_Box2 : Object
176     {
177         public Gtk.Box el;
178         private MergeBranch  _this;
179
180
181             // my vars (def)
182
183         // ctor
184         public Xcls_Box2(MergeBranch _owner )
185         {
186             _this = _owner;
187             this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
188
189             // my vars (dec)
190
191             // set gobject values
192             var child_0 = new Xcls_table( _this );
193             child_0.ref();
194             this.el.pack_start (  child_0.el , false,false,0 );
195             var child_1 = new Xcls_Notebook22( _this );
196             child_1.ref();
197             this.el.add (  child_1.el  );
198             var child_2 = new Xcls_spinner( _this );
199             child_2.ref();
200             this.el.add (  child_2.el  );
201         }
202
203         // user defined functions
204     }
205     public class Xcls_table : Object
206     {
207         public Gtk.Table el;
208         private MergeBranch  _this;
209
210
211             // my vars (def)
212
213         // ctor
214         public Xcls_table(MergeBranch _owner )
215         {
216             _this = _owner;
217             _this.table = this;
218             this.el = new Gtk.Table( 4, 2, false );
219
220             // my vars (dec)
221
222             // set gobject values
223             this.el.margin = 2;
224             this.el.column_spacing = 2;
225             this.el.vexpand = false;
226             var child_0 = new Xcls_Label4( _this );
227             child_0.ref();
228             this.el.attach_defaults (  child_0.el , 0,1,0,1 );
229             var child_1 = new Xcls_actionsel( _this );
230             child_1.ref();
231             this.el.attach_defaults (  child_1.el , 1,2,0,1 );
232             var child_2 = new Xcls_Label8( _this );
233             child_2.ref();
234             this.el.attach_defaults (  child_2.el , 0,1,1,2 );
235             var child_3 = new Xcls_projectsel( _this );
236             child_3.ref();
237             this.el.attach_defaults (  child_3.el , 1,2,1,2 );
238             var child_4 = new Xcls_Label12( _this );
239             child_4.ref();
240             this.el.attach_defaults (  child_4.el , 0,1,2,3 );
241             var child_5 = new Xcls_ticketsel( _this );
242             child_5.ref();
243             this.el.attach_defaults (  child_5.el , 1,2,2,3 );
244             var child_6 = new Xcls_Box16( _this );
245             child_6.ref();
246             this.el.attach_defaults (  child_6.el , 0,2,3,4 );
247             var child_7 = new Xcls_Label20( _this );
248             child_7.ref();
249             this.el.attach_defaults (  child_7.el , 0,1,4,5 );
250             var child_8 = new Xcls_name( _this );
251             child_8.ref();
252             this.el.attach_defaults (  child_8.el , 1,2,4,5 );
253         }
254
255         // user defined functions
256     }
257     public class Xcls_Label4 : Object
258     {
259         public Gtk.Label el;
260         private MergeBranch  _this;
261
262
263             // my vars (def)
264
265         // ctor
266         public Xcls_Label4(MergeBranch _owner )
267         {
268             _this = _owner;
269             this.el = new Gtk.Label( "Do what?" );
270
271             // my vars (dec)
272
273             // set gobject values
274             this.el.margin_right = 3;
275             this.el.halign = Gtk.Align.END;
276             this.el.visible = true;
277         }
278
279         // user defined functions
280     }
281
282     public class Xcls_actionsel : Object
283     {
284         public Gtk.ComboBox el;
285         private MergeBranch  _this;
286
287
288             // my vars (def)
289         public bool loading;
290
291         // ctor
292         public Xcls_actionsel(MergeBranch _owner )
293         {
294             _this = _owner;
295             _this.actionsel = this;
296             this.el = new Gtk.ComboBox();
297
298             // my vars (dec)
299             this.loading = false;
300
301             // set gobject values
302             this.el.hexpand = true;
303             var child_0 = new Xcls_actioncellrenderer( _this );
304             child_0.ref();
305             this.el.pack_start (  child_0.el , true );
306             var child_1 = new Xcls_actionmodel( _this );
307             child_1.ref();
308             this.el.set_model (  child_1.el  );
309
310             // init method
311
312             this.el.add_attribute(_this.actioncellrenderer.el , "markup", 1 );
313
314             //listeners
315             this.el.changed.connect( () => {
316                 if (this.loading) {
317                         return;
318                 }
319                 _this.name.updateText();
320                 _this.mergebtn.updateState();
321                 //GLib.debug (//"Selection: %s, %s\n", (string) val1, (string) val2);
322             });
323         }
324
325         // user defined functions
326         public string selectedAction () {
327                 Gtk.TreeIter iter;
328                 Value val1;
329          
330                 this.el.get_active_iter (out iter);
331                 _this.actionmodel.el.get_value (iter, 0, out val1);
332         
333                 return  (string) val1;
334         }
335     }
336     public class Xcls_actioncellrenderer : Object
337     {
338         public Gtk.CellRendererText el;
339         private MergeBranch  _this;
340
341
342             // my vars (def)
343
344         // ctor
345         public Xcls_actioncellrenderer(MergeBranch _owner )
346         {
347             _this = _owner;
348             _this.actioncellrenderer = this;
349             this.el = new Gtk.CellRendererText();
350
351             // my vars (dec)
352
353             // set gobject values
354         }
355
356         // user defined functions
357     }
358
359     public class Xcls_actionmodel : Object
360     {
361         public Gtk.ListStore el;
362         private MergeBranch  _this;
363
364
365             // my vars (def)
366
367         // ctor
368         public Xcls_actionmodel(MergeBranch _owner )
369         {
370             _this = _owner;
371             _this.actionmodel = this;
372             this.el = new Gtk.ListStore( 2, typeof(string),typeof(string) );
373
374             // my vars (dec)
375
376             // set gobject values
377         }
378
379         // user defined functions
380         public void loadActions () {
381         
382          
383             
384             _this.actionsel.loading = true;
385         
386             this.el.clear();                                    
387             Gtk.TreeIter iter;
388             var el = this.el;
389             
390             el.append(out iter);
391         
392             
393             el.set_value(iter, 0, "");
394             el.set_value(iter, 1, "-- select action  --");
395             
396             _this.actionsel.el.set_active_iter(iter);
397         
398             el.append(out iter);    
399             el.set_value(iter, 0, "CLOSE");
400             el.set_value(iter, 1, "Merge changes to master - and CLOSE ticket");
401                 
402                 
403             el.append(out iter);    
404             el.set_value(iter, 0, "LEAVE");
405             el.set_value(iter, 1, "Merge changes to master - and LEAVE ticket open");
406         
407             el.append(out iter);    
408             el.set_value(iter, 0, "MASTER");
409             el.set_value(iter, 1, "Merge changes FROM master into this branch");    
410             
411             el.append(out iter);    
412             el.set_value(iter, 0, "EXIT");
413             el.set_value(iter, 1, "Switch back to MASTER branch - no merge");    
414             
415             
416             
417             _this.actionsel.loading = false;
418              //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          
419                                              
420         }
421     }
422
423
424     public class Xcls_Label8 : Object
425     {
426         public Gtk.Label el;
427         private MergeBranch  _this;
428
429
430             // my vars (def)
431
432         // ctor
433         public Xcls_Label8(MergeBranch _owner )
434         {
435             _this = _owner;
436             this.el = new Gtk.Label( "Project" );
437
438             // my vars (dec)
439
440             // set gobject values
441             this.el.margin_right = 3;
442             this.el.halign = Gtk.Align.END;
443             this.el.visible = true;
444         }
445
446         // user defined functions
447     }
448
449     public class Xcls_projectsel : Object
450     {
451         public Gtk.ComboBox el;
452         private MergeBranch  _this;
453
454
455             // my vars (def)
456         public bool loading;
457
458         // ctor
459         public Xcls_projectsel(MergeBranch _owner )
460         {
461             _this = _owner;
462             _this.projectsel = this;
463             this.el = new Gtk.ComboBox.with_entry();
464
465             // my vars (dec)
466             this.loading = false;
467
468             // set gobject values
469             this.el.hexpand = true;
470             var child_0 = new Xcls_prcellrenderer( _this );
471             child_0.ref();
472             this.el.pack_start (  child_0.el , true );
473             var child_1 = new Xcls_prmodel( _this );
474             child_1.ref();
475             this.el.set_model (  child_1.el  );
476
477             // init method
478
479             this.el.set_entry_text_column(1);
480
481             //listeners
482             this.el.changed.connect( () => {
483                 if (this.loading) {
484                         return;
485                 }
486                 var project_id = this.selectedProjectId();
487                 _this.dbmodel.loadTickets(project_id);
488                 
489                 
490                 /*if (this.loading) {
491                         return;
492                 }
493                 var ticket_id = this.selectedTicketId();
494                 
495                 var name = RooTicket.singleton().usernameLocal();
496                 
497                 if (ticket_id == "" || ticket_id == null) {
498                 
499                         var dt = new  DateTime.now_local();
500                         _this.name.el.set_text("wip_%s_%s".printf(name,dt.format("%Y_%b_%d")));
501                         return;
502                 }
503                 
504                 
505                 var ticket = RooTicket.singleton().getById(ticket_id);
506                
507                 _this.name.el.set_text("wip_%s_T%s_%s".printf(name,ticket.id, ticket.summaryToBranchName()));
508                 
509                 //GLib.debug (//"Selection: %s, %s\n", (string) val1, (string) val2);
510                 */
511             });
512         }
513
514         // user defined functions
515         public string selectedProjectId () {
516                 Gtk.TreeIter iter;
517                 Value val1;
518          
519          
520                 this.el.get_active_iter (out iter);
521                 _this.prmodel.el.get_value (iter, 0, out val1);
522          
523         
524                 return  (string) val1;
525                 
526                 
527                 
528                 
529         }
530     }
531     public class Xcls_prcellrenderer : Object
532     {
533         public Gtk.CellRendererText el;
534         private MergeBranch  _this;
535
536
537             // my vars (def)
538
539         // ctor
540         public Xcls_prcellrenderer(MergeBranch _owner )
541         {
542             _this = _owner;
543             _this.prcellrenderer = this;
544             this.el = new Gtk.CellRendererText();
545
546             // my vars (dec)
547
548             // set gobject values
549         }
550
551         // user defined functions
552     }
553
554     public class Xcls_prmodel : Object
555     {
556         public Gtk.ListStore el;
557         private MergeBranch  _this;
558
559
560             // my vars (def)
561
562         // ctor
563         public Xcls_prmodel(MergeBranch _owner )
564         {
565             _this = _owner;
566             _this.prmodel = this;
567             this.el = new Gtk.ListStore( 2, typeof(string),typeof(string) );
568
569             // my vars (dec)
570
571             // set gobject values
572         }
573
574         // user defined functions
575         public void loadProjects (string id) {
576         
577         
578             
579             _this.projectsel.loading = true;
580         
581             this.el.clear();                                    
582             Gtk.TreeIter iter;
583             var el = this.el;
584             
585             el.append(out iter);
586         
587             
588             el.set_value(iter, 0, "");
589             el.set_value(iter, 1, "-- select a project --");
590             if (id == "") {
591                     _this.projectsel.el.set_active_iter(iter);
592             }
593           
594             foreach(var project in RooProject.projects()) {
595             
596                 el.append(out iter);
597                 
598                 el.set_value(iter, 0, project.id);
599                 el.set_value(iter, 1,  project.name );
600                 if (id == project.id) {
601                            _this.projectsel.el.set_active_iter(iter);
602                     }   
603                 
604             }
605             
606             _this.projectsel.loading = false;
607              //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          
608                                              
609         }
610     }
611
612
613     public class Xcls_Label12 : Object
614     {
615         public Gtk.Label el;
616         private MergeBranch  _this;
617
618
619             // my vars (def)
620
621         // ctor
622         public Xcls_Label12(MergeBranch _owner )
623         {
624             _this = _owner;
625             this.el = new Gtk.Label( "Select Ticket" );
626
627             // my vars (dec)
628
629             // set gobject values
630             this.el.margin_right = 3;
631             this.el.halign = Gtk.Align.END;
632             this.el.justify = Gtk.Justification.RIGHT;
633             this.el.xalign = 0.900000f;
634             this.el.visible = true;
635         }
636
637         // user defined functions
638     }
639
640     public class Xcls_ticketsel : Object
641     {
642         public Gtk.ComboBox el;
643         private MergeBranch  _this;
644
645
646             // my vars (def)
647         public bool loading;
648
649         // ctor
650         public Xcls_ticketsel(MergeBranch _owner )
651         {
652             _this = _owner;
653             _this.ticketsel = this;
654             this.el = new Gtk.ComboBox.with_entry();
655
656             // my vars (dec)
657             this.loading = false;
658
659             // set gobject values
660             var child_0 = new Xcls_dbcellrenderer( _this );
661             child_0.ref();
662             this.el.pack_start (  child_0.el , true );
663             var child_1 = new Xcls_dbmodel( _this );
664             child_1.ref();
665             this.el.set_model (  child_1.el  );
666
667             // init method
668
669             //this.el.add_attribute(_this.dbcellrenderer.el , "markup", 1 );
670             this.el.set_entry_text_column(1);
671
672             //listeners
673             this.el.changed.connect( () => {
674                 if (this.loading) {
675                         return;
676                 }
677                   
678                 _this.view.loadTicket(ticket.id);
679                  _this.name.updateText();
680                 //GLib.debug (//"Selection: %s, %s\n", (string) val1, (string) val2);
681             });
682         }
683
684         // user defined functions
685         public string selectedTicketId () {
686         Gtk.TreeIter iter;
687                 Value val1;
688          
689          
690                 this.el.get_active_iter (out iter);
691                 _this.dbmodel.el.get_value (iter, 0, out val1);
692          
693         
694                 return  (string) val1;
695                 
696                 
697                 
698                 
699         }
700     }
701     public class Xcls_dbcellrenderer : Object
702     {
703         public Gtk.CellRendererText el;
704         private MergeBranch  _this;
705
706
707             // my vars (def)
708
709         // ctor
710         public Xcls_dbcellrenderer(MergeBranch _owner )
711         {
712             _this = _owner;
713             _this.dbcellrenderer = this;
714             this.el = new Gtk.CellRendererText();
715
716             // my vars (dec)
717
718             // set gobject values
719         }
720
721         // user defined functions
722     }
723
724     public class Xcls_dbmodel : Object
725     {
726         public Gtk.ListStore el;
727         private MergeBranch  _this;
728
729
730             // my vars (def)
731
732         // ctor
733         public Xcls_dbmodel(MergeBranch _owner )
734         {
735             _this = _owner;
736             _this.dbmodel = this;
737             this.el = new Gtk.ListStore( 2, typeof(string),typeof(string) );
738
739             // my vars (dec)
740
741             // set gobject values
742         }
743
744         // user defined functions
745         public void loadTickets (string project_id , string tid = "") {
746         
747         
748             
749             // fixme .. get project id from selection..
750             
751              RooTicket.singleton().loadTickets(
752                                 project_id,
753                                 _this.btn_not_me.el.active ? RooTicket.Who.ANYBODY :  RooTicket.Who.ME,
754                                  _this.btn_closed.el.active ? RooTicket.Status.ALL :  RooTicket.Status.ACTIVE
755                          );
756                 
757             _this.ticketsel.loading = true;
758         
759             this.el.clear();                                    
760             Gtk.TreeIter iter;
761             var el = this.el;
762             
763             el.append(out iter);
764         
765             
766             el.set_value(iter, 0, "");
767             el.set_value(iter, 1, "-- select a ticket --");
768             
769             _this.ticketsel.el.set_active_iter(iter);
770             var tickets = RooTicket.singleton().tickets;
771             foreach(var ticket in tickets) {
772             
773                 el.append(out iter);
774                 
775                 el.set_value(iter, 0, ticket.id);
776                 el.set_value(iter, 1, "#%s [%s] %s".printf( ticket.id, ticket.project_id_name , ticket.summary));
777                 
778                 if (ticket.id == tid) {
779                             _this.ticketsel.el.set_active_iter(iter);
780                 }
781                 
782             }
783             
784             _this.ticketsel.loading = false;
785              //this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          
786                                              
787         }
788     }
789
790
791     public class Xcls_Box16 : Object
792     {
793         public Gtk.Box el;
794         private MergeBranch  _this;
795
796
797             // my vars (def)
798
799         // ctor
800         public Xcls_Box16(MergeBranch _owner )
801         {
802             _this = _owner;
803             this.el = new Gtk.Box( Gtk.Orientation.HORIZONTAL, 0 );
804
805             // my vars (dec)
806
807             // set gobject values
808             var child_0 = new Xcls_btn_not_me( _this );
809             child_0.ref();
810             this.el.add (  child_0.el  );
811             var child_1 = new Xcls_btn_closed( _this );
812             child_1.ref();
813             this.el.add (  child_1.el  );
814             var child_2 = new Xcls_Label19( _this );
815             child_2.ref();
816             this.el.add (  child_2.el  );
817         }
818
819         // user defined functions
820     }
821     public class Xcls_btn_not_me : Object
822     {
823         public Gtk.CheckButton el;
824         private MergeBranch  _this;
825
826
827             // my vars (def)
828
829         // ctor
830         public Xcls_btn_not_me(MergeBranch _owner )
831         {
832             _this = _owner;
833             _this.btn_not_me = this;
834             this.el = new Gtk.CheckButton();
835
836             // my vars (dec)
837
838             // set gobject values
839             this.el.label = "Show tickets not assigned to me";
840
841             //listeners
842             this.el.toggled.connect( () => {
843                 var project_id = _this.projectsel.selectedProjectId();
844                 _this.dbmodel.loadTickets(project_id);  
845             });
846         }
847
848         // user defined functions
849     }
850
851     public class Xcls_btn_closed : Object
852     {
853         public Gtk.CheckButton el;
854         private MergeBranch  _this;
855
856
857             // my vars (def)
858
859         // ctor
860         public Xcls_btn_closed(MergeBranch _owner )
861         {
862             _this = _owner;
863             _this.btn_closed = this;
864             this.el = new Gtk.CheckButton();
865
866             // my vars (dec)
867
868             // set gobject values
869             this.el.label = "Show closed Tickets";
870
871             //listeners
872             this.el.toggled.connect( () => {
873                 var project_id = _this.projectsel.selectedProjectId();
874                 _this.dbmodel.loadTickets(project_id);  
875                  
876             });
877         }
878
879         // user defined functions
880     }
881
882     public class Xcls_Label19 : Object
883     {
884         public Gtk.Label el;
885         private MergeBranch  _this;
886
887
888             // my vars (def)
889
890         // ctor
891         public Xcls_Label19(MergeBranch _owner )
892         {
893             _this = _owner;
894             this.el = new Gtk.Label( "<a href=\"refresh\">Refresh Ticket list</a>" );
895
896             // my vars (dec)
897
898             // set gobject values
899             this.el.halign = Gtk.Align.END;
900             this.el.hexpand = true;
901             this.el.use_markup = true;
902
903             //listeners
904             this.el.activate_link.connect( (uri) => {
905                 if (uri == "refresh") {
906                         RooProject.reload();
907                         var curproj = RooProject.getProjectByRepo(_this.repo);
908                          _this.prmodel.loadProjects(curproj == null ? "": curproj.id);
909             
910                         _this.dbmodel.loadTickets(curproj == null ? "": curproj.id);            
911                 }
912                 return true;
913             });
914         }
915
916         // user defined functions
917     }
918
919
920     public class Xcls_Label20 : Object
921     {
922         public Gtk.Label el;
923         private MergeBranch  _this;
924
925
926             // my vars (def)
927
928         // ctor
929         public Xcls_Label20(MergeBranch _owner )
930         {
931             _this = _owner;
932             this.el = new Gtk.Label( "Use this commit message" );
933
934             // my vars (dec)
935
936             // set gobject values
937             this.el.margin_right = 3;
938             this.el.halign = Gtk.Align.END;
939         }
940
941         // user defined functions
942     }
943
944     public class Xcls_name : Object
945     {
946         public Gtk.Entry el;
947         private MergeBranch  _this;
948
949
950             // my vars (def)
951
952         // ctor
953         public Xcls_name(MergeBranch _owner )
954         {
955             _this = _owner;
956             _this.name = this;
957             this.el = new Gtk.Entry();
958
959             // my vars (dec)
960
961             // set gobject values
962             this.el.visible = true;
963         }
964
965         // user defined functions
966         public void updateText () {
967                 var ticket_id = _this.ticketsel.selectedTicketId();
968                 
969                 RooTicket ticket = null;
970                 if (ticket_id.length > 0){
971                         ticket = RooTicket.singleton().getById(ticket_id);
972                 }
973                 
974                 var name = RooTicket.singleton().usernameLocal();
975                 var action = _this.actionsel.selectedAction();
976                 this.el.set_editable(true); 
977                 switch (action) {
978                         case "CLOSE": // merge changes and close..
979                                 this.el.set_text("Fix #%s - %s".printf(ticket_id, ticket != null ? ticket.summary : ""));
980                                 break;
981                         case "LEAVE": // partial fix    
982                                 this.el.set_text("Partial Fix #%s - %s".printf(ticket_id,   ticket != null ? ticket.summary : ""));
983                                 break;
984                         case "MASTER": // merge master
985                         case "EXIT": // just switch back...             
986                                 this.el.set_editable(false);
987                                 this.el.set_text(""); // not relivant..                         
988                                 break;
989                         default:
990                         
991                                 break; /// don't fix the text value.
992                 }
993            
994         }
995     }
996
997
998     public class Xcls_Notebook22 : Object
999     {
1000         public Gtk.Notebook el;
1001         private MergeBranch  _this;
1002
1003
1004             // my vars (def)
1005
1006         // ctor
1007         public Xcls_Notebook22(MergeBranch _owner )
1008         {
1009             _this = _owner;
1010             this.el = new Gtk.Notebook();
1011
1012             // my vars (dec)
1013
1014             // set gobject values
1015             this.el.vexpand = true;
1016             var child_0 = new Xcls_label_diff( _this );
1017             child_0.ref();
1018             var child_1 = new Xcls_label_ticket( _this );
1019             child_1.ref();
1020             var child_2 = new Xcls_Box25( _this );
1021             child_2.ref();
1022             this.el.append_page (  child_2.el , _this.label_diff.el );
1023             var child_3 = new Xcls_Box28( _this );
1024             child_3.ref();
1025             this.el.append_page (  child_3.el , _this.label_ticket.el );
1026         }
1027
1028         // user defined functions
1029     }
1030     public class Xcls_label_diff : Object
1031     {
1032         public Gtk.Label el;
1033         private MergeBranch  _this;
1034
1035
1036             // my vars (def)
1037
1038         // ctor
1039         public Xcls_label_diff(MergeBranch _owner )
1040         {
1041             _this = _owner;
1042             _this.label_diff = this;
1043             this.el = new Gtk.Label( "Projected Commit Diff" );
1044
1045             // my vars (dec)
1046
1047             // set gobject values
1048         }
1049
1050         // user defined functions
1051     }
1052
1053     public class Xcls_label_ticket : Object
1054     {
1055         public Gtk.Label el;
1056         private MergeBranch  _this;
1057
1058
1059             // my vars (def)
1060
1061         // ctor
1062         public Xcls_label_ticket(MergeBranch _owner )
1063         {
1064             _this = _owner;
1065             _this.label_ticket = this;
1066             this.el = new Gtk.Label( "Ticket Details" );
1067
1068             // my vars (dec)
1069
1070             // set gobject values
1071         }
1072
1073         // user defined functions
1074     }
1075
1076     public class Xcls_Box25 : Object
1077     {
1078         public Gtk.Box el;
1079         private MergeBranch  _this;
1080
1081
1082             // my vars (def)
1083
1084         // ctor
1085         public Xcls_Box25(MergeBranch _owner )
1086         {
1087             _this = _owner;
1088             this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
1089
1090             // my vars (dec)
1091
1092             // set gobject values
1093             this.el.homogeneous = false;
1094             var child_0 = new Xcls_ScrolledWindow26( _this );
1095             child_0.ref();
1096             this.el.pack_start (  child_0.el , true,true,0 );
1097         }
1098
1099         // user defined functions
1100     }
1101     public class Xcls_ScrolledWindow26 : Object
1102     {
1103         public Gtk.ScrolledWindow el;
1104         private MergeBranch  _this;
1105
1106
1107             // my vars (def)
1108
1109         // ctor
1110         public Xcls_ScrolledWindow26(MergeBranch _owner )
1111         {
1112             _this = _owner;
1113             this.el = new Gtk.ScrolledWindow( null, null );
1114
1115             // my vars (dec)
1116
1117             // set gobject values
1118             this.el.height_request = 400;
1119             var child_0 = new Xcls_diff_view( _this );
1120             child_0.ref();
1121             this.el.add (  child_0.el  );
1122         }
1123
1124         // user defined functions
1125     }
1126     public class Xcls_diff_view : Object
1127     {
1128         public Gtk.SourceView el;
1129         private MergeBranch  _this;
1130
1131
1132             // my vars (def)
1133
1134         // ctor
1135         public Xcls_diff_view(MergeBranch _owner )
1136         {
1137             _this = _owner;
1138             _this.diff_view = this;
1139             this.el = new Gtk.SourceView();
1140
1141             // my vars (dec)
1142
1143             // init method
1144
1145             var description =   Pango.FontDescription.from_string("monospace");
1146                 description.set_size(9000);
1147                 this.el.override_font(description);
1148                  var lm = Gtk.SourceLanguageManager.get_default();
1149                                 
1150                 ((Gtk.SourceBuffer)(this.el.get_buffer())).set_language(
1151                     lm.get_language("diff")
1152                 );
1153         }
1154
1155         // user defined functions
1156     }
1157
1158
1159
1160     public class Xcls_Box28 : Object
1161     {
1162         public Gtk.Box el;
1163         private MergeBranch  _this;
1164
1165
1166             // my vars (def)
1167
1168         // ctor
1169         public Xcls_Box28(MergeBranch _owner )
1170         {
1171             _this = _owner;
1172             this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
1173
1174             // my vars (dec)
1175
1176             // set gobject values
1177             this.el.homogeneous = false;
1178             var child_0 = new Xcls_scrolled_window( _this );
1179             child_0.ref();
1180             this.el.add (  child_0.el  );
1181         }
1182
1183         // user defined functions
1184     }
1185     public class Xcls_scrolled_window : Object
1186     {
1187         public Gtk.ScrolledWindow el;
1188         private MergeBranch  _this;
1189
1190
1191             // my vars (def)
1192
1193         // ctor
1194         public Xcls_scrolled_window(MergeBranch _owner )
1195         {
1196             _this = _owner;
1197             _this.scrolled_window = this;
1198             this.el = new Gtk.ScrolledWindow( null, null );
1199
1200             // my vars (dec)
1201
1202             // set gobject values
1203             this.el.height_request = 500;
1204             this.el.vexpand = true;
1205             var child_0 = new Xcls_view( _this );
1206             child_0.ref();
1207             this.el.add (  child_0.el  );
1208
1209             // init method
1210
1211             {
1212                 this.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);
1213             }
1214         }
1215
1216         // user defined functions
1217     }
1218     public class Xcls_view : Object
1219     {
1220         public WebKit.WebView el;
1221         private MergeBranch  _this;
1222
1223
1224             // my vars (def)
1225
1226         // ctor
1227         public Xcls_view(MergeBranch _owner )
1228         {
1229             _this = _owner;
1230             _this.view = this;
1231             this.el = new WebKit.WebView();
1232
1233             // my vars (dec)
1234
1235             // set gobject values
1236         }
1237
1238         // user defined functions
1239         public void loadTicket (string tid) {
1240                 int h,w;
1241                 _this.el.get_size(out w, out h);
1242                 
1243                 if (tid == "") {
1244                         _this.scrolled_window.el.hide();
1245                         _this.el.resize(w, 150);
1246                 } else {
1247                         _this.scrolled_window.el.show();
1248                         _this.el.resize(w, 800);
1249                 }
1250                 
1251                 var rs =  RooTicket.singleton();                
1252                 var uri = new WebKit.URIRequest("https://roojs.com/admin.php/MTrack/View/" + tid);
1253                 var hd = uri.get_http_headers();
1254                 var authCode = Base64.encode ("%s:%s".printf(rs.username, rs.password).data);
1255                 hd.append("Authorization", "Basic %s".printf(authCode));
1256                 
1257                  this.el.load_request(uri);
1258         }
1259     }
1260
1261
1262
1263
1264     public class Xcls_spinner : Object
1265     {
1266         public Gtk.Spinner el;
1267         private MergeBranch  _this;
1268
1269
1270             // my vars (def)
1271
1272         // ctor
1273         public Xcls_spinner(MergeBranch _owner )
1274         {
1275             _this = _owner;
1276             _this.spinner = this;
1277             this.el = new Gtk.Spinner();
1278
1279             // my vars (dec)
1280
1281             // set gobject values
1282             this.el.hexpand = true;
1283             this.el.vexpand = true;
1284         }
1285
1286         // user defined functions
1287     }
1288
1289
1290     public class Xcls_Button32 : Object
1291     {
1292         public Gtk.Button el;
1293         private MergeBranch  _this;
1294
1295
1296             // my vars (def)
1297
1298         // ctor
1299         public Xcls_Button32(MergeBranch _owner )
1300         {
1301             _this = _owner;
1302             this.el = new Gtk.Button();
1303
1304             // my vars (dec)
1305
1306             // set gobject values
1307             this.el.relief = Gtk.ReliefStyle.NONE;
1308             this.el.label = "Cancel";
1309         }
1310
1311         // user defined functions
1312     }
1313
1314     public class Xcls_mergebtn : Object
1315     {
1316         public Gtk.Button el;
1317         private MergeBranch  _this;
1318
1319
1320             // my vars (def)
1321
1322         // ctor
1323         public Xcls_mergebtn(MergeBranch _owner )
1324         {
1325             _this = _owner;
1326             _this.mergebtn = this;
1327             this.el = new Gtk.Button();
1328
1329             // my vars (dec)
1330
1331             // set gobject values
1332             this.el.label = "Do Merge";
1333
1334             // init method
1335
1336             {
1337                this.el.get_style_context().add_class("suggested-action");
1338             }
1339         }
1340
1341         // user defined functions
1342         public void updateState () {
1343                 if (_this.actionsel.selectedAction() == "") {
1344                         // need to select an action..
1345                         this.el.set_sensitive(false);
1346                         return;
1347                 
1348                 
1349                 }
1350                         this.el.set_sensitive(true);
1351                         return;
1352         }
1353     }
1354
1355 }