src/Builder4/ClutterFiles.bjs
[app.Builder.js] / src / Builder4 / ClutterFiles.vala
1 static Xcls_ClutterFiles  _ClutterFiles;
2
3 public class Xcls_ClutterFiles : Object
4 {
5     public Clutter.Actor el;
6     private Xcls_ClutterFiles  _this;
7
8     public static Xcls_ClutterFiles singleton()
9     {
10         if (_ClutterFiles == null) {
11             _ClutterFiles= new Xcls_ClutterFiles();
12         }
13         return _ClutterFiles;
14     }
15     public Xcls_project_title project_title;
16     public Xcls_project_title_manager project_title_manager;
17     public Xcls_project_title_name project_title_name;
18     public Xcls_project_title_path project_title_path;
19     public Xcls_scroller scroller;
20     public Xcls_filelayout filelayout;
21     public Xcls_filelayout_manager filelayout_manager;
22
23         // my vars (def)
24     public Clutter.ScrollMode scroll_mode;
25     public Gdk.Pixbuf missing_thumb_pixbuf;
26     public signal void open (JsRender.JsRender file);
27     public Project.Project project;
28     public Gee.ArrayList<Object> fileitems;
29
30     // ctor
31     public Xcls_ClutterFiles()
32     {
33         _this = this;
34         this.el = new Clutter.Actor();
35
36         // my vars (dec)
37         this.scroll_mode = Clutter.ScrollMode.VERTICALLY;
38         this.missing_thumb_pixbuf = null;
39         this.fileitems = new Gee.ArrayList<Object>();
40
41         // set gobject values
42         this.el.reactive = true;
43         var child_0 = new Xcls_project_title( _this );
44         child_0.ref();
45         this.el.add_child (  child_0.el  );
46         var child_1 = new Xcls_scroller( _this );
47         child_1.ref();
48         this.el.add_child (  child_1.el  );
49     }
50
51     // user defined functions
52     public  void clearFiles () {
53         
54         this.filelayout.el.remove_all_children();
55         // we need to unref all the chidren that we loaded though...
56         
57     }
58     public  void loadProject (Project.Project pr) {
59         // list all the files, and create new Xcls_fileitem for each one.
60         
61         this.project = pr;
62         
63         
64         // LEAK --- we should unref all the chilren...
65         this.filelayout.el.y = 0;
66         this.clearFiles();
67         
68         print("clutter files - load project: " + pr.name +"\n");
69         // should unref.. them hopefully.
70         
71         this.project_title_name.el.text = pr.name;
72         this.project_title_path.el.text = pr.firstPath();
73         
74         // file items contains a reference until we reload ...
75         this.fileitems = new Gee.ArrayList<Object>();
76     
77         
78     
79         var fiter = pr.sortedFiles().list_iterator();
80         while (fiter.next()) {
81             var a = new Xcls_fileitem(this,fiter.get());
82             this.fileitems.add(a);
83     
84     //        a.ref();
85             print("add to clutter file view: " + fiter.get().name + "\n");
86             this.filelayout.el.add_child(a.el);
87         }
88         
89         // folders...
90         
91         if (!(pr is Project.Gtk)) {
92             print ("not gtk... skipping files");
93             return;
94         }
95         var gpr = (Project.Gtk)pr;
96          var def = gpr.compilegroups.get("_default_");
97          var items  = def.sources;
98          
99          
100          
101         for(var i =0 ; i < items.size; i++) {
102             print ("cheking folder %s\n", items.get(i));
103              var files = gpr.filesForOpen(items.get(i));
104              if (files.size < 1) {
105                 continue;
106              }
107     
108             // add the directory... items.get(i);
109             var x = new Xcls_folderitem(this,items.get(i));
110             this.fileitems.add(x);
111             this.filelayout.el.add_child(x.el);
112             
113             for(var j =0 ; j < files.size; j++) {
114                 print ("adding file %s\n", files.get(j));
115             
116                 var y = new Xcls_folderfile(this, files.get(j));
117                 this.fileitems.add(y);
118                 x.el.add_child(y.el);
119     
120                 // add file to files.get(j);
121                 
122             }
123             
124             
125             //this.el.set_value(citer, 1,   items.get(i) );
126         }
127         
128        
129         
130         this.el.show();
131     }
132     public  void set_size (float w, float h) 
133     {
134         
135          // called by window resize... with is alreaddy -50 (for the buttons?)
136          
137     
138     
139     
140          if (this.el == null) {
141             print("object not ready yet?");
142             return;
143         }
144         
145         print("recv width %f, filelayoutw = %f", w, w-200);
146         
147         w = GLib.Math.floorf ( w/120.0f) * 120.0f;
148         
149         
150         
151         
152        //_this.filelayout_manager.el.max_column_width = w - 200;
153        _this.filelayout.el.width = w ;
154        
155         this.el.set_size(
156                // this.el.get_stage().width-150,
157                w,
158                h  // this.el.get_stage().height
159         );
160         
161         // 100 right for buttons ..
162         this.el.set_position(75,0);
163        
164        
165        this.scroller.el.set_size(
166                // this.el.get_stage().width-150,
167                w,
168                h  // this.el.get_stage().height
169         );
170         
171         // 100 right for buttons ..
172         this.scroller.el.set_position(0,50);
173         // scroll...
174         _this.filelayout.el.y = 0.0f;
175         
176     }
177     public class Xcls_project_title : Object
178     {
179         public Clutter.Actor el;
180         private Xcls_ClutterFiles  _this;
181
182
183             // my vars (def)
184
185         // ctor
186         public Xcls_project_title(Xcls_ClutterFiles _owner )
187         {
188             _this = _owner;
189             _this.project_title = this;
190             this.el = new Clutter.Actor();
191
192             // my vars (dec)
193
194             // set gobject values
195             this.el.reactive = true;
196             var child_0 = new Xcls_project_title_manager( _this );
197             child_0.ref();
198             this.el.layout_manager = child_0.el;
199             var child_1 = new Xcls_FixedLayout4( _this );
200             child_1.ref();
201             this.el.layout_manager = child_1.el;
202             var child_2 = new Xcls_project_title_name( _this );
203             child_2.ref();
204             this.el.add_child (  child_2.el  );
205             var child_3 = new Xcls_project_title_path( _this );
206             child_3.ref();
207             this.el.add_child (  child_3.el  );
208
209             // init method
210
211             this.el.add_constraint(
212                 new Clutter.BindConstraint(_this.el,Clutter.BindCoordinate.SIZE, 0.0f)
213             );
214             this.el.set_position(0,0);
215         }
216
217         // user defined functions
218     }
219     public class Xcls_project_title_manager : Object
220     {
221         public Clutter.FlowLayout el;
222         private Xcls_ClutterFiles  _this;
223
224
225             // my vars (def)
226
227         // ctor
228         public Xcls_project_title_manager(Xcls_ClutterFiles _owner )
229         {
230             _this = _owner;
231             _this.project_title_manager = this;
232             this.el = new Clutter.FlowLayout( Clutter.FlowOrientation.HORIZONTAL );
233
234             // my vars (dec)
235
236             // set gobject values
237             this.el.homogeneous = false;
238             this.el.row_spacing = 5f;
239             this.el.column_spacing = 20f;
240         }
241
242         // user defined functions
243     }
244
245     public class Xcls_FixedLayout4 : Object
246     {
247         public Clutter.FixedLayout el;
248         private Xcls_ClutterFiles  _this;
249
250
251             // my vars (def)
252
253         // ctor
254         public Xcls_FixedLayout4(Xcls_ClutterFiles _owner )
255         {
256             _this = _owner;
257             this.el = new Clutter.FixedLayout();
258
259             // my vars (dec)
260
261             // set gobject values
262         }
263
264         // user defined functions
265     }
266
267     public class Xcls_project_title_name : Object
268     {
269         public Clutter.Text el;
270         private Xcls_ClutterFiles  _this;
271
272
273             // my vars (def)
274
275         // ctor
276         public Xcls_project_title_name(Xcls_ClutterFiles _owner )
277         {
278             _this = _owner;
279             _this.project_title_name = this;
280             this.el = new Clutter.Text.full("Sans 20px", "",  Clutter.Color.from_string("#eee"));
281
282             // my vars (dec)
283
284             // set gobject values
285             this.el.x = 0.0f;
286             this.el.y = 10.0f;
287             this.el.x_expand = false;
288         }
289
290         // user defined functions
291     }
292
293     public class Xcls_project_title_path : Object
294     {
295         public Clutter.Text el;
296         private Xcls_ClutterFiles  _this;
297
298
299             // my vars (def)
300
301         // ctor
302         public Xcls_project_title_path(Xcls_ClutterFiles _owner )
303         {
304             _this = _owner;
305             _this.project_title_path = this;
306             this.el = new Clutter.Text.full("Sans 10px", "",  Clutter.Color.from_string("#ccc"));
307
308             // my vars (dec)
309
310             // set gobject values
311             this.el.x = 0.0f;
312             this.el.y = 35.0f;
313         }
314
315         // user defined functions
316     }
317
318
319     public class Xcls_scroller : Object
320     {
321         public Clutter.ScrollActor el;
322         private Xcls_ClutterFiles  _this;
323
324
325             // my vars (def)
326         public Gee.ArrayList<Xcls_fileitem> fileitems;
327         public Gdk.Pixbuf missing_thumb_pixbuf;
328
329         // ctor
330         public Xcls_scroller(Xcls_ClutterFiles _owner )
331         {
332             _this = _owner;
333             _this.scroller = this;
334             this.el = new Clutter.ScrollActor();
335
336             // my vars (dec)
337             this.fileitems = new Gee.ArrayList<Xcls_fileitem>();
338             this.missing_thumb_pixbuf = null;
339
340             // set gobject values
341             this.el.scroll_mode = Clutter.ScrollMode.VERTICALLY;
342             this.el.reactive = true;
343             var child_0 = new Xcls_filelayout( _this );
344             child_0.ref();
345             this.el.add_child (  child_0.el  );
346
347             //listeners
348             this.el.scroll_event.connect( ( event) => {
349                 print("scroll event\n");
350                 var y = _this.filelayout.el.y;
351                 var dir = event.direction;
352                 
353                 var last_child_bottom = _this.filelayout.el.last_child.y +  _this.filelayout.el.last_child.height;
354                 var bottompos = -1 * (  last_child_bottom - (0.5f * this.el.height));
355                 
356                 switch (dir) {
357                     case Clutter.ScrollDirection.UP:
358                         print("Scroll up by %f\n", event.y);
359                         y += event.y /2;
360                         y = float.min(0, y); // 
361                         break;
362                         
363                     case Clutter.ScrollDirection.DOWN:
364                         print("Scroll down by %f\n", event.y);
365                         y -= event.y /2 ;
366                         y = float.max(bottompos, y);
367                         
368                         
369                         break;
370                           case Clutter.ScrollDirection.SMOOTH:
371                             double delta_x, delta_y;
372                             event.get_scroll_data(out delta_x, out delta_y);
373                         print("Scroll SMOOTH? by %f\n", event.y);
374                         
375                         return false;            
376                         break;
377                     default:
378                         print("scroll event = bad direction %s\n", dir.to_string());
379                         return false;
380                 }
381                 // range of scroll -- can go up -- eg.. -ve value.
382                 
383             
384                 
385                print("Set scroll to %f (lcb=%f / height = %f)\n", y, last_child_bottom, this.el.height);
386                
387                 _this.filelayout.el.y = y;
388                 return true;
389                       
390             });
391         }
392
393         // user defined functions
394     }
395     public class Xcls_filelayout : Object
396     {
397         public Clutter.Actor el;
398         private Xcls_ClutterFiles  _this;
399
400
401             // my vars (def)
402
403         // ctor
404         public Xcls_filelayout(Xcls_ClutterFiles _owner )
405         {
406             _this = _owner;
407             _this.filelayout = this;
408             this.el = new Clutter.Actor();
409
410             // my vars (dec)
411
412             // set gobject values
413             this.el.reactive = true;
414             var child_0 = new Xcls_filelayout_manager( _this );
415             child_0.ref();
416             this.el.layout_manager = child_0.el;
417
418             // init method
419
420             this.el.add_constraint(
421                 new Clutter.BindConstraint(_this.el,Clutter.BindCoordinate.SIZE, 0.0f)
422             );
423         }
424
425         // user defined functions
426     }
427     public class Xcls_filelayout_manager : Object
428     {
429         public Clutter.FlowLayout el;
430         private Xcls_ClutterFiles  _this;
431
432
433             // my vars (def)
434
435         // ctor
436         public Xcls_filelayout_manager(Xcls_ClutterFiles _owner )
437         {
438             _this = _owner;
439             _this.filelayout_manager = this;
440             this.el = new Clutter.FlowLayout( Clutter.FlowOrientation.HORIZONTAL );
441
442             // my vars (dec)
443
444             // set gobject values
445             this.el.homogeneous = false;
446             this.el.max_column_width = 100.0f;
447             this.el.row_spacing = 20f;
448             this.el.column_spacing = 20f;
449         }
450
451         // user defined functions
452     }
453
454     public class Xcls_fileitem : Object
455     {
456         public Clutter.Actor el;
457         private Xcls_ClutterFiles  _this;
458
459
460             // my vars (def)
461         public JsRender.JsRender file;
462         public Xcls_image image;
463         public Xcls_typetitle typetitle;
464         public Xcls_title title;
465
466         // ctor
467         public Xcls_fileitem(Xcls_ClutterFiles _owner , JsRender.JsRender file)
468         {
469             _this = _owner;
470             this.el = new Clutter.Actor();
471
472             // my vars (dec)
473
474             // set gobject values
475             this.el.reactive = true;
476             var child_0 = new Xcls_BoxLayout11( _this );
477             child_0.ref();
478             this.el.layout_manager = child_0.el;
479             var child_1 = new Xcls_image( _this ,file);
480             child_1.ref();
481             this.el.add_child (  child_1.el  );
482             this.image =  child_1;
483             var child_2 = new Xcls_typetitle( _this ,file);
484             child_2.ref();
485             this.el.add_child (  child_2.el  );
486             this.typetitle =  child_2;
487             var child_3 = new Xcls_title( _this ,file);
488             child_3.ref();
489             this.el.add_child (  child_3.el  );
490             this.title =  child_3;
491
492             // init method
493
494             this.file = file;
495             this.el.set_size(100,100);
496
497             //listeners
498             this.el.button_press_event.connect( (  event) => {
499                 _this.open(this.file);
500                 return false;
501             });
502             this.el.enter_event.connect( (  event)  => {
503                 this.el.background_color =   Clutter.Color.from_string("#333");
504                 this.title.el.background_color =   Clutter.Color.from_string("#fff");
505                 this.typetitle.el.background_color =   Clutter.Color.from_string("#fff");
506                 this.title.el.color =   Clutter.Color.from_string("#000");
507                 this.typetitle.el.color =   Clutter.Color.from_string("#000");
508                 
509                     return false;
510             });
511             this.el.leave_event.connect( (  event)  => {
512                 this.el.background_color =   Clutter.Color.from_string("#000");
513                  this.title.el.background_color =   Clutter.Color.from_string("#000");
514                 this.typetitle.el.background_color =   Clutter.Color.from_string("#000");
515                 this.title.el.color =   Clutter.Color.from_string("#fff");
516                 this.typetitle.el.color =   Clutter.Color.from_string("#fff");
517                
518                 
519                 return false;
520             });
521         }
522
523         // user defined functions
524     }
525     public class Xcls_BoxLayout11 : Object
526     {
527         public Clutter.BoxLayout el;
528         private Xcls_ClutterFiles  _this;
529
530
531             // my vars (def)
532
533         // ctor
534         public Xcls_BoxLayout11(Xcls_ClutterFiles _owner )
535         {
536             _this = _owner;
537             this.el = new Clutter.BoxLayout();
538
539             // my vars (dec)
540
541             // set gobject values
542             this.el.spacing = 4;
543             this.el.orientation = Clutter.Orientation.VERTICAL;
544         }
545
546         // user defined functions
547     }
548
549     public class Xcls_image : Object
550     {
551         public Clutter.Actor el;
552         private Xcls_ClutterFiles  _this;
553
554
555             // my vars (def)
556
557         // ctor
558         public Xcls_image(Xcls_ClutterFiles _owner , JsRender.JsRender file)
559         {
560             _this = _owner;
561             this.el = new Clutter.Actor();
562
563             // my vars (dec)
564
565             // set gobject values
566             this.el.margin_right = 5f;
567             this.el.margin_left = 5f;
568             this.el.x_align = Clutter.ActorAlign.START;
569             this.el.x_expand = false;
570             this.el.y_align = Clutter.ActorAlign.START;
571             this.el.margin_top = 5f;
572             this.el.y_expand = false;
573
574             // init method
575
576             {
577                 Gdk.Pixbuf pixbuf= null;
578                 
579                 var fname = file.getIconFileName(false);
580             
581                 try {
582                     if (FileUtils.test(fname, FileTest.EXISTS)) {
583                         pixbuf = new Gdk.Pixbuf.from_file(fname);
584                     } 
585                 } catch (Error e) {
586                     // noop
587                 
588                 }
589                 if (pixbuf == null) {
590                     
591                     try {
592                         if (_this.missing_thumb_pixbuf == null) {
593                                 var icon_theme = Gtk.IconTheme.get_default ();
594                                 _this.missing_thumb_pixbuf = icon_theme.load_icon ("package-x-generic", 92, 0);
595                                 _this.missing_thumb_pixbuf.ref();
596                             }
597                             pixbuf = _this.missing_thumb_pixbuf;
598             
599                     } catch (Error e) {
600                         // noop?
601                     }
602                 }
603                 try {
604                     var img = new Clutter.Image();
605                     img.set_data(pixbuf.get_pixels(),   
606                                         pixbuf.has_alpha 
607                                           ? Cogl.PixelFormat.RGBA_8888
608                                           : Cogl.PixelFormat.RGB_888,
609                                         pixbuf.get_width (),
610                             pixbuf.get_height (),
611                                         pixbuf.get_rowstride ()
612                     );
613                     this.el.set_content(img);
614                 } catch (Error e) {
615                     // noop?
616                 }
617                  // should probably do smarter scaling...
618                 
619                 
620                 this.el.set_size(90, 70);
621             }
622         }
623
624         // user defined functions
625     }
626
627     public class Xcls_typetitle : Object
628     {
629         public Clutter.Text el;
630         private Xcls_ClutterFiles  _this;
631
632
633             // my vars (def)
634
635         // ctor
636         public Xcls_typetitle(Xcls_ClutterFiles _owner , JsRender.JsRender file)
637         {
638             _this = _owner;
639             this.el = new Clutter.Text.full("Sans 10px", file.nickType(),  Clutter.Color.from_string("#fff"));
640
641             // my vars (dec)
642
643             // set gobject values
644             this.el.x_align = Clutter.ActorAlign.START;
645             this.el.x_expand = false;
646             this.el.y_align = Clutter.ActorAlign.START;
647             this.el.y_expand = false;
648         }
649
650         // user defined functions
651     }
652
653     public class Xcls_title : Object
654     {
655         public Clutter.Text el;
656         private Xcls_ClutterFiles  _this;
657
658
659             // my vars (def)
660
661         // ctor
662         public Xcls_title(Xcls_ClutterFiles _owner , JsRender.JsRender file)
663         {
664             _this = _owner;
665             this.el = new Clutter.Text.full("Sans 10px", file.nickName(),  Clutter.Color.from_string("#fff"));
666
667             // my vars (dec)
668
669             // set gobject values
670             this.el.x_align = Clutter.ActorAlign.START;
671             this.el.x_expand = false;
672             this.el.y_align = Clutter.ActorAlign.START;
673             this.el.y_expand = false;
674         }
675
676         // user defined functions
677     }
678
679
680     public class Xcls_folderitem : Object
681     {
682         public Clutter.Actor el;
683         private Xcls_ClutterFiles  _this;
684
685
686             // my vars (def)
687         public Xcls_foldertitle foldertitle;
688
689         // ctor
690         public Xcls_folderitem(Xcls_ClutterFiles _owner , string folderpath)
691         {
692             _this = _owner;
693             this.el = new Clutter.Actor();
694
695             // my vars (dec)
696
697             // set gobject values
698             this.el.reactive = true;
699             var child_0 = new Xcls_BoxLayout16( _this );
700             child_0.ref();
701             this.el.layout_manager = child_0.el;
702             var child_1 = new Xcls_foldertitle( _this ,folderpath);
703             child_1.ref();
704             this.el.add_child (  child_1.el  );
705             this.foldertitle =  child_1;
706
707             // init method
708
709             //this.el.set_size(100,100);
710         }
711
712         // user defined functions
713     }
714     public class Xcls_BoxLayout16 : Object
715     {
716         public Clutter.BoxLayout el;
717         private Xcls_ClutterFiles  _this;
718
719
720             // my vars (def)
721
722         // ctor
723         public Xcls_BoxLayout16(Xcls_ClutterFiles _owner )
724         {
725             _this = _owner;
726             this.el = new Clutter.BoxLayout();
727
728             // my vars (dec)
729
730             // set gobject values
731             this.el.spacing = 2;
732             this.el.orientation = Clutter.Orientation.VERTICAL;
733         }
734
735         // user defined functions
736     }
737
738     public class Xcls_foldertitle : Object
739     {
740         public Clutter.Text el;
741         private Xcls_ClutterFiles  _this;
742
743
744             // my vars (def)
745
746         // ctor
747         public Xcls_foldertitle(Xcls_ClutterFiles _owner , string folderpath)
748         {
749             _this = _owner;
750             this.el = new Clutter.Text.full("Sans bold 14px", GLib.Path.get_basename(folderpath),  Clutter.Color.from_string("#fff"));
751
752             // my vars (dec)
753
754             // set gobject values
755             this.el.x_align = Clutter.ActorAlign.START;
756             this.el.x_expand = true;
757             this.el.y_align = Clutter.ActorAlign.START;
758             this.el.y_expand = false;
759         }
760
761         // user defined functions
762     }
763
764     public class Xcls_folderfile : Object
765     {
766         public Clutter.Text el;
767         private Xcls_ClutterFiles  _this;
768
769
770             // my vars (def)
771         public string filepath;
772
773         // ctor
774         public Xcls_folderfile(Xcls_ClutterFiles _owner , string filepath)
775         {
776             _this = _owner;
777             this.el = new Clutter.Text.full("Sans 10px", GLib.Path.get_basename(filepath),  Clutter.Color.from_string("#fff"));
778
779             // my vars (dec)
780
781             // set gobject values
782             this.el.x_align = Clutter.ActorAlign.START;
783             this.el.x_expand = true;
784             this.el.y_align = Clutter.ActorAlign.START;
785             this.el.reactive = true;
786             this.el.y_expand = true;
787
788             // init method
789
790             {
791                 this.filepath = filepath;
792             }
793
794             //listeners
795             this.el.button_press_event.connect( (  event) => {
796                 
797                var f = JsRender.JsRender.factory("PlainFile", _this.project, this.filepath);
798                 _this.open(f);
799                 return false;
800             });
801             this.el.enter_event.connect( (  event)  => {
802                 this.el.background_color =   Clutter.Color.from_string("#fff");
803                 this.el.color =  Clutter.Color.from_string("#000");
804                     return false;
805             });
806             this.el.leave_event.connect( (  event)  => {
807                 this.el.background_color =   Clutter.Color.from_string("#000");
808                  this.el.color =   Clutter.Color.from_string("#fff");
809                 return false;
810             });
811         }
812
813         // user defined functions
814     }
815
816
817
818
819 }