src/Builder4/PopoverProperty.bjs
[app.Builder.js] / src / Builder4 / PopoverProperty.vala
1 static Xcls_PopoverProperty  _PopoverProperty;
2
3 public class Xcls_PopoverProperty : Object
4 {
5     public Gtk.Popover el;
6     private Xcls_PopoverProperty  _this;
7
8     public static Xcls_PopoverProperty singleton()
9     {
10         if (_PopoverProperty == null) {
11             _PopoverProperty= new Xcls_PopoverProperty();
12         }
13         return _PopoverProperty;
14     }
15     public Xcls_build_module build_module;
16     public Xcls_dbcellrenderer dbcellrenderer;
17     public Xcls_dbmodel dbmodel;
18     public Xcls_ktype ktype;
19     public Xcls_kname kname;
20     public Xcls_save_btn save_btn;
21
22         // my vars (def)
23     public signal void success (Project.Project pr, JsRender.JsRender file);
24     public bool done;
25     public Project.Project project;
26     public JsRender.JsRender file;
27     public Xcls_MainWindow mainwindow;
28     public JsRender.Node node;
29
30     // ctor
31     public Xcls_PopoverProperty()
32     {
33         _this = this;
34         this.el = new Gtk.Popover( null );
35
36         // my vars (dec)
37         this.done = false;
38         this.file = null;
39         this.mainwindow = null;
40
41         // set gobject values
42         this.el.border_width = 0;
43         this.el.modal = true;
44         this.el.position = Gtk.PositionType.RIGHT;
45         var child_0 = new Xcls_Box2( _this );
46         child_0.ref();
47         this.el.add (  child_0.el  );
48
49         //listeners
50         this.el.closed.connect( () => {
51           if (!this.done) {
52             _this.el.show();
53           
54           }
55         });
56     }
57
58     // user defined functions
59     public void show (Gtk.Widget btn, JsRender.Node node, string key) 
60         {
61     
62         string kname = "", kflag = "", ktype = "";
63         if (key.length > 0) {
64                 node.normalize_key( key, out  kname, out  kflag, out ktype);
65         }
66     
67         _this.kname.el.set_text(kname);
68         _this.ktype.el.set_text(ktype);
69         
70         _this.dbmodel.loadData(kflag);
71         // does node have this property...
72     
73     
74         if (key.length > 0) {
75                 this.save_btn.el.set_label("Save");
76         } else {
77                 this.save_btn.el.set_label("Create");
78         }
79     
80         _this.node = node;
81         //console.log('show all');
82         this.el.set_modal(true);
83         this.el.set_relative_to(btn);
84     
85         this.el.set_position(Gtk.PositionType.TOP);
86     
87         // window + header?
88          print("SHOWALL - POPIP\n");
89         this.el.show_all();
90         this.kname.el.grab_focus();
91     
92         //this.success = c.success;
93      
94     }
95     public   void updateNodeFromValues () {
96     
97          /*   _this.file.title = _this.title.el.get_text();
98             _this.file.region = _this.region.el.get_text();            
99             _this.file.parent = _this.parent.el.get_text();                        
100             _this.file.permname = _this.permname.el.get_text();                                    
101             _this.file.modOrder = _this.modOrder.el.get_text();
102             
103             if (_this.file.name.length  > 0 && _this.file.name != _this.name.el.get_text()) {
104                 _this.file.renameTo(_this.name.el.get_text());
105             }
106             // store the module...
107             _this.file.build_module = "";        
108              Gtk.TreeIter iter; 
109             if (_this.build_module.el.get_active_iter (out iter)) {
110                  Value vfname;
111                  this.dbmodel.el.get_value (iter, 0, out vfname);
112                  if (((string)vfname).length > 0) {
113                      _this.file.build_module = (string)vfname;
114                  }
115         
116             }
117             */
118             
119             
120     
121                                                         
122     }
123     public class Xcls_Box2 : Object
124     {
125         public Gtk.Box el;
126         private Xcls_PopoverProperty  _this;
127
128
129             // my vars (def)
130
131         // ctor
132         public Xcls_Box2(Xcls_PopoverProperty _owner )
133         {
134             _this = _owner;
135             this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
136
137             // my vars (dec)
138
139             // set gobject values
140             this.el.homogeneous = false;
141             var child_0 = new Xcls_HeaderBar3( _this );
142             child_0.ref();
143             this.el.pack_start (  child_0.el , false,true,0 );
144             var child_1 = new Xcls_Table4( _this );
145             child_1.ref();
146             this.el.pack_start (  child_1.el , false,false,4 );
147             var child_2 = new Xcls_HButtonBox13( _this );
148             child_2.ref();
149             this.el.pack_end (  child_2.el , false,true,0 );
150         }
151
152         // user defined functions
153     }
154     public class Xcls_HeaderBar3 : Object
155     {
156         public Gtk.HeaderBar el;
157         private Xcls_PopoverProperty  _this;
158
159
160             // my vars (def)
161
162         // ctor
163         public Xcls_HeaderBar3(Xcls_PopoverProperty _owner )
164         {
165             _this = _owner;
166             this.el = new Gtk.HeaderBar();
167
168             // my vars (dec)
169
170             // set gobject values
171             this.el.title = "Modify / Create Property";
172         }
173
174         // user defined functions
175     }
176
177     public class Xcls_Table4 : Object
178     {
179         public Gtk.Table el;
180         private Xcls_PopoverProperty  _this;
181
182
183             // my vars (def)
184
185         // ctor
186         public Xcls_Table4(Xcls_PopoverProperty _owner )
187         {
188             _this = _owner;
189             this.el = new Gtk.Table( 3, 2, true );
190
191             // my vars (dec)
192
193             // set gobject values
194             this.el.margin_right = 4;
195             this.el.margin_left = 4;
196             this.el.row_spacing = 2;
197             var child_0 = new Xcls_Label5( _this );
198             child_0.ref();
199             this.el.attach_defaults (  child_0.el , 0,1,0,1 );
200             var child_1 = new Xcls_build_module( _this );
201             child_1.ref();
202             this.el.attach_defaults (  child_1.el , 1,2,0,1 );
203             var child_2 = new Xcls_Label9( _this );
204             child_2.ref();
205             this.el.attach_defaults (  child_2.el , 0,1,1,2 );
206             var child_3 = new Xcls_ktype( _this );
207             child_3.ref();
208             this.el.attach_defaults (  child_3.el , 1,2,1,2 );
209             var child_4 = new Xcls_Label11( _this );
210             child_4.ref();
211             this.el.attach_defaults (  child_4.el , 0,1,2,3 );
212             var child_5 = new Xcls_kname( _this );
213             child_5.ref();
214             this.el.attach_defaults (  child_5.el , 1,2,2,3 );
215         }
216
217         // user defined functions
218     }
219     public class Xcls_Label5 : Object
220     {
221         public Gtk.Label el;
222         private Xcls_PopoverProperty  _this;
223
224
225             // my vars (def)
226
227         // ctor
228         public Xcls_Label5(Xcls_PopoverProperty _owner )
229         {
230             _this = _owner;
231             this.el = new Gtk.Label( "Special Flags" );
232
233             // my vars (dec)
234
235             // set gobject values
236             this.el.justify = Gtk.Justification.RIGHT;
237             this.el.xalign = 0.900000f;
238         }
239
240         // user defined functions
241     }
242
243     public class Xcls_build_module : Object
244     {
245         public Gtk.ComboBox el;
246         private Xcls_PopoverProperty  _this;
247
248
249             // my vars (def)
250
251         // ctor
252         public Xcls_build_module(Xcls_PopoverProperty _owner )
253         {
254             _this = _owner;
255             _this.build_module = this;
256             this.el = new Gtk.ComboBox();
257
258             // my vars (dec)
259
260             // set gobject values
261             var child_0 = new Xcls_dbcellrenderer( _this );
262             child_0.ref();
263             this.el.pack_start (  child_0.el , true );
264             var child_1 = new Xcls_dbmodel( _this );
265             child_1.ref();
266             this.el.set_model (  child_1.el  );
267
268             // init method
269
270             this.el.add_attribute(_this.dbcellrenderer.el , "markup", 1 );
271         }
272
273         // user defined functions
274     }
275     public class Xcls_dbcellrenderer : Object
276     {
277         public Gtk.CellRendererText el;
278         private Xcls_PopoverProperty  _this;
279
280
281             // my vars (def)
282
283         // ctor
284         public Xcls_dbcellrenderer(Xcls_PopoverProperty _owner )
285         {
286             _this = _owner;
287             _this.dbcellrenderer = this;
288             this.el = new Gtk.CellRendererText();
289
290             // my vars (dec)
291
292             // set gobject values
293         }
294
295         // user defined functions
296     }
297
298     public class Xcls_dbmodel : Object
299     {
300         public Gtk.ListStore el;
301         private Xcls_PopoverProperty  _this;
302
303
304             // my vars (def)
305
306         // ctor
307         public Xcls_dbmodel(Xcls_PopoverProperty _owner )
308         {
309             _this = _owner;
310             _this.dbmodel = this;
311             this.el = new Gtk.ListStore( 2, typeof(string),typeof(string) );
312
313             // my vars (dec)
314
315             // set gobject values
316         }
317
318         // user defined functions
319         public void loadData (string kflag) {
320             this.el.clear();                                    
321             Gtk.TreeIter iter;
322             var el = this.el;
323             
324             
325             // vala signal.. '@'
326             // raw value '$'
327             // user defined property '#'
328             // user defined method '|'
329             // special property '*' => prop  |args|ctor|init
330             
331             
332             
333            /// el.append(out iter);
334             
335              
336            // el.set_value(iter, 0, "");
337            // el.set_value(iter, 1, "aaa  - Just add Element - aaa");
338         
339             el.append(out iter);
340             el.set(iter, 0, "", 1,   "Normal Property", -1);
341         
342                 if (_this.file.xtype == "Gtk") {
343                         el.append(out iter);
344                         el.set(iter, 0, "$", 1,   "Raw Property (not escaped)", -1);
345         
346                         el.append(out iter);
347                         el.set(iter, 0, "#", 1,   "User defined property", -1);
348         
349                         el.append(out iter);
350                         el.set(iter, 0, "|", 1,   "User defined method", -1);
351         
352                         el.append(out iter);
353                         el.set(iter, 0, "*", 1,   "Special property (eg. prop | args | ctor | init )", -1);
354                         
355                         el.append(out iter);
356                     el.set(iter, 0, "@", 1,   "Vala Signal", -1);
357                 } else { 
358                         // javascript
359                         el.append(out iter);
360                         el.set(iter, 0, "$", 1,   "Raw Property (not escaped)", -1);
361         
362                         el.append(out iter);
363                         el.set(iter, 0, "|", 1,   "User defined method", -1);
364                         
365                         el.append(out iter);
366                         el.set(iter, 0, "*", 1,   "Special property (eg. prop )", -1);
367                 
368                 }
369                 
370                 
371         
372                                              
373         }
374     }
375
376
377     public class Xcls_Label9 : Object
378     {
379         public Gtk.Label el;
380         private Xcls_PopoverProperty  _this;
381
382
383             // my vars (def)
384
385         // ctor
386         public Xcls_Label9(Xcls_PopoverProperty _owner )
387         {
388             _this = _owner;
389             this.el = new Gtk.Label( "Type" );
390
391             // my vars (dec)
392
393             // set gobject values
394             this.el.justify = Gtk.Justification.RIGHT;
395             this.el.xalign = 0.900000f;
396             this.el.visible = true;
397         }
398
399         // user defined functions
400     }
401
402     public class Xcls_ktype : Object
403     {
404         public Gtk.Entry el;
405         private Xcls_PopoverProperty  _this;
406
407
408             // my vars (def)
409
410         // ctor
411         public Xcls_ktype(Xcls_PopoverProperty _owner )
412         {
413             _this = _owner;
414             _this.ktype = this;
415             this.el = new Gtk.Entry();
416
417             // my vars (dec)
418
419             // set gobject values
420             this.el.visible = true;
421         }
422
423         // user defined functions
424     }
425
426     public class Xcls_Label11 : Object
427     {
428         public Gtk.Label el;
429         private Xcls_PopoverProperty  _this;
430
431
432             // my vars (def)
433
434         // ctor
435         public Xcls_Label11(Xcls_PopoverProperty _owner )
436         {
437             _this = _owner;
438             this.el = new Gtk.Label( "Name" );
439
440             // my vars (dec)
441
442             // set gobject values
443             this.el.justify = Gtk.Justification.RIGHT;
444             this.el.xalign = 0.900000f;
445             this.el.tooltip_text = "center, north, south, east, west";
446             this.el.visible = true;
447         }
448
449         // user defined functions
450     }
451
452     public class Xcls_kname : Object
453     {
454         public Gtk.Entry el;
455         private Xcls_PopoverProperty  _this;
456
457
458             // my vars (def)
459
460         // ctor
461         public Xcls_kname(Xcls_PopoverProperty _owner )
462         {
463             _this = _owner;
464             _this.kname = this;
465             this.el = new Gtk.Entry();
466
467             // my vars (dec)
468
469             // set gobject values
470             this.el.visible = true;
471         }
472
473         // user defined functions
474     }
475
476
477     public class Xcls_HButtonBox13 : Object
478     {
479         public Gtk.HButtonBox el;
480         private Xcls_PopoverProperty  _this;
481
482
483             // my vars (def)
484
485         // ctor
486         public Xcls_HButtonBox13(Xcls_PopoverProperty _owner )
487         {
488             _this = _owner;
489             this.el = new Gtk.HButtonBox();
490
491             // my vars (dec)
492
493             // set gobject values
494             this.el.margin_right = 4;
495             this.el.margin_left = 4;
496             this.el.margin_bottom = 4;
497             var child_0 = new Xcls_Button14( _this );
498             child_0.ref();
499             this.el.add (  child_0.el  );
500             var child_1 = new Xcls_save_btn( _this );
501             child_1.ref();
502             this.el.add (  child_1.el  );
503         }
504
505         // user defined functions
506     }
507     public class Xcls_Button14 : Object
508     {
509         public Gtk.Button el;
510         private Xcls_PopoverProperty  _this;
511
512
513             // my vars (def)
514
515         // ctor
516         public Xcls_Button14(Xcls_PopoverProperty _owner )
517         {
518             _this = _owner;
519             this.el = new Gtk.Button();
520
521             // my vars (dec)
522
523             // set gobject values
524             this.el.label = "Cancel";
525
526             //listeners
527             this.el.clicked.connect( () => { 
528             
529               _this.done = true;
530                 _this.el.hide(); 
531             });
532         }
533
534         // user defined functions
535     }
536
537     public class Xcls_save_btn : Object
538     {
539         public Gtk.Button el;
540         private Xcls_PopoverProperty  _this;
541
542
543             // my vars (def)
544
545         // ctor
546         public Xcls_save_btn(Xcls_PopoverProperty _owner )
547         {
548             _this = _owner;
549             _this.save_btn = this;
550             this.el = new Gtk.Button();
551
552             // my vars (dec)
553
554             // set gobject values
555             this.el.label = "Save";
556
557             //listeners
558             this.el.clicked.connect( ( ) =>  { 
559             
560               
561             /*
562             
563                 if (_this.name.el.get_text().length  < 1) {
564                     StandardErrorDialog.show(
565                         _this.mainwindow.el,
566                         "You have to set Component name "
567                     );
568                      
569                     return;
570                 }
571                 // what does this do?
572                 
573                 var isNew = _this.file.name.length  > 0 ? false : true;
574                  
575                  
576                 
577               
578                 // FIXME - this may be more complicated...
579                 //for (var i in this.def) {
580                 //    this.file[i] =  this.get(i).el.get_text();
581                 //}
582             
583                 if (!isNew) {
584                     try {
585                          _this.updateFileFromEntry();
586                      } catch( JsRender.Error.RENAME_FILE_EXISTS er) {
587                           Xcls_StandardErrorDialog.singleton().show(
588                             _this.mainwindow.el,
589                             "The name you used already exists "
590                         );
591                         return;
592                          
593                      }
594             
595                       _this.done = true;
596                     _this.file.save();
597                     _this.el.hide();
598                     return;
599                 }
600                 var fn = _this.name.el.get_text();
601                 var dir = _this.project.firstPath();
602                
603                 if (GLib.FileUtils.test(dir + "/" + fn + ".bjs", GLib.FileTest.EXISTS)) {
604                     Xcls_StandardErrorDialog.singleton().show(
605                         _this.mainwindow.el,
606                         "That file already exists"
607                     ); 
608                     return;
609                 }
610                
611                var f =  JsRender.JsRender.factory(
612                         _this.file.project.xtype,  
613                         _this.file.project, 
614                         dir + "/" + fn + ".bjs");
615             
616                 _this.file = f;
617                 
618             
619                 
620                 _this.updateFileFromEntry();
621                 _this.file.loaded = true;
622                 _this.file.save();
623                 _this.file.project.addFile(_this.file);
624                 
625              
626                 // what about .js ?
627                _this.done = true;
628                 _this.el.hide();
629             
630                 
631                 
632                 _this.success(_this.project, _this.file);
633                 */
634                
635             });
636         }
637
638         // user defined functions
639     }
640
641
642
643 }