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