XObject.js
[app.Builder.js] / XObject.js
1 //<script type="text/javascript">
2 GIRepository = imports.gi.GIRepository;
3 GObject = imports.gi.GObject;
4 /**
5  * XObject
6  * Yet another attempt to create a usable object construction library for seed..
7  * 
8  * Why is this useful?
9  * A) It turns rather messy code into a tree structure, making it easy to find code relating to 
10  *    an interface element
11  * B) In theory it should be gjs/Seed compatible..
12  * C) It provides getElementById style lookups for elements.
13  * D) It provides classic OO constructors for Javascript (extend/define)
14  * E) It does not modify any buildin prototypes.. 
15  *
16  * Extend this.. to use it's wonderful features..
17  * 
18  * normal usage:
19  * XObject = imports.XObject.XObject;
20  * 
21  * Xyz = new XObject({
22  *     xtype: Gtk.Window,
23  *     id : 'window',
24  *     items : [
25  *     
26  *     ]
27  *  });
28  *  Xyz.init(); // create and show.
29  * 
30  * 
31  * 
32  * @arg xtype {String|Function} constructor or string.
33  * @arg id {String}  (optional) id for registry
34  * @arg xns {String|Object}   (optional) namespace eg. Gtk or 'Gtk' - used with xtype.
35  * @arg items {Array}   (optional) list of child elements which will be constructed.. using XObject
36  * @arg listeners {Object}   (optional) map Gobject signals to functions
37  * @arg pack {Function|String|Array}   (optional) how this object gets added to it's parent
38  * @arg el {Object}   (optional) premade GObject
39  * 
40  *  --- needs a xdebug option!
41  * 
42  * 
43  * He's some questions.
44  * - should we generate ID's for all elements? (if so we probably need to garbage collect)
45  * - should we have a special property to use as the constructor / gobject.properties rather
46  *   than sending all basic types to this?
47  * 
48  * 
49  */
50
51 function XObject (cfg) {
52     // first apply cfg if set.
53       //print("new XOBJECT!!!");
54     this.config = {};
55     this.constructor = XObject;
56     
57     // copy down all elements into self..
58     
59     for (var i in cfg) {
60         this[i] = cfg[i];
61         if (typeof(cfg[i]) == 'function') { // do we skip objects.
62             continue;
63         }
64         // these properties are not copied to cfg.
65         if (    i == 'pack' ||
66                 i == 'items' ||
67                 i == 'id' ||
68                 i == 'xtype' ||
69                 i == 'xdebug' ||
70                 i == 'xns') {
71             continue;
72         }
73         
74         
75         this.config[i] = cfg[i];
76     }
77     this.items = this.items || [];
78     // pack can be false!
79     if (typeof(this.pack) == 'undefined') {
80         var Gtk  = imports.gi.Gtk;
81         this.pack = [ 'add' ]
82         switch (true) {
83             // any others!!
84             case (this.xtype == Gtk.MenuItem):  this.pack = [ 'append' ]; break;
85             
86         }
87         
88     }
89     
90     
91     
92 }
93
94
95
96 XObject.prototype = {
97     /**
98      * @property el {GObject} the Gtk / etc. element.
99      */
100     el : false, 
101     /*
102      * @property items {Array} list of sub elements
103      */
104     /**
105      * @property parent {XObject} parent Element
106      */
107      
108      /**
109      * @property config {Object} the construction configuration.
110      */
111      /**
112       * @method init
113       * Initializes the Element (el) hooks up all the listeners
114       * and packs the children.
115       * you can override this, in child objects, then 
116       * do this to do thi initaliztion.
117       * 
118       * XObject.prototype.init.call(this); 
119       * 
120       */ 
121     init : function()
122     {
123          
124         var items = [];
125         this.items.forEach(function(i) {
126             items.push(i);
127         });
128         // remove items.
129         this.listeners = this.listeners || {}; 
130         this.items = [];
131          
132         // do we need to call 'beforeInit here?'
133          
134         // handle include?
135         //if ((this.xtype == 'Include')) {
136         //    o = this.pre_registry[cls];
137         //}
138         var isSeed = typeof(Seed) != 'undefined';
139          
140         // xtype= Gtk.Menu ?? what about c_new stuff?
141         if (XObject.debug) print("init: typeof(xtype): "  + typeof(this.xtype));
142         if (!this.el && typeof(this.xtype) == 'function') {
143             if (XObject.debug) print("func?"  + XObject.keys(this.config).join(','));
144             this.el = this.xtype(this.config);
145            
146         }
147         if (!this.el && typeof(this.xtype) == 'object') {
148             if (XObject.debug) print("obj?"  + XObject.keys(this.config).join(','));
149             this.el = new (this.xtype)(this.config);
150       
151         }
152         //print(this.el);
153         if (!this.el && this.xns) {
154             
155             var NS = imports.gi[this.xns];
156             if (!NS) {
157                 Seed.print('Invalid xns: ' + this.xns);
158             }
159             constructor = NS[this.xtype];
160             if (!constructor) {
161                 Seed.print('Invalid xtype: ' + this.xns + '.' + this.xtype);
162             }
163             this.el  =   isSeed ? new constructor(this.config) : new constructor();
164             
165         }
166         if (XObject.debug) print("init: typeof(el):" + typeof(this.el));
167         
168         // always overlay props..
169         // check for 'write' on object..
170         /*
171         if (typeof(XObject.writeablePropsCache[this.xtype.type]) == 'undefined') {
172                 
173             var gi = GIRepository.IRepository.get_default();
174             var ty = gi.find_by_gtype(this.xtype.type);
175             var write = [];
176             for (var i =0; i < GIRepository.object_info_get_n_properties(ty);i++) {
177                 var p =   GIRepository.object_info_get_property(ty,i);
178                 if (GIRepository.property_info_get_flags(p) & 2) {
179                     write.push(GIRepository.base_info_get_name(p));
180                 }
181             }
182             XObject.writeablePropsCache[this.xtype.type] = write;
183             print(write.join(", "));
184         }
185         
186         */
187         
188          
189         for (var i in this.config) {
190             if (i == 'type') { // problem with Gtk.Window... - not decided on a better way to handle this.
191                 continue;
192             }
193             this.el[i] = this.config[i];
194         }
195         
196         // register it!
197         //if (o.xnsid  && o.id) {
198          //   XObject.registry = XObject.registry || { };
199          //   XObject.registry[o.xnsid] = XObject.registry[o.xnsid] || {}; 
200          //   XObject.registry[o.xnsid][o.id] = this;
201         //}
202         var _this=this;
203         items.forEach(function(i) {
204             _this.addItem(i);
205         })
206             
207         
208         for (var i in this.listeners) {
209             this.addListener(i, this.listeners[i]);
210         }
211         // delete this.listeners ?
212         
213         
214         // do we need to call 'init here?'
215     },
216       
217      
218      /**
219       * @method addItem
220       * Adds an item to the object using a new XObject
221       * uses pack property to determine how to add it.
222       * @arg cfg {Object} same as XObject constructor.
223       */
224     addItem : function(o) {
225         if (typeof(o) == 'undefined') {
226             print("Invalid Item added to this!");
227             imports.console.dump(this);
228             Seed.quit();
229         }
230         // what about extended items!?!?!?
231         var item = (o.constructor == XObject) ? o : new XObject(o);
232         item.parent = this;
233         item.init();
234         //print("CTR:PROTO:" + ( item.id ? item.id : '??'));
235        // print("addItem - call init [" + item.pack.join(',') + ']');
236         if (!item.el) {
237             print("NO EL!");
238             imports.console.dump(item);
239             Seed.quit();
240         }
241         
242        
243         this.items.push(item);
244         
245         if (item.pack===false) {  // no 
246             return;
247         }
248         if (typeof(item.pack) == 'function') {
249             // parent, child
250             item.pack.apply(item, [ this , item  ]);
251             item.parent = this;
252             return;
253         }
254         var args = [];
255         var pack_m  = false;
256         if (typeof(item.pack) == 'string') {
257             var args = item.pack.split(',');
258             args.forEach(function(e, i) {
259                 if (e == 'false') { args[i] = false; return; }
260                 if (e == 'true') {  args[i] = true;  return; }
261                 if (parseInt(e) == NaN) { args[i] = parseInt(e); return; }
262             });
263             pack_m = args.shift();
264         } else {
265             pack_m = item.pack.shift();
266             args = item.pack;
267         }
268         
269         // handle error.
270         if (pack_m && typeof(this.el[pack_m]) == 'undefined') {
271             Seed.print('pack method not available : ' + this.xtype + '.' +  pack_m);
272             return;
273         }
274         
275         
276         //Seed.print('Pack ' + this.el + '.'+ pack_m + '(' + item.el + ')');
277
278         args.unshift(item.el);
279         if (XObject.debug) print('[' + args.join(',') +']');
280         //Seed.print('args: ' + args.length);
281         if (pack_m) {
282             this.el[pack_m].apply(this.el, args);
283         }
284         
285        
286         
287     },
288     /**
289       * @method addListener
290       * Connects a method to a signal. (gjs/Seed aware)
291       * 
292       * @arg sig  {String} name of signal
293       * @arg fn  {Function} handler.
294       */
295     addListener  : function(sig, fn) 
296     {
297  
298         if (XObject.debug) Seed.print("Add signal " + sig);
299  
300         var _li = XObject.createDelegate(fn,this);
301         // private listeners that are not copied to GTk.
302         
303         if (typeof(Seed) != 'undefined') {
304           //   Seed.print(typeof(_li));
305             this.el.signal[sig].connect(_li);
306         } else {
307             this.el.connect( sig, _li);
308         }
309              
310         
311     },
312      /**
313       * @method get
314       * Finds an object in the child elements using xid of object.
315       * prefix with '.' to look up the tree.. 
316       * prefix with multiple '..' to look further up..
317       * prefix with '/' to look from the top, eg. '^LeftTree.model'
318       * 
319       * @arg name  {String} name of signal
320       * @return   {XObject|false} the object if found.
321       */
322     get : function(xid)
323     {
324         var ret=  false;
325         var oid = '' + xid;
326         if (!xid.length) {
327             throw {
328                 name: "ArgumentError", 
329                 message : "ID not found : empty id"
330             }
331         }
332         
333         if (xid[0] == '.') {
334             return this.parent.get(xid.substring(1));
335         }
336         if (xid[0] == '/') {
337             if (typeof(XObject.cache[xid]) != 'undefined') {
338                 return XObject.cache[xid]; 
339             }
340             var e = this;
341             while (e.parent) {
342                 e = e.parent;
343             }
344             try {
345                 ret = e.get(xid.substring(1));
346             } catch (ex) { }
347             
348             if (!ret) {
349                 throw {
350                     name: "ArgumentError", 
351                     message : "ID not found : " + oid
352                 }
353             }
354             XObject.cache[xid] = ret;
355             return XObject.cache[xid];
356         }
357         var child = false;
358         
359         if (xid.indexOf('.') > -1) {
360             child = xid.split('.');
361             xid = child.shift();
362             child = child.join('.');
363         }
364         
365         this.items.forEach(function(ch) {
366             if (ret) {
367                 return;
368             }
369             if (ch.id == xid) {
370                 ret = ch;
371             }
372         })
373         if (ret) {
374             try {
375                 return child === false ? ret : ret.get(child);
376             } catch (ex) {
377                 throw {
378                     name: "ArgumentError", 
379                     message : "ID not found : " + oid
380                 }
381             }
382             
383         }
384         // iterate children.
385         var _this = this;
386         this.items.forEach(function(ch) {
387             if (ret) {
388                 return;
389             }
390             if (!ch.get) {
391                 print("invalid item...");
392                 imports.console.dump(_this);
393                 Seed.quit();
394             }
395             try {
396                 ret = ch.get(xid);
397             } catch (ex) { }
398             
399             
400         });
401         if (!ret) {
402             throw {
403                 name: "ArgumentError", 
404                 message : "ID not found : " + oid
405             }
406         }
407         try {
408             return child === false ? ret : ret.get(child);
409         } catch (ex) {
410             throw {
411                 name: "ArgumentError", 
412                 message : "ID not found : " + oid
413             }
414         }
415     }
416       
417       
418
419          
420      
421 /**
422  * Copies all the properties of config to obj.
423  *
424  * Pretty much the same as JQuery/Prototype..
425  * @param {Object} obj The receiver of the properties
426  * @param {Object} config The source of the properties
427  * @param {Object} defaults A different object that will also be applied for default values
428  * @return {Object} returns obj
429  * @member XObject extend
430  */
431
432
433 XObject.extend = function(o, c, defaults){
434     if(defaults){
435         // no "this" reference for friendly out of scope calls
436         XObject.extend(o, defaults);
437     }
438     if(o && c && typeof c == 'object'){
439         for(var p in c){
440             o[p] = c[p];
441         }
442     }
443     return o;
444 };
445
446 XObject.extend(XObject,
447 {
448      
449     /**
450      * @property {Boolean} debug XObject  debugging.  - set to true to debug.
451      * 
452      */
453     debug : false,
454     /**
455      * @property {Object} cache - cache of object ids
456      * 
457      */
458     cache: { },
459     
460     /**
461      * Copies all the properties of config to obj, if the do not exist.
462      * @param {Object} obj The receiver of the properties
463      * @param {Object} config The source of the properties
464      * @return {Object} returns obj
465      * @member Object extendIf
466      */
467
468
469     extendIf : function(o, c){
470
471         if(!o || !c || typeof c != 'object'){
472             return o;
473         }
474         for(var p in c){
475             if (typeof(o[p]) != 'undefined') {
476                 continue;
477             }
478             o[p] = c[p];
479         }
480         return o;
481     },
482
483  
484
485     /**
486      * Extends one class with another class and optionally overrides members with the passed literal. This class
487      * also adds the function "override()" to the class that can be used to override
488      * members on an instance.
489      *
490      * usage:
491      * MyObject = Object.define(
492      *     function(...) {
493      *          ....
494      *     },
495      *     parentClass, // or Object
496      *     {
497      *        ... methods and properties.
498      *     }
499      * });
500      * @param {Function} constructor The class inheriting the functionality
501      * @param {Object} superclass The class being extended
502      * @param {Object} overrides (optional) A literal with members
503      * @return {Function} constructor (eg. class
504      * @method define
505      */
506     define : function(){
507         // inline overrides
508         var io = function(o){
509             for(var m in o){
510                 this[m] = o[m];
511             }
512         };
513         return function(constructor, parentClass, overrides) {
514             if (typeof(parentClass) == 'undefined') {
515                 print("XObject.define: Missing parentClass: when applying: " );
516                 print(new String(constructor));
517                 Seed.quit(); 
518             }
519             if (typeof(parentClass.prototype) == 'undefined') {
520                 print("Missing protype: when applying: " );
521                 print(new String(constructor));
522                 print(new String(parentClass));
523                 Seed.quit(); 
524             }
525             var F = function(){};
526             var sbp;
527             var spp = parentClass.prototype;
528             
529             F.prototype = spp;
530             sbp = constructor.prototype = new F();
531             sbp.constructor=constructor;
532             constructor.superclass=spp;
533
534             // extends Object.
535             if(spp.constructor == Object.prototype.constructor){
536                 spp.constructor=parentClass;
537             }
538             
539             constructor.override = function(o){
540                 Object.extend(constructor.prototype, o);
541             };
542             sbp.override = io;
543             XObject.extend(constructor.prototype, overrides);
544             return constructor;
545         };
546     }(),
547
548          
549     /**
550      * returns a list of keys of the object.
551      * @param {Object} obj object to inspect
552      * @return {Array} returns list of kyes
553      * @member XObject keys
554      */
555     keys : function(o)
556     {
557         var ret = [];
558         for(var i in o) {
559             ret.push(i);
560         }
561         return ret;
562     },
563       
564     /**
565      * @member XObject createDelegate
566      * creates a delage metdhod
567      * @param {Function} method to wrap
568      * @param {Object} scope 
569      * @param {Array} args to add
570      * @param {Boolean|Number} append arguments or replace after N arguments.
571      * @return {Function} returns the delegate
572      */
573
574     createDelegate : function(method, obj, args, appendArgs){
575         
576         return function() {
577             var callArgs = args || arguments;
578             if(appendArgs === true){
579                 callArgs = Array.prototype.slice.call(arguments, 0);
580                 callArgs = callArgs.concat(args);
581             }else if(typeof appendArgs == "number"){
582                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
583                     var applyArgs = [appendArgs, 0].concat(args); // create method call params
584                     Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
585                 }
586                 return method.apply(obj || window, callArgs);
587             };
588     }
589     
590 });