src/Builder4/ClutterFiles.bjs
[app.Builder.js] / src / Builder4 / ClutterFiles.bjs
1 {
2  "name" : "ClutterFiles",
3  "parent" : "",
4  "title" : "",
5  "path" : "/home/alan/gitlive/app.Builder.js/src/Builder4/ClutterFiles.bjs",
6  "permname" : "",
7  "modOrder" : "",
8  "build_module" : "builder",
9  "items" : [
10   {
11    "# Gee.ArrayList<Xcls_fileitem> fileitems" : "new Gee.ArrayList<Xcls_fileitem>()",
12    "id" : "ClutterFiles",
13    "|  void clearFiles" : "() {\n    \n    this.filelayout.el.remove_all_children();\n    // we need to unref all the chidren that we loaded though...\n    \n}\n ",
14    "Clutter.ScrollMode scroll_mode" : "Clutter.ScrollMode.VERTICALLY",
15    "xtype" : "Actor",
16    "|  void loadProject" : "(Project.Project pr) {\n    // list all the files, and create new Xcls_fileitem for each one.\n    \n    // LEAK --- we should unref all the chilren...\n    this.filelayout.el.y = 0;\n    this.clearFiles();\n    \n    print(\"clutter files - load project: \" + pr.name +\"\\n\");\n    // should unref.. them hopefully.\n    \n    this.project_title_name.el.text = pr.name;\n    this.project_title_path.el.text = pr.firstPath();\n    \n    this.fileitems = new Gee.ArrayList<Xcls_fileitem>();\n\n    \n\n    var fiter = pr.sortedFiles().list_iterator();\n    while (fiter.next()) {\n        var a = new Xcls_fileitem(this,fiter.get());\n        this.fileitems.add(a);\n\n//        a.ref();\n        print(\"add to clutter file view: \" + fiter.get().name + \"\\n\");\n        this.filelayout.el.add_child(a.el);\n    }\n    \n   \n    \n    this.el.show();\n}\n",
17    "# Gdk.Pixbuf missing_thumb_pixbuf" : "null",
18    "@ void open" : "(JsRender.JsRender file)",
19    "$ xns" : "Clutter",
20    "bool reactive" : true,
21    "|  void set_size" : "(float w, float h) \n{\n    \n     // called by window resize... with is alreaddy -50 (for the buttons?)\n     \n\n     if (this.el == null) {\n        print(\"object not ready yet?\");\n        return;\n    }\n   _this.filelayout_manager.el.max_column_width = w - 75;\n   \n    this.el.set_size(\n           // this.el.get_stage().width-150,\n           w,\n           h  // this.el.get_stage().height\n    );\n    \n    // 100 right for buttons ..\n    this.el.set_position(0,0);\n   \n   \n   this.scoller.el.set_size(\n           // this.el.get_stage().width-150,\n           w-150,\n           h  // this.el.get_stage().height\n    );\n    \n    // 100 right for buttons ..\n    this.scoller.el.set_position(75,50);\n}\n",
22    "items" : [
23     {
24      "id" : "project_title",
25      "* init" : "\nthis.el.add_constraint(\n    new Clutter.BindConstraint(_this.el,Clutter.BindCoordinate.SIZE, 0.0f)\n);\nthis.el.set_position(50,0);\n ",
26      "xtype" : "Actor",
27      "* pack" : "add_child",
28      "$ reactive" : true,
29      "$ xns" : "Clutter",
30      "items" : [
31       {
32        "id" : "project_title_manager",
33        "$ orientation" : "Clutter.FlowOrientation.HORIZONTAL",
34        "xtype" : "FlowLayout",
35        "boolean homogeneous" : false,
36        "$ xns" : "Clutter",
37        "row_spacing" : 5,
38        "* prop" : "layout_manager",
39        "column_spacing" : 20
40       },
41       {
42        "* ctor" : "new Clutter.Text.full(\"Sans 20px\", \"\",  Clutter.Color.from_string(\"#eee\"))",
43        "id" : "project_title_name",
44        "* pack" : "add_child",
45        "xtype" : "Text",
46        "Clutter.ActorAlign y_align" : "Clutter.ActorAlign.START",
47        "boolean x_expand" : true,
48        "$ xns" : "Clutter",
49        "Clutter.ActorAlign x_align" : "Clutter.ActorAlign.START",
50        "boolean y_expand" : true
51       },
52       {
53        "* ctor" : "new Clutter.Text.full(\"Sans 10px\", \"\",  Clutter.Color.from_string(\"#ccc\"))",
54        "id" : "project_title_path",
55        "* pack" : "add_child",
56        "xtype" : "Text",
57        "Clutter.ActorAlign y_align" : "Clutter.ActorAlign.START",
58        "boolean x_expand" : true,
59        "$ xns" : "Clutter",
60        "Clutter.ActorAlign x_align" : "Clutter.ActorAlign.START",
61        "boolean y_expand" : true
62       }
63      ]
64     },
65     {
66      "listeners" : {
67       "scroll_event" : "( event) => {\n   //Sprint(\"scroll event\");\n            var y = _this.filelayout.el.y;\n            var dir = event.direction;\n            switch (dir) {\n                case Clutter.ScrollDirection.UP:\n                    y += event.y /2;\n                    break;\n                case Clutter.ScrollDirection.DOWN:\n                    y -= event.y /2 ;\n                    break;\n                default:\n                    return false;\n            }\n            // range of scroll -- can go up -- eg.. -ve value.\n            \n            y = float.min(0, y);\n            \n            // to work out the max -ve number\n            // height of filelayout\n            // height of scrollactor..\n            \n            var last_child_bottom = _this.filelayout.el.last_child.y +  _this.filelayout.el.last_child.height;\n             if ( (-1 * (y+200)) > (  last_child_bottom - this.el.height)) {\n                return  false;\n            }\n        \n        \n            \n            \n        //    print(\"\\nlast child - this height = %f  ==== new y %f\\n \".printf( \n          //          last_child_bottom - this.el.height,\n           //         y));    \n           // y = float.min(0, y);    //??\n           // print(\"scroll event of %f  - new y = %f \".printf(event.y, y));\n            _this.filelayout.el.y = y;\n            return true;\n          \n}"
68      },
69      "# Gee.ArrayList<Xcls_fileitem> fileitems" : "new Gee.ArrayList<Xcls_fileitem>()",
70      "id" : "scoller",
71      "Clutter.ScrollMode scroll_mode" : "Clutter.ScrollMode.VERTICALLY",
72      "xtype" : "ScrollActor",
73      "* pack" : "add_child",
74      "# Gdk.Pixbuf missing_thumb_pixbuf" : "null",
75      "$ xns" : "Clutter",
76      "bool reactive" : true,
77      "items" : [
78       {
79        "id" : "filelayout",
80        "* init" : "\nthis.el.add_constraint(\n    new Clutter.BindConstraint(_this.el,Clutter.BindCoordinate.SIZE, 0.0f)\n);\n\n ",
81        "xtype" : "Actor",
82        "* pack" : "add_child",
83        "$ reactive" : true,
84        "$ xns" : "Clutter",
85        "items" : [
86         {
87          "id" : "filelayout_manager",
88          "$ orientation" : "Clutter.FlowOrientation.HORIZONTAL",
89          "xtype" : "FlowLayout",
90          "$ xns" : "Clutter",
91          "row_spacing" : 20,
92          "* prop" : "layout_manager",
93          "column_spacing" : 20,
94          "$ homogeneous" : true
95         },
96         {
97          "listeners" : {
98           "button_press_event" : "  (  event) => {\n    _this.open(this.file);\n    return false;\n} ",
99           "enter_event" : "(  event)  => {\n    this.el.background_color =   Clutter.Color.from_string(\"#333\");\n        return false;\n}",
100           "leave_event" : "(  event)  => {\n    this.el.background_color =   Clutter.Color.from_string(\"#000\");\n    return false;\n}"
101          },
102          "id" : "*fileitem",
103          "* args" : "JsRender.JsRender file",
104          "* init" : "this.file = file;\nthis.el.set_size(100,100);",
105          "* pack" : true,
106          "xtype" : "Actor",
107          "# JsRender.JsRender file" : "",
108          "$ reactive" : true,
109          "$ xns" : "Clutter",
110          "items" : [
111           {
112            "spacing" : 4,
113            "xtype" : "BoxLayout",
114            "orientation" : "Clutter.Orientation.VERTICAL",
115            "$ xns" : "Clutter",
116            "* prop" : "layout_manager"
117           },
118           {
119            "$ margin_right" : 5,
120            "$ margin_top" : 5,
121            "id" : "+image",
122            "* args" : "JsRender.JsRender file",
123            "* init" : "{\n    Gdk.Pixbuf pixbuf= null;\n    \n    var fname = file.getIconFileName(false);\n\n    try {\n        if (FileUtils.test(fname, FileTest.EXISTS)) {\n            pixbuf = new Gdk.Pixbuf.from_file(fname);\n        } \n    } catch (Error e) {\n        // noop\n    \n    }\n    if (pixbuf == null) {\n        \n        try {\n            if (_this.missing_thumb_pixbuf == null) {\n                    var icon_theme = Gtk.IconTheme.get_default ();\n                    _this.missing_thumb_pixbuf = icon_theme.load_icon (\"package-x-generic\", 92, 0);\n                    _this.missing_thumb_pixbuf.ref();\n                }\n                pixbuf = _this.missing_thumb_pixbuf;\n\n        } catch (Error e) {\n            // noop?\n        }\n    }\n    try {\n        var img = new Clutter.Image();\n        img.set_data(pixbuf.get_pixels(),   \n                            pixbuf.has_alpha \n                              ? Cogl.PixelFormat.RGBA_8888\n                              : Cogl.PixelFormat.RGB_888,\n                            pixbuf.get_width (),\n                pixbuf.get_height (),\n                            pixbuf.get_rowstride ()\n        );\n        this.el.set_content(img);\n    } catch (Error e) {\n        // noop?\n    }\n     // should probably do smarter scaling...\n    \n    \n    this.el.set_size(90, 70);\n}\n",
124            "$ x_expand" : true,
125            "* pack" : "add_child",
126            "xtype" : "Actor",
127            "$ y_align" : "Clutter.ActorAlign.START",
128            "$ margin_left" : 5,
129            "$ xns" : "Clutter",
130            "$ y_expand" : true,
131            "$ x_align" : "Clutter.ActorAlign.START"
132           },
133           {
134            "* ctor" : "new Clutter.Text.full(\"Sans 10px\", file.nickType(),  Clutter.Color.from_string(\"#fff\"))",
135            "* args" : "JsRender.JsRender file",
136            "id" : "+typetitle",
137            "$ x_expand" : true,
138            "* pack" : "add_child",
139            "xtype" : "Text",
140            "$ y_align" : "Clutter.ActorAlign.START",
141            "$ xns" : "Clutter",
142            "$ y_expand" : true,
143            "$ x_align" : "Clutter.ActorAlign.START"
144           },
145           {
146            "* ctor" : "new Clutter.Text.full(\"Sans 10px\", file.nickName(),  Clutter.Color.from_string(\"#fff\"))",
147            "* args" : "JsRender.JsRender file",
148            "id" : "+title",
149            "$ x_expand" : true,
150            "* pack" : "add_child",
151            "xtype" : "Text",
152            "$ y_align" : "Clutter.ActorAlign.START",
153            "$ xns" : "Clutter",
154            "$ y_expand" : true,
155            "$ x_align" : "Clutter.ActorAlign.START"
156           }
157          ]
158         }
159        ]
160       }
161      ]
162     }
163    ]
164   }
165  ]
166 }