resources/RooUsage.txt
[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_delta(out delta_x, out delta_y);
373                         //print("Scroll SMOOTH? by %f\n",  delta_y * event.y);
374                         y += ((float)delta_y * event.y * -1.0f) /2 ;
375                         y = float.max(bottompos, y);
376                         y = float.min(0, y); // 
377                                    
378                         break;
379                     default:
380                         print("scroll event = bad direction %s\n", dir.to_string());
381                         return false;
382                 }
383                 // range of scroll -- can go up -- eg.. -ve value.
384                 
385             
386                 
387                print("Set scroll to %f (lcb=%f / height = %f)\n", y, last_child_bottom, this.el.height);
388                
389                 _this.filelayout.el.y = y;
390                 return true;
391                       
392             });
393         }
394
395         // user defined functions
396     }
397     public class Xcls_filelayout : Object
398     {
399         public Clutter.Actor el;
400         private Xcls_ClutterFiles  _this;
401
402
403             // my vars (def)
404
405         // ctor
406         public Xcls_filelayout(Xcls_ClutterFiles _owner )
407         {
408             _this = _owner;
409             _this.filelayout = this;
410             this.el = new Clutter.Actor();
411
412             // my vars (dec)
413
414             // set gobject values
415             this.el.reactive = true;
416             var child_0 = new Xcls_filelayout_manager( _this );
417             child_0.ref();
418             this.el.layout_manager = child_0.el;
419
420             // init method
421
422             this.el.add_constraint(
423                 new Clutter.BindConstraint(_this.el,Clutter.BindCoordinate.SIZE, 0.0f)
424             );
425         }
426
427         // user defined functions
428     }
429     public class Xcls_filelayout_manager : Object
430     {
431         public Clutter.FlowLayout el;
432         private Xcls_ClutterFiles  _this;
433
434
435             // my vars (def)
436
437         // ctor
438         public Xcls_filelayout_manager(Xcls_ClutterFiles _owner )
439         {
440             _this = _owner;
441             _this.filelayout_manager = this;
442             this.el = new Clutter.FlowLayout( Clutter.FlowOrientation.HORIZONTAL );
443
444             // my vars (dec)
445
446             // set gobject values
447             this.el.homogeneous = false;
448             this.el.max_column_width = 100.0f;
449             this.el.row_spacing = 20f;
450             this.el.column_spacing = 20f;
451         }
452
453         // user defined functions
454     }
455
456     public class Xcls_fileitem : Object
457     {
458         public Clutter.Actor el;
459         private Xcls_ClutterFiles  _this;
460
461
462             // my vars (def)
463         public JsRender.JsRender file;
464         public Xcls_image image;
465         public Xcls_typetitle typetitle;
466         public Xcls_title title;
467
468         // ctor
469         public Xcls_fileitem(Xcls_ClutterFiles _owner , JsRender.JsRender file)
470         {
471             _this = _owner;
472             this.el = new Clutter.Actor();
473
474             // my vars (dec)
475
476             // set gobject values
477             this.el.reactive = true;
478             var child_0 = new Xcls_BoxLayout11( _this );
479             child_0.ref();
480             this.el.layout_manager = child_0.el;
481             var child_1 = new Xcls_image( _this ,file);
482             child_1.ref();
483             this.el.add_child (  child_1.el  );
484             this.image =  child_1;
485             var child_2 = new Xcls_typetitle( _this ,file);
486             child_2.ref();
487             this.el.add_child (  child_2.el  );
488             this.typetitle =  child_2;
489             var child_3 = new Xcls_title( _this ,file);
490             child_3.ref();
491             this.el.add_child (  child_3.el  );
492             this.title =  child_3;
493
494             // init method
495
496             this.file = file;
497             this.el.set_size(100,100);
498
499             //listeners
500             this.el.button_press_event.connect( (  event) => {
501                 _this.open(this.file);
502                 return false;
503             });
504             this.el.enter_event.connect( (  event)  => {
505                 this.el.background_color =   Clutter.Color.from_string("#333");
506                 this.title.el.background_color =   Clutter.Color.from_string("#fff");
507                 this.typetitle.el.background_color =   Clutter.Color.from_string("#fff");
508                 this.title.el.color =   Clutter.Color.from_string("#000");
509                 this.typetitle.el.color =   Clutter.Color.from_string("#000");
510                 
511                     return false;
512             });
513             this.el.leave_event.connect( (  event)  => {
514                 this.el.background_color =   Clutter.Color.from_string("#000");
515                  this.title.el.background_color =   Clutter.Color.from_string("#000");
516                 this.typetitle.el.background_color =   Clutter.Color.from_string("#000");
517                 this.title.el.color =   Clutter.Color.from_string("#fff");
518                 this.typetitle.el.color =   Clutter.Color.from_string("#fff");
519                
520                 
521                 return false;
522             });
523         }
524
525         // user defined functions
526     }
527     public class Xcls_BoxLayout11 : Object
528     {
529         public Clutter.BoxLayout el;
530         private Xcls_ClutterFiles  _this;
531
532
533             // my vars (def)
534
535         // ctor
536         public Xcls_BoxLayout11(Xcls_ClutterFiles _owner )
537         {
538             _this = _owner;
539             this.el = new Clutter.BoxLayout();
540
541             // my vars (dec)
542
543             // set gobject values
544             this.el.spacing = 4;
545             this.el.orientation = Clutter.Orientation.VERTICAL;
546         }
547
548         // user defined functions
549     }
550
551     public class Xcls_image : Object
552     {
553         public Clutter.Actor el;
554         private Xcls_ClutterFiles  _this;
555
556
557             // my vars (def)
558
559         // ctor
560         public Xcls_image(Xcls_ClutterFiles _owner , JsRender.JsRender file)
561         {
562             _this = _owner;
563             this.el = new Clutter.Actor();
564
565             // my vars (dec)
566
567             // set gobject values
568             this.el.margin_right = 5f;
569             this.el.margin_left = 5f;
570             this.el.x_align = Clutter.ActorAlign.START;
571             this.el.x_expand = false;
572             this.el.y_align = Clutter.ActorAlign.START;
573             this.el.margin_top = 5f;
574             this.el.y_expand = false;
575
576             // init method
577
578             {
579                 Gdk.Pixbuf pixbuf= null;
580                 
581                 var fname = file.getIconFileName(false);
582             
583                 try {
584                     if (FileUtils.test(fname, FileTest.EXISTS)) {
585                         pixbuf = new Gdk.Pixbuf.from_file(fname);
586                     } 
587                 } catch (Error e) {
588                     // noop
589                 
590                 }
591                 if (pixbuf == null) {
592                     
593                     try {
594                         if (_this.missing_thumb_pixbuf == null) {
595                                 var icon_theme = Gtk.IconTheme.get_default ();
596                                 _this.missing_thumb_pixbuf = icon_theme.load_icon ("package-x-generic", 92, 0);
597                                 _this.missing_thumb_pixbuf.ref();
598                             }
599                             pixbuf = _this.missing_thumb_pixbuf;
600             
601                     } catch (Error e) {
602                         // noop?
603                     }
604                 }
605                 try {
606                     var img = new Clutter.Image();
607                     img.set_data(pixbuf.get_pixels(),   
608                                         pixbuf.has_alpha 
609                                           ? Cogl.PixelFormat.RGBA_8888
610                                           : Cogl.PixelFormat.RGB_888,
611                                         pixbuf.get_width (),
612                             pixbuf.get_height (),
613                                         pixbuf.get_rowstride ()
614                     );
615                     this.el.set_content(img);
616                 } catch (Error e) {
617                     // noop?
618                 }
619                  // should probably do smarter scaling...
620                 
621                 
622                 this.el.set_size(90, 70);
623             }
624         }
625
626         // user defined functions
627     }
628
629     public class Xcls_typetitle : Object
630     {
631         public Clutter.Text el;
632         private Xcls_ClutterFiles  _this;
633
634
635             // my vars (def)
636
637         // ctor
638         public Xcls_typetitle(Xcls_ClutterFiles _owner , JsRender.JsRender file)
639         {
640             _this = _owner;
641             this.el = new Clutter.Text.full("Sans 10px", file.nickType(),  Clutter.Color.from_string("#fff"));
642
643             // my vars (dec)
644
645             // set gobject values
646             this.el.x_align = Clutter.ActorAlign.START;
647             this.el.x_expand = false;
648             this.el.y_align = Clutter.ActorAlign.START;
649             this.el.y_expand = false;
650         }
651
652         // user defined functions
653     }
654
655     public class Xcls_title : Object
656     {
657         public Clutter.Text el;
658         private Xcls_ClutterFiles  _this;
659
660
661             // my vars (def)
662
663         // ctor
664         public Xcls_title(Xcls_ClutterFiles _owner , JsRender.JsRender file)
665         {
666             _this = _owner;
667             this.el = new Clutter.Text.full("Sans 10px", file.nickName(),  Clutter.Color.from_string("#fff"));
668
669             // my vars (dec)
670
671             // set gobject values
672             this.el.x_align = Clutter.ActorAlign.START;
673             this.el.x_expand = false;
674             this.el.y_align = Clutter.ActorAlign.START;
675             this.el.y_expand = false;
676         }
677
678         // user defined functions
679     }
680
681
682     public class Xcls_folderitem : Object
683     {
684         public Clutter.Actor el;
685         private Xcls_ClutterFiles  _this;
686
687
688             // my vars (def)
689         public Xcls_foldertitle foldertitle;
690
691         // ctor
692         public Xcls_folderitem(Xcls_ClutterFiles _owner , string folderpath)
693         {
694             _this = _owner;
695             this.el = new Clutter.Actor();
696
697             // my vars (dec)
698
699             // set gobject values
700             this.el.reactive = true;
701             var child_0 = new Xcls_BoxLayout16( _this );
702             child_0.ref();
703             this.el.layout_manager = child_0.el;
704             var child_1 = new Xcls_foldertitle( _this ,folderpath);
705             child_1.ref();
706             this.el.add_child (  child_1.el  );
707             this.foldertitle =  child_1;
708
709             // init method
710
711             //this.el.set_size(100,100);
712         }
713
714         // user defined functions
715     }
716     public class Xcls_BoxLayout16 : Object
717     {
718         public Clutter.BoxLayout el;
719         private Xcls_ClutterFiles  _this;
720
721
722             // my vars (def)
723
724         // ctor
725         public Xcls_BoxLayout16(Xcls_ClutterFiles _owner )
726         {
727             _this = _owner;
728             this.el = new Clutter.BoxLayout();
729
730             // my vars (dec)
731
732             // set gobject values
733             this.el.spacing = 2;
734             this.el.orientation = Clutter.Orientation.VERTICAL;
735         }
736
737         // user defined functions
738     }
739
740     public class Xcls_foldertitle : Object
741     {
742         public Clutter.Text el;
743         private Xcls_ClutterFiles  _this;
744
745
746             // my vars (def)
747
748         // ctor
749         public Xcls_foldertitle(Xcls_ClutterFiles _owner , string folderpath)
750         {
751             _this = _owner;
752             this.el = new Clutter.Text.full("Sans bold 14px", GLib.Path.get_basename(folderpath),  Clutter.Color.from_string("#fff"));
753
754             // my vars (dec)
755
756             // set gobject values
757             this.el.x_align = Clutter.ActorAlign.START;
758             this.el.x_expand = true;
759             this.el.y_align = Clutter.ActorAlign.START;
760             this.el.y_expand = false;
761         }
762
763         // user defined functions
764     }
765
766     public class Xcls_folderfile : Object
767     {
768         public Clutter.Text el;
769         private Xcls_ClutterFiles  _this;
770
771
772             // my vars (def)
773         public string filepath;
774
775         // ctor
776         public Xcls_folderfile(Xcls_ClutterFiles _owner , string filepath)
777         {
778             _this = _owner;
779             this.el = new Clutter.Text.full("Sans 10px", GLib.Path.get_basename(filepath),  Clutter.Color.from_string("#fff"));
780
781             // my vars (dec)
782
783             // set gobject values
784             this.el.x_align = Clutter.ActorAlign.START;
785             this.el.x_expand = true;
786             this.el.y_align = Clutter.ActorAlign.START;
787             this.el.reactive = true;
788             this.el.y_expand = true;
789
790             // init method
791
792             {
793                 this.filepath = filepath;
794             }
795
796             //listeners
797             this.el.button_press_event.connect( (  event) => {
798                 
799                var f = JsRender.JsRender.factory("PlainFile", _this.project, this.filepath);
800                 _this.open(f);
801                 return false;
802             });
803             this.el.enter_event.connect( (  event)  => {
804                 this.el.background_color =   Clutter.Color.from_string("#fff");
805                 this.el.color =  Clutter.Color.from_string("#000");
806                     return false;
807             });
808             this.el.leave_event.connect( (  event)  => {
809                 this.el.background_color =   Clutter.Color.from_string("#000");
810                  this.el.color =   Clutter.Color.from_string("#fff");
811                 return false;
812             });
813         }
814
815         // user defined functions
816     }
817
818
819
820
821 }