sync
[app.Builder.js] / Builder / RightGtkView.js
1 //<script type="text/javascript">
2 Gio = imports.gi.Gio;
3 Gtk = imports.gi.Gtk;
4 Gdk = imports.gi.Gdk;
5 GObject = imports.gi.GObject;
6  GLib= imports.gi.GLib;
7
8 /**
9 * we use a hidden window to render the created dialog...
10 * then use snapshot to render it to an image...
11
12 */
13  
14
15 XObject = imports.XObject.XObject;
16 File = imports.File.File;
17 console = imports.console;
18
19 LeftTree = imports.Builder.LeftTree.LeftTree ;
20 LeftPanel = imports.Builder.LeftPanel.LeftPanel;
21  //console.dump(imports.Builder.LeftTree);
22  //Seed.quit();
23
24 RightGtkView = new XObject({
25         xtype : Gtk.VBox,
26         lastSrc : '',
27         pack : [ 'append_page', new Gtk.Label({ label : "Gtk View" })  ],
28         items : [
29         
30             {
31                 xtype: Gtk.HBox,
32                 pack : [ 'pack_start', false, true, 0 ],
33                 items : [       
34                     {
35                         
36                         
37                         xtype: Gtk.Button,
38                         label : 'Show in New Window',
39                         pack : [ 'pack_start', false, false, 0 ],
40                         listeners : {
41                             // pressed...
42                             'button-press-event' : function(w, ev ){
43                                 /// dump..
44                                 RightGtkView.showInWindow();
45                                 return true;
46                                 // show the MidPropTree..
47                             }
48                           
49                         }
50                     }
51                 ]
52             }, 
53             {
54             
55                      
56                 renderedData : false, 
57                 xtype: Gtk.ScrolledWindow,
58                 id: 'view-sw',
59                 smooth_scroll : true,
60                 shadow_type : Gtk.ShadowType.IN ,
61                 init : function() {
62                     XObject.prototype.init.call(this); 
63                      
64                     this.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);
65                 },
66                 
67                 items : [
68                     {
69                         
70                         id : 'view-vbox',
71                         xtype : Gtk.Fixed,
72                         init : function () {
73                             XObject.prototype.init.call(this); 
74                         },
75                         pack  : 'add_with_viewport' ,
76                         items: [
77                             {
78                                 id : 'view',
79                                 xtype : Gtk.VBox,
80                                 /*
81                                 xtype : function() {
82                                     return new Gtk.Image.from_stock (Gtk.STOCK_HOME, 100) 
83
84                                 },
85                                 */
86                                 pack : 'put,10,10',
87                                 ready : false,
88                                 init : function() {
89                                     XObject.prototype.init.call(this); 
90                                     // fixme!
91                                    
92                                     Gtk.drag_dest_set
93                                     (
94                                             this.el,              /* widget that will accept a drop */
95                                             Gtk.DestDefaults.MOTION  | Gtk.DestDefaults.HIGHLIGHT,
96                                             null,            /* lists of target to support */
97                                             0,              /* size of list */
98                                             Gdk.DragAction.COPY         /* what to do with data after dropped */
99                                     );
100                                     
101                                    // print("RB: TARGETS : " + LeftTree.atoms["STRING"]);
102                                     Gtk.drag_dest_set_target_list(this.el, LeftTree.targetList);
103                                     //Gtk.drag_dest_add_text_targets(this.el);
104                                 },   
105                                 listeners : {
106                                     
107                                       
108                                     
109                                     "drag-leave" : function () {
110                                         Seed.print("TARGET: drag-leave");
111                                         // stop monitoring of mouse montion in rendering..
112                                         return true;
113                                     },
114                                     'drag-motion' : function (w, ctx,  x,   y,   time, ud) 
115                                     {
116                                         
117                                     
118                                        // console.log('DRAG MOTION'); 
119                                         // status:
120                                         // if lastCurrentNode == this.currentNode.. -- don't change anything..
121                                          
122                                         
123                                         // A) find out from drag all the places that node could be dropped.
124                                         var src = Gtk.drag_get_source_widget(ctx);
125                                         if (!src.dropList) {
126                                             Gdk.drag_status(ctx, 0, time);
127                                             return true;
128                                         }
129                                         // b) get what we are over.. (from activeNode)
130                                         // tree is empty.. - list should be correct..
131                                         if (!LeftTree.get('model').currentTree) {
132                                             Gdk.drag_status(ctx, Gdk.DragAction.COPY,time);
133                                             return true;
134                                             
135                                         }
136                                         // c) ask tree where it should be dropped... - eg. parent.. (after node ontop)
137                                         var activeNode = this.getActiveNode(x, y);
138                                         
139                                         
140                                         var tg = LeftTree.get('model').findDropNode(activeNode, src.dropList);
141                                         console.dump(tg);
142                                         if (!tg.length) {
143                                             Gdk.drag_status(ctx, 0,time);
144                                             LeftTree.get('view').highlight(false);
145                                             return true;
146                                         }
147                                          
148                                         // if we have a target..
149                                         // -> highlight it! (in browser)
150                                         // -> highlight it! (in tree)
151                                         
152                                         Gdk.drag_status(ctx, Gdk.DragAction.COPY,time);
153                                         LeftTree.get('view').highlight(tg);
154                                         this.targetData = tg;
155                                         // for tree we should handle this...
156                                         return true;
157                                         
158                                     },
159                                     "drag-drop"  : function (w, ctx,x,y,time, ud) 
160                                     {
161                                                 
162                                         Seed.print("TARGET: drag-drop");
163                                         is_valid_drop_site = true;
164                                         
165                                          
166                                         Gtk.drag_get_data
167                                         (
168                                                 w,         /* will receive 'drag-data-received' signal */
169                                                 ctx,        /* represents the current state of the DnD */
170                                                 LeftTree.atoms["STRING"],    /* the target type we want */
171                                                 time            /* time stamp */
172                                         );
173                                         
174                                         
175                                         /* No target offered by source => error */
176                                        
177
178                                         return  is_valid_drop_site;
179                                         
180
181                                     },
182                                     "drag-data-received" : function (w, ctx,  x,  y, sel_data,  target_type,  time, ud) 
183                                     {
184                                         Seed.print("GtkView: drag-data-received");
185                                         var delete_selection_data = false;
186                                         var dnd_success = false;
187                                         /* Deal with what we are given from source */
188                                         if( sel_data && sel_data.length ) {
189                                             
190                                             if (ctx.action == Gdk.DragAction.ASK)  {
191                                                 /* Ask the user to move or copy, then set the ctx action. */
192                                             }
193
194                                             if (ctx.action == Gdk.DragAction.MOVE) {
195                                                 delete_selection_data = true;
196                                             }
197                                             var source = Gtk.drag_get_source_widget(ctx);
198
199                                             Seed.print("Browser: source.DRAGDATA? " + source.dragData);
200                                             if (this.targetData) {
201                                                 Seed.print(this.targetData);
202                                                 LeftTree.get('model').dropNode(this.targetData,  source.dragData);
203                                             }
204                                             
205                                             
206                                             
207                                             dnd_success = true;
208                  
209                                         }
210
211                                         if (dnd_success == false)
212                                         {
213                                                 Seed.print ("DnD data transfer failed!\n");
214                                         }
215                                         
216                                         Gtk.drag_finish (ctx, dnd_success, delete_selection_data, time);
217                                         return true;
218                                     }
219                                     
220                                    //'line-mark-activated' : line_mark_activated,
221                                    
222                                     
223                                 },
224                                  
225                                 getActiveNode : function(x,y)
226                                 {
227                                    // workout what node is here..
228                                     return '0'; // top..
229                                 }
230                             }
231                         ]
232                     }
233                 ]
234             }
235                 
236         ],
237         
238         showInWindow: function ()
239         {
240             
241             
242             var src= this.buildJS(this.get('/LeftTree.model').toJS()[0], true);
243             
244             
245             this.get('/Terminal').feed("Running\n");
246             
247             //var x = new imports.sandbox.Context();
248             //x.add_globals();
249             //print(src);
250             try {
251                 Seed.check_syntax('var e = ' + src);
252               //  x.eval(src);
253             } catch( e) {
254                 this.get('/Terminal').feed(e.message || e.toString() + "\n");
255                 this.get('/Terminal').feed(console._dump(e)+"\n");
256                 if (e.line) {
257                     var lines = src.split("\n");
258                     var start = Math.max(0, e.line - 10);
259                     var end = Math.min(lines.length, e.line + 10);
260                     for (var i =start ; i < end; i++) {
261                         if (i == e.line) {
262                             this.get('/Terminal').feed(">>>>>" + lines[i] + "\n");
263                             
264                           
265                             continue;
266                         }
267                         
268                         this.get('/Terminal').feed(lines[i] + "\n");
269                     }
270                     
271                 }
272                 
273                 return;
274             }
275             this.get('/BottomPane').el.set_current_page(1);
276             this.get('/Terminal').el.fork_command( null , [], [], "/tmp", false,false,false); 
277             var cmd = "/usr/bin/seed /tmp/BuilderGtkView.js\n";
278             this.get('/Terminal').el.feed_child(cmd, cmd.length);
279             //'/usr/bin/seed',  [ '/tmp/BuilderGtkView.js'], [], "/tmp", false,false,false);
280             /*
281             var _top = x.get_global_object()._top;
282             
283             _top.el.set_screen(Gdk.Screen.get_default()); // just in case..
284             _top.el.show_all();
285             if (_top.el.popup) {
286                 _top.el.popup(null, null, null, null, 3, null);
287             }
288             */
289         },
290         
291         buildJS: function(data,withDebug) 
292         {
293             var i = [ 'Gtk', 'Gdk', 'Pango', 'GLib', 'Gio', 'GObject', 'GtkSource', 'WebKit', 'Vte' ];
294             var src = "";
295             i.forEach(function(e) {
296                 src += e+" = imports.gi." + e +";\n";
297             });
298             
299             if (withDebug) {
300                src+= "imports.searchPath.push(" + JSON.stringify(GLib.path_get_dirname(__script_path__)) + ");\n";
301             }
302             
303             src += "console = imports.console;\n"; // path?!!?
304             src += "XObject = imports.XObject.XObject;\n"; // path?!!?
305             src += "XObject.cache = {};\n"; // reset cache!
306             if (withDebug) {
307                 
308                 
309                 
310                 src += "Gtk.init(null,null);\n"; 
311             }
312             if (withDebug) {
313                 src += "XObject.debug=true;\n"; 
314             }
315             
316             this.withDebug = withDebug;
317             src += '_top=new XObject('+ this.mungeToString(data) + ')\n;';
318             src += '_top.init();\n';
319             if (withDebug) {
320                 src += "_top.el.show_all();\n"; 
321                 src += "Gtk.main();\n"; 
322             }
323             File.write('/tmp/BuilderGtkView.js', src);
324             print("Test code  in /tmp/BuilderGtkView.js");
325             this.lastSrc = src;
326             return src;
327         },
328         
329         renderJS : function(data, withDebug)
330         {
331             // can we mess with data?!?!?
332             
333             /**
334              * first effort..
335              * sandbox it? - nope then will have dificulting passing. stuff aruond..
336              * 
337              */
338             if (!data) {
339                  return; 
340             }
341             this.withDebug = false;
342             
343             if (this.renderedEl) {
344                 this.get('view').el.remove(this.renderedEl);
345                 this.renderedEl.destroy();
346                 this.renderedEl = false;
347             }
348             
349             var tree =  this.get('/LeftTree.model').toJS(false,true)[0];
350             // in theory tree is actually window..
351             this.renderedEl = this.viewAdd(tree.items[0], this.get('view').el);
352             this.get('view').el.set_size_request(
353                 tree.default_width * 1 || 400, tree.default_height * 1 || 400
354             ) ;
355             
356             this.renderedEl.set_size_request(
357                 tree.default_width || 600,
358                 tree.default_height || 400
359             );
360             this.get('view').el.show_all();
361             
362             return;
363             
364             
365             var src = this.buildJS(data,withDebug);
366             var x = new imports.sandbox.Context();
367             x.add_globals();
368             //x.get_global_object().a = "hello world";
369             
370             try {
371                 Seed.check_syntax('var e = ' + src);
372                 x.eval(src);
373             } catch( e) {
374                 //if (!withDebug) {
375                 //   return this.renderJS(data,true);
376                // }
377                 print(e.message || e.toString());
378                 console.dump(e);
379                 return;
380             }
381             
382             var r = new Gdk.Rectangle();
383             var _top = x.get_global_object()._top;
384             
385             _top.el.set_screen(Gdk.Screen.get_default()); // just in case..
386             _top.el.show_all();
387               
388             
389             if (_top.el.popup) {
390                 _top.el.popup(null, null, null, null, 3, null);
391             }
392             
393             
394             
395             var pb = _top.items[0].el.get_snapshot(r);
396             _top.el.hide();
397             if (!pb) {
398                 return;
399             }
400             
401             _top.el.destroy();
402             x._top = false;
403             var Window = imports.Builder.Window.Window;
404             var gc = new Gdk.GC.c_new(Window.el.window);
405                 
406                 // 10 points all round..
407             var full = new Gdk.Pixmap.c_new (Window.el.window, r.width+20, r.height+20, pb.get_depth());
408             // draw a white background..
409            // gc.set_rgb_fg_color({ red: 0, white: 0, black : 0 });
410             Gdk.draw_rectangle(full, gc, true, 0, 0, r.width+20, r.height+20);
411             // paint image..
412             Gdk.draw_drawable (full, gc, pb, 0, 0, 10, 10, r.width, r.height);
413             // boxes..
414             //gc.set_rgb_fg_color({ red: 255, white: 255, black : 255 });
415             Gdk.draw_rectangle(full, gc, true, 0, 0, 10, 10);
416             this.get('view').el.set_from_pixmap(full, null);
417             //this.get('view-vbox').el.set_size_request( r.width+20, r.height+20);
418             //var img = new Gtk.Image.from_file("/home/alan/solarpanels.jpeg");
419             
420             
421             
422         },
423         mungeToString:  function(obj, isListener, pad)
424         {
425             pad = pad || '';
426             var keys = [];
427             var isArray = false;
428             isListener = isListener || false;
429              
430             // am I munging a object or array...
431             if (obj.constructor.toString() === Array.toString()) {
432                 for (var i= 0; i < obj.length; i++) {
433                     keys.push(i);
434                 }
435                 isArray = true;
436             } else {
437                 for (var i in obj) {
438                     keys.push(i);
439                 }
440             }
441             
442             
443             var els = []; 
444             var skip = [];
445             if (!isArray && 
446                     typeof(obj['|xns']) != 'undefined' &&
447                     typeof(obj['xtype']) != 'undefined'
448                 ) {
449                     els.push('xtype: '+ obj['|xns'] + '.' + obj['xtype']);
450                     skip.push('|xns','xtype');
451                 }
452             
453             var _this = this;
454             
455             
456             
457             keys.forEach(function(i) {
458                 var el = obj[i];
459                 if (!isArray && skip.indexOf(i) > -1) {
460                     return;
461                 }
462                 if (isListener) {
463                     if (!_this.withDebug) {
464                         // do not write listeners unless we are debug mode.
465                         return;
466                     }
467                     //if (obj[i].match(new RegExp("Gtk.main" + "_quit"))) { // we can not handle this very well..
468                     //    return;
469                    // }
470                     var str= ('' + obj[i]).replace(/^\s+|\s+$/g,"");
471                     var lines = str.split("\n");
472                     if (lines.length > 1) {
473                         str = lines.join("\n" + pad);
474                     }
475                     els.push(JSON.stringify(i) + ":" + str);
476                     return;
477                 }
478                 if (i[0] == '|') {
479                     // does not hapepnd with arrays..
480                     if (typeof(el) == 'string' && !obj[i].length) { //skip empty.
481                         return;
482                     }
483                     // this needs to go...
484                     //if (typeof(el) == 'string'  && obj[i].match(new RegExp("Gtk.main" + "_quit"))) { // we can not handle this very well..
485                     //    return;
486                     //}
487                     
488                     var str= ('' + obj[i]).replace(/^\s+|\s+$/g,"");;
489                     var lines = str.split("\n");
490                     if (lines.length > 1) {
491                         str = lines.join("\n" + pad);
492                     }
493                     
494                     els.push(JSON.stringify(i.substring(1)) + ":" + str);
495                     return;
496                 }
497                 var left = isArray ? '' : (JSON.stringify(i) + " : " )
498                 if (typeof(el) == 'object') {
499                     els.push(left + _this.mungeToString(el, i == 'listeners', pad + '    '));
500                     return;
501                 }
502                 els.push(JSON.stringify(i) + ":" + JSON.stringify(obj[i]));
503             });
504             var spad = pad.substring(0, pad.length-4);
505             return (isArray ? '[' : '{') + "\n" +
506                 pad  + els.join(",\n" + pad ) + 
507                 "\n" + spad + (isArray ? ']' : '}');
508                
509             
510             
511         },
512         
513         buildView : function()
514         {
515             
516             
517         },
518         viewAdd : function(item, par)
519         {
520             // does something similar to xobject..
521             item.pack = (typeof(item.pack) == 'undefined') ?  'add' : item.pack;
522             
523             if (item.pack===false || item.pack === 'false') {  // no ;
524                 return;
525             }
526             print("CREATE: " + item['|xns'] + '.' + item['xtype']);
527             var ns = imports.gi[item['|xns']];
528             var ctr = ns[item['xtype']];
529             var ctr_args = { };
530             for(var k in item) {
531                 var kv = item[k];
532                 if (typeof(kv) == 'object' || typeof(kv) == 'function') {
533                     continue;
534                 }
535                 if ( 
536                     k == 'pack' ||
537                     k == 'items' ||
538                     k == 'id' ||
539                     k == 'xtype' ||
540                     k == 'xdebug' ||
541                     k == 'xns' ||
542                     k == '|xns'
543                 ) {
544                     continue;
545                 }
546                 ctr_args[k] = kv;
547                 
548             } 
549             
550             
551             var el = new ctr(ctr_args);
552             
553             print("PACK");
554             console.dump(item.pack);
555             
556             
557             
558             
559             var args = [];
560             var pack_m  = false;
561             if (typeof(item.pack) == 'string') {
562                  
563                 item.pack.split(',').forEach(function(e, i) {
564                     
565                     if (e == 'false') { args.push( false); return; }
566                     if (e == 'true') {  args.push( true);  return; }
567                     if (!isNaN(parseInt(e))) { args.push( parseInt(e)); return; }
568                     args.push(e);
569                 });
570                 //print(args.join(","));
571                 
572                 pack_m = args.shift();
573             } else {
574                 pack_m = item.pack.shift();
575                 args = item.pack;
576             }
577             
578             // handle error.
579             if (pack_m && typeof(par[pack_m]) == 'undefined') {
580                 Seed.print('pack method not available : ' + item.xtype + '.' +  pack_m);
581                 return;
582             }
583             
584             console.dump(args);
585             args.unshift(el);
586             //if (XObject.debug) print(pack_m + '[' + args.join(',') +']');
587             //Seed.print('args: ' + args.length);
588             if (pack_m) {
589                 par[pack_m].apply(par, args);
590             }
591             
592             var _this = this;
593             item.items = item.items || [];
594             item.items.forEach(function(ch) {
595                 _this.viewAdd(ch, el);
596             });
597             
598             
599             
600             // add the signal handlers.
601             // is it a widget!?!!?
602            
603             
604             try {
605                 
606                    
607                 el.signal.expose_event.connect(XObject.createDelegate(this.widgetExposeEvent, this, [ item  ], true));
608                 el.signal.drag_motion.connect(XObject.createDelegate(this.widgetDragMotionEvent, this,[ item  ], true));
609                 el.signal.drag_drop.connect(XObject.createDelegate(this.widgetDragDropEvent, this, [ item  ], true));
610                 el.signal.button_press_event.connect(XObject.createDelegate(this.widgetPressEvent, this, [ item  ], true ));
611             } catch(e) {
612                 // ignore!
613                }
614             
615             
616             
617             return el;
618             
619         },
620          widgetExposeEvent : function()
621         {
622             print("WIDGET EXPOSE"); // draw highlight??
623             return false;
624         },
625         widgetDragMotionEvent : function()
626         {
627             print("WIDGET DRAGMOTION"); 
628             return true;
629         },
630         widgetDragDropEvent : function()
631         {
632             print("WIDGET DRAGDROP"); 
633             return true;
634         },
635         widgetPressEvent : function(w,e,u,d)
636         {
637             print("WIDGET PRESs" + d.xtreepath ); 
638             
639             return false;
640         }
641         
642         
643         
644     } 
645     
646     
647 );
648