NewBranch.bjs
[gitlive] / NewBranch.vala
1 static Xcls_DialogNewComponent  _DialogNewComponent;
2
3 public class Xcls_DialogNewComponent : Object
4 {
5     public Gtk.Dialog el;
6     private Xcls_DialogNewComponent  _this;
7
8     public static Xcls_DialogNewComponent singleton()
9     {
10         if (_DialogNewComponent == null) {
11             _DialogNewComponent= new Xcls_DialogNewComponent();
12         }
13         return _DialogNewComponent;
14     }
15     public Xcls_name name;
16     public Xcls_title title;
17     public Xcls_region region;
18     public Xcls_parent parent;
19     public Xcls_permname permname;
20     public Xcls_modOrder modOrder;
21     public Xcls_build_module build_module;
22     public Xcls_dbcellrenderer dbcellrenderer;
23     public Xcls_dbmodel dbmodel;
24
25         // my vars (def)
26     public signal void success (Project.Project pr, JsRender.JsRender file);
27     public Project.Project project;
28     public JsRender.JsRender file;
29
30     // ctor
31     public Xcls_DialogNewComponent()
32     {
33         _this = this;
34         this.el = new Gtk.Dialog();
35
36         // my vars (dec)
37         this.file = null;
38
39         // set gobject values
40         this.el.title = "New Component";
41         this.el.default_height = 200;
42         this.el.default_width = 500;
43         this.el.deletable = true;
44         this.el.modal = true;
45         var child_0 = new Xcls_VBox2( _this );
46         child_0.ref();
47         this.el.get_content_area().add (  child_0.el  );
48         var child_1 = new Xcls_Button20( _this );
49         child_1.ref();
50         this.el.add_action_widget (  child_1.el , 0 );
51         var child_2 = new Xcls_Button21( _this );
52         child_2.ref();
53         this.el.add_action_widget (  child_2.el , 1 );
54
55         //listeners
56         this.el.delete_event.connect( (self, event) => {
57             this.el.hide();
58             return true; 
59             //test  
60         });
61         this.el.response.connect( (self, response_id) =>  { 
62           
63                 if (response_id < 1) { // cancel!
64                     this.el.hide();
65                     return;
66                 }
67         
68         
69         
70                 if (_this.name.el.get_text().length  < 1) {
71                     StandardErrorDialog.show(
72                         this.el,
73                         "You have to set Component name "
74                     );
75                      
76                     return;
77                 }
78                 // what does this do?
79                 
80                 var isNew = _this.file.name.length  > 0 ? false : true;
81                 /*
82                 if (!isNew && this.file.name != _this.name.el.get_text()) {
83                     Xcls_StandardErrorDialog.singleton().show(
84                         this.el,
85                         "Sorry changing names does not work yet. "
86                     );
87                      
88                     return;
89                 }
90                 */
91                  
92                 
93               
94                 // FIXME - this may be more complicated...
95                 //for (var i in this.def) {
96                 //    this.file[i] =  this.get(i).el.get_text();
97                 //}
98         
99                 if (!isNew) {
100                     try {
101                          this.updateFileFromEntry();
102                      } catch( JsRender.Error.RENAME_FILE_EXISTS er) {
103                           Xcls_StandardErrorDialog.singleton().show(
104                             this.el,
105                             "The name you used already exists "
106                         );
107                         return;
108                          
109                      }
110                                                                 
111                 
112                     _this.file.save();
113                     this.el.hide();
114                     return;
115                 }
116                 var fn = this.name.el.get_text();
117                 var dir = _this.project.firstPath();
118                
119                 if (GLib.FileUtils.test(dir + "/" + fn + ".bjs", GLib.FileTest.EXISTS)) {
120                     Xcls_StandardErrorDialog.singleton().show(
121                         this.el,
122                         "That file already exists"
123                     ); 
124                     return;
125                 }
126                
127                var f =  JsRender.JsRender.factory(
128                         _this.file.project.xtype,  
129                         _this.file.project, 
130                         dir + "/" + fn + ".bjs");
131         
132                 _this.file = f;
133                 
134         
135                 
136                 this.updateFileFromEntry();
137                 _this.file.save();
138                 _this.file.project.addFile(_this.file);
139                 
140                  
141                 // what about .js ?
142                
143                 this.el.hide();
144                 
145                 
146                 //var tmpl = this.project.loadFileOnly(DialogNewComponent.get('template').getValue());
147                  
148                 //var nf = _this.project.create(dir + "/" + _this.file.name + ".bjs");
149                 //for (var i in this.file) {
150                 //    nf[i] = this.file[i];
151                 //}
152                 _this.success(_this.project, _this.file);
153                 /*
154         
155                 -- fixme -- needs to be a signal..
156                 if (DialogNewComponent.success != null) {
157                     DialogNewComponent.success(_this.project, nf);
158                 }
159                 */
160         });
161         this.el.show.connect( (self)  => {
162           this.el.show_all();
163           //test
164         });
165     }
166
167     // user defined functions
168     public   void updateFileFromEntry () {
169     
170             _this.file.title = _this.title.el.get_text();
171             _this.file.region = _this.region.el.get_text();            
172             _this.file.parent = _this.parent.el.get_text();                        
173             _this.file.permname = _this.permname.el.get_text();                                    
174             _this.file.modOrder = _this.modOrder.el.get_text();
175             
176             if (_this.file.name.length  > 0 && _this.file.name != _this.name.el.get_text()) {
177                 _this.file.renameTo(_this.name.el.get_text());
178             }
179             // store the module...
180             _this.file.build_module = "";        
181              Gtk.TreeIter iter; 
182             if (_this.build_module.el.get_active_iter (out iter)) {
183                  Value vfname;
184                  this.dbmodel.el.get_value (iter, 0, out vfname);
185                  if (((string)vfname).length > 0) {
186                      _this.file.build_module = (string)vfname;
187                  }
188         
189             }
190             
191             
192     
193                                                         
194     }
195     public   void show (JsRender.JsRender c) 
196     {
197         this.project = c.project;
198         
199         //if (!this.el) {
200             //this.init();
201          //}
202         
203         _this.name.el.set_text(c.name);
204         _this.title.el.set_text(c.title);
205         _this.parent.el.set_text(c.parent);    
206         _this.region.el.set_text(c.region);
207         _this.modOrder.el.set_text(c.modOrder);
208          _this.permname.el.set_text(c.permname);
209         
210         if (c.path.length > 0) {
211             this.el.set_title("Edit File Details - " + c.name);
212         } else {
213             this.el.set_title("Create New File");
214         }
215         
216          var ar = new Gee.ArrayList<string>();
217          _this.dbmodel.loadData(ar,"");
218         // load the modules... if relivant..
219         if (this.project.xtype == "Gtk") {
220             var p = (Project.Gtk)c.project;
221               var cg = p.compilegroups;
222     
223             var iter = cg.map_iterator();
224            while(iter.next()) {
225                 var key = iter.get_key();
226                 if (key == "_default_") {
227                     continue;
228                 }
229                 ar.add(key);
230             };
231             _this.dbmodel.loadData(ar, c.build_module);
232     
233         }
234         
235          
236         _this.file = c;
237         //console.log('show all');
238         this.el.show_all();
239         
240         //this.success = c.success;
241         
242         
243     }
244     public class Xcls_VBox2 : Object
245     {
246         public Gtk.VBox el;
247         private Xcls_DialogNewComponent  _this;
248
249
250             // my vars (def)
251
252         // ctor
253         public Xcls_VBox2(Xcls_DialogNewComponent _owner )
254         {
255             _this = _owner;
256             this.el = new Gtk.VBox( true, 0 );
257
258             // my vars (dec)
259
260             // set gobject values
261             var child_0 = new Xcls_Table3( _this );
262             child_0.ref();
263             this.el.pack_start (  child_0.el , false,false,0 );
264         }
265
266         // user defined functions
267     }
268     public class Xcls_Table3 : Object
269     {
270         public Gtk.Table el;
271         private Xcls_DialogNewComponent  _this;
272
273
274             // my vars (def)
275
276         // ctor
277         public Xcls_Table3(Xcls_DialogNewComponent _owner )
278         {
279             _this = _owner;
280             this.el = new Gtk.Table( 3, 2, true );
281
282             // my vars (dec)
283
284             // set gobject values
285             var child_0 = new Xcls_Label4( _this );
286             child_0.ref();
287             this.el.attach_defaults (  child_0.el , 0,1,0,1 );
288             var child_1 = new Xcls_name( _this );
289             child_1.ref();
290             this.el.attach_defaults (  child_1.el , 1,2,0,1 );
291             var child_2 = new Xcls_Label6( _this );
292             child_2.ref();
293             this.el.attach_defaults (  child_2.el , 0,1,1,2 );
294             var child_3 = new Xcls_title( _this );
295             child_3.ref();
296             this.el.attach_defaults (  child_3.el , 1,2,1,2 );
297             var child_4 = new Xcls_Label8( _this );
298             child_4.ref();
299             this.el.attach_defaults (  child_4.el , 0,1,2,3 );
300             var child_5 = new Xcls_region( _this );
301             child_5.ref();
302             this.el.attach_defaults (  child_5.el , 1,2,2,3 );
303             var child_6 = new Xcls_Label10( _this );
304             child_6.ref();
305             this.el.attach_defaults (  child_6.el , 0,1,3,4 );
306             var child_7 = new Xcls_parent( _this );
307             child_7.ref();
308             this.el.attach_defaults (  child_7.el , 1,2,3,4 );
309             var child_8 = new Xcls_Label12( _this );
310             child_8.ref();
311             this.el.attach_defaults (  child_8.el , 0,1,4,5 );
312             var child_9 = new Xcls_permname( _this );
313             child_9.ref();
314             this.el.attach_defaults (  child_9.el , 1,2,4,5 );
315             var child_10 = new Xcls_Label14( _this );
316             child_10.ref();
317             this.el.attach_defaults (  child_10.el , 0,1,5,6 );
318             var child_11 = new Xcls_modOrder( _this );
319             child_11.ref();
320             this.el.attach_defaults (  child_11.el , 1,2,5,6 );
321             var child_12 = new Xcls_Label16( _this );
322             child_12.ref();
323             this.el.attach_defaults (  child_12.el , 0,1,6,7 );
324             var child_13 = new Xcls_build_module( _this );
325             child_13.ref();
326             this.el.attach_defaults (  child_13.el , 1,2,6,7 );
327         }
328
329         // user defined functions
330     }
331     public class Xcls_Label4 : Object
332     {
333         public Gtk.Label el;
334         private Xcls_DialogNewComponent  _this;
335
336
337             // my vars (def)
338
339         // ctor
340         public Xcls_Label4(Xcls_DialogNewComponent _owner )
341         {
342             _this = _owner;
343             this.el = new Gtk.Label( "Component Name" );
344
345             // my vars (dec)
346
347             // set gobject values
348             this.el.justify = Gtk.Justification.RIGHT;
349             this.el.xalign = 0.900000f;
350         }
351
352         // user defined functions
353     }
354
355     public class Xcls_name : Object
356     {
357         public Gtk.Entry el;
358         private Xcls_DialogNewComponent  _this;
359
360
361             // my vars (def)
362
363         // ctor
364         public Xcls_name(Xcls_DialogNewComponent _owner )
365         {
366             _this = _owner;
367             _this.name = this;
368             this.el = new Gtk.Entry();
369
370             // my vars (dec)
371
372             // set gobject values
373             this.el.visible = true;
374         }
375
376         // user defined functions
377     }
378
379     public class Xcls_Label6 : Object
380     {
381         public Gtk.Label el;
382         private Xcls_DialogNewComponent  _this;
383
384
385             // my vars (def)
386
387         // ctor
388         public Xcls_Label6(Xcls_DialogNewComponent _owner )
389         {
390             _this = _owner;
391             this.el = new Gtk.Label( "Title" );
392
393             // my vars (dec)
394
395             // set gobject values
396             this.el.justify = Gtk.Justification.RIGHT;
397             this.el.xalign = 0.900000f;
398             this.el.visible = true;
399         }
400
401         // user defined functions
402     }
403
404     public class Xcls_title : Object
405     {
406         public Gtk.Entry el;
407         private Xcls_DialogNewComponent  _this;
408
409
410             // my vars (def)
411
412         // ctor
413         public Xcls_title(Xcls_DialogNewComponent _owner )
414         {
415             _this = _owner;
416             _this.title = this;
417             this.el = new Gtk.Entry();
418
419             // my vars (dec)
420
421             // set gobject values
422             this.el.visible = true;
423         }
424
425         // user defined functions
426     }
427
428     public class Xcls_Label8 : Object
429     {
430         public Gtk.Label el;
431         private Xcls_DialogNewComponent  _this;
432
433
434             // my vars (def)
435
436         // ctor
437         public Xcls_Label8(Xcls_DialogNewComponent _owner )
438         {
439             _this = _owner;
440             this.el = new Gtk.Label( "Region" );
441
442             // my vars (dec)
443
444             // set gobject values
445             this.el.justify = Gtk.Justification.RIGHT;
446             this.el.xalign = 0.900000f;
447             this.el.tooltip_text = "center, north, south, east, west";
448             this.el.visible = true;
449         }
450
451         // user defined functions
452     }
453
454     public class Xcls_region : Object
455     {
456         public Gtk.Entry el;
457         private Xcls_DialogNewComponent  _this;
458
459
460             // my vars (def)
461
462         // ctor
463         public Xcls_region(Xcls_DialogNewComponent _owner )
464         {
465             _this = _owner;
466             _this.region = this;
467             this.el = new Gtk.Entry();
468
469             // my vars (dec)
470
471             // set gobject values
472             this.el.visible = true;
473         }
474
475         // user defined functions
476     }
477
478     public class Xcls_Label10 : Object
479     {
480         public Gtk.Label el;
481         private Xcls_DialogNewComponent  _this;
482
483
484             // my vars (def)
485
486         // ctor
487         public Xcls_Label10(Xcls_DialogNewComponent _owner )
488         {
489             _this = _owner;
490             this.el = new Gtk.Label( "Parent Name" );
491
492             // my vars (dec)
493
494             // set gobject values
495             this.el.justify = Gtk.Justification.RIGHT;
496             this.el.xalign = 0.900000f;
497             this.el.visible = true;
498         }
499
500         // user defined functions
501     }
502
503     public class Xcls_parent : Object
504     {
505         public Gtk.Entry el;
506         private Xcls_DialogNewComponent  _this;
507
508
509             // my vars (def)
510
511         // ctor
512         public Xcls_parent(Xcls_DialogNewComponent _owner )
513         {
514             _this = _owner;
515             _this.parent = this;
516             this.el = new Gtk.Entry();
517
518             // my vars (dec)
519
520             // set gobject values
521             this.el.visible = true;
522         }
523
524         // user defined functions
525     }
526
527     public class Xcls_Label12 : Object
528     {
529         public Gtk.Label el;
530         private Xcls_DialogNewComponent  _this;
531
532
533             // my vars (def)
534
535         // ctor
536         public Xcls_Label12(Xcls_DialogNewComponent _owner )
537         {
538             _this = _owner;
539             this.el = new Gtk.Label( "Permission Name" );
540
541             // my vars (dec)
542
543             // set gobject values
544             this.el.justify = Gtk.Justification.RIGHT;
545             this.el.xalign = 0.900000f;
546             this.el.visible = true;
547         }
548
549         // user defined functions
550     }
551
552     public class Xcls_permname : Object
553     {
554         public Gtk.Entry el;
555         private Xcls_DialogNewComponent  _this;
556
557
558             // my vars (def)
559
560         // ctor
561         public Xcls_permname(Xcls_DialogNewComponent _owner )
562         {
563             _this = _owner;
564             _this.permname = this;
565             this.el = new Gtk.Entry();
566
567             // my vars (dec)
568
569             // set gobject values
570             this.el.visible = true;
571         }
572
573         // user defined functions
574     }
575
576     public class Xcls_Label14 : Object
577     {
578         public Gtk.Label el;
579         private Xcls_DialogNewComponent  _this;
580
581
582             // my vars (def)
583
584         // ctor
585         public Xcls_Label14(Xcls_DialogNewComponent _owner )
586         {
587             _this = _owner;
588             this.el = new Gtk.Label( "Order (for tabs)" );
589
590             // my vars (dec)
591
592             // set gobject values
593             this.el.justify = Gtk.Justification.RIGHT;
594             this.el.xalign = 0.900000f;
595             this.el.visible = true;
596         }
597
598         // user defined functions
599     }
600
601     public class Xcls_modOrder : Object
602     {
603         public Gtk.Entry el;
604         private Xcls_DialogNewComponent  _this;
605
606
607             // my vars (def)
608
609         // ctor
610         public Xcls_modOrder(Xcls_DialogNewComponent _owner )
611         {
612             _this = _owner;
613             _this.modOrder = this;
614             this.el = new Gtk.Entry();
615
616             // my vars (dec)
617
618             // set gobject values
619             this.el.visible = true;
620         }
621
622         // user defined functions
623     }
624
625     public class Xcls_Label16 : Object
626     {
627         public Gtk.Label el;
628         private Xcls_DialogNewComponent  _this;
629
630
631             // my vars (def)
632
633         // ctor
634         public Xcls_Label16(Xcls_DialogNewComponent _owner )
635         {
636             _this = _owner;
637             this.el = new Gtk.Label( "Module to build (Vala only)" );
638
639             // my vars (dec)
640
641             // set gobject values
642             this.el.justify = Gtk.Justification.RIGHT;
643             this.el.xalign = 0.900000f;
644             this.el.visible = true;
645         }
646
647         // user defined functions
648     }
649
650     public class Xcls_build_module : Object
651     {
652         public Gtk.ComboBox el;
653         private Xcls_DialogNewComponent  _this;
654
655
656             // my vars (def)
657
658         // ctor
659         public Xcls_build_module(Xcls_DialogNewComponent _owner )
660         {
661             _this = _owner;
662             _this.build_module = this;
663             this.el = new Gtk.ComboBox();
664
665             // my vars (dec)
666
667             // set gobject values
668             var child_0 = new Xcls_dbcellrenderer( _this );
669             child_0.ref();
670             this.el.pack_start (  child_0.el , true );
671             var child_1 = new Xcls_dbmodel( _this );
672             child_1.ref();
673             this.el.set_model (  child_1.el  );
674
675             // init method
676
677             this.el.add_attribute(_this.dbcellrenderer.el , "markup", 1 );
678         }
679
680         // user defined functions
681     }
682     public class Xcls_dbcellrenderer : Object
683     {
684         public Gtk.CellRendererText el;
685         private Xcls_DialogNewComponent  _this;
686
687
688             // my vars (def)
689
690         // ctor
691         public Xcls_dbcellrenderer(Xcls_DialogNewComponent _owner )
692         {
693             _this = _owner;
694             _this.dbcellrenderer = this;
695             this.el = new Gtk.CellRendererText();
696
697             // my vars (dec)
698
699             // set gobject values
700         }
701
702         // user defined functions
703     }
704
705     public class Xcls_dbmodel : Object
706     {
707         public Gtk.ListStore el;
708         private Xcls_DialogNewComponent  _this;
709
710
711             // my vars (def)
712
713         // ctor
714         public Xcls_dbmodel(Xcls_DialogNewComponent _owner )
715         {
716             _this = _owner;
717             _this.dbmodel = this;
718             this.el = new Gtk.ListStore( 2, typeof(string),typeof(string) );
719
720             // my vars (dec)
721
722             // set gobject values
723         }
724
725         // user defined functions
726         public void loadData (Gee.ArrayList<string> data, string cur) {
727             this.el.clear();                                    
728             Gtk.TreeIter iter;
729             var el = this.el;
730             
731            /// el.append(out iter);
732             
733              
734            // el.set_value(iter, 0, "");
735            // el.set_value(iter, 1, "aaa  - Just add Element - aaa");
736         
737             el.append(out iter);
738         
739             
740             el.set_value(iter, 0, "");
741             el.set_value(iter, 1, "-- select a module --");
742             _this.build_module.el.set_active_iter(iter);
743             
744             for (var i = 0; i < data.size;i++) {
745             
746         
747                 el.append(out iter);
748                 
749                 el.set_value(iter, 0, data.get(i));
750                 el.set_value(iter, 1, data.get(i));
751                 
752                 if (data.get(i) == cur) {
753                     _this.build_module.el.set_active_iter(iter);
754                 }
755                 
756             }
757              this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          
758                                              
759         }
760     }
761
762
763
764
765     public class Xcls_Button20 : Object
766     {
767         public Gtk.Button el;
768         private Xcls_DialogNewComponent  _this;
769
770
771             // my vars (def)
772
773         // ctor
774         public Xcls_Button20(Xcls_DialogNewComponent _owner )
775         {
776             _this = _owner;
777             this.el = new Gtk.Button();
778
779             // my vars (dec)
780
781             // set gobject values
782             this.el.label = "Cancel";
783         }
784
785         // user defined functions
786     }
787
788     public class Xcls_Button21 : Object
789     {
790         public Gtk.Button el;
791         private Xcls_DialogNewComponent  _this;
792
793
794             // my vars (def)
795
796         // ctor
797         public Xcls_Button21(Xcls_DialogNewComponent _owner )
798         {
799             _this = _owner;
800             this.el = new Gtk.Button();
801
802             // my vars (dec)
803
804             // set gobject values
805             this.el.label = "OK";
806         }
807
808         // user defined functions
809     }
810
811 }