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') || (typeof(cfg[i]) == 'function')) {
62             continue;
63         }
64         // these properties are not copied to cfg.
65         if (i == 'pack' ||
66                 i == 'id' ||
67                 i == 'xtype' ||
68                 i == 'xdebug' ||
69                 i == 'xns') {
70             continue;
71         }
72         
73         
74         this.config[i] = cfg[i];
75     }
76     this.items = this.items || [];
77     // pack can be false!
78     this.pack = typeof(this.pack) == 'undefined' ? ['add'] : this.pack;
79     
80     
81 }
82
83
84
85 XObject.prototype = {
86     /**
87      * @property el {GObject} the Gtk / etc. element.
88      */
89     el : false, 
90     /*
91      * @property items {Array} list of sub elements
92      */
93     /**
94      * @property parent {XObject} parent Element
95      */
96      
97      /**
98      * @property config {Object} the construction configuration.
99      */
100      /**
101       * @method init
102       * Initializes the Element (el) hooks up all the listeners
103       * and packs the children.
104       * you can override this, in child objects, then 
105       * do this to do thi initaliztion.
106       * 
107       * XObject.prototype.init.call(this); 
108       * 
109       */ 
110     init : function()
111     {
112         var cfg = this.config;
113       
114         var items = [];
115         this.items.forEach(function(i)) {
116             items.push(i);
117         };
118         // remove items.
119         this.listeners = this.listeners || {}; 
120         this.items = [];
121          
122         // do we need to call 'beforeInit here?'
123          
124         // handle include?
125         //if ((this.xtype == 'Include')) {
126         //    o = this.pre_registry[cls];
127         //}
128         var isSeed = typeof(Seed) != 'undefined';
129          
130         // xtype= Gtk.Menu ?? what about c_new stuff?
131         print("init: typeof(xtype): "  + typeof(this.xtype));
132         if (!this.el && typeof(this.xtype) == 'function') {
133             print("func?"  + XObject.keys(o).join(','));
134             this.el = this.xtype(o);
135         }
136         if (!this.el && typeof(this.xtype) == 'object') {
137             print("obj?"  + XObject.keys(o).join(','));
138             this.el = new (this.xtype)(o);
139         }
140         //print(this.el);
141         if (!this.el && o.xns) {
142             
143             var NS = imports.gi[o.xns];
144             if (!NS) {
145                 Seed.print('Invalid xns: ' + o.xns);
146             }
147             constructor = NS[o.xtype];
148             if (!constructor) {
149                 Seed.print('Invalid xtype: ' + o.xns + '.' + o.xtype);
150             }
151             this.el  =   isSeed ? new constructor(o) : new constructor();
152             
153         }
154         print("init: typeof(el):" + typeof(this.el));
155         
156         // always overlay props..
157         // check for 'write' on object..
158         /*
159         if (typeof(XObject.writeablePropsCache[this.xtype.type]) == 'undefined') {
160                 
161             var gi = GIRepository.IRepository.get_default();
162             var ty = gi.find_by_gtype(this.xtype.type);
163             var write = [];
164             for (var i =0; i < GIRepository.object_info_get_n_properties(ty);i++) {
165                 var p =   GIRepository.object_info_get_property(ty,i);
166                 if (GIRepository.property_info_get_flags(p) & 2) {
167                     write.push(GIRepository.base_info_get_name(p));
168                 }
169             }
170             XObject.writeablePropsCache[this.xtype.type] = write;
171             print(write.join(", "));
172         }
173         
174         */
175         
176         for (var i in o) {
177             // only write to writable properties
178           //  if (XObject.writeablePropsCache[this.xtype.type].indexOf(i) < 0) {
179           //      continue;
180            // }
181             this.el[i] = o[i];
182         }
183         // register it!
184         //if (o.xnsid  && o.id) {
185          //   XObject.registry = XObject.registry || { };
186          //   XObject.registry[o.xnsid] = XObject.registry[o.xnsid] || {}; 
187          //   XObject.registry[o.xnsid][o.id] = this;
188         //}
189         var _this=this;
190         cfg.items.forEach(function(i) {
191             _this.addItem(i);
192         })
193             
194         
195         for (var i in this.listeners) {
196             this.addListener(i, this.listeners[i]);
197         }
198         // delete this.listeners ?
199         
200         
201         // do we need to call 'init here?'
202     },
203       
204      
205      /**
206       * @method addItem
207       * Adds an item to the object using a new XObject
208       * uses pack property to determine how to add it.
209       * @arg cfg {Object} same as XObject constructor.
210       */
211     addItem : function(o) {
212         if (typeof(o) == 'undefined') {
213             print("Invalid Item added to this!");
214             imports.console.dump(this);
215             Seed.quit();
216            }
217         
218         var item = (o.constructor == XObject) ? o : new XObject(o);
219        
220         item.init();
221         //print("CTR:PROTO:" + ( item.id ? item.id : '??'));
222        // print("addItem - call init [" + item.pack.join(',') + ']');
223         if (!item.el) {
224             print("NO EL!");
225             imports.console.dump(item);
226             Seed.quit();
227         }
228         
229         item.parent = this;
230         this.items.push(item);
231         
232         if (item.pack===false) {  // no 
233             return;
234         }
235         if (typeof(item.pack) == 'function') {
236             // parent, child
237             item.pack.apply(o, [ o , o.items[i] ]);
238             item.parent = this;
239             return;
240         }
241         var args = [];
242         var pack_m  = false;
243         if (typeof(item.pack) == 'string') {
244             pack_m = item.pack;
245         } else {
246             pack_m = item.pack.shift();
247             args = item.pack;
248         }
249         
250         // handle error.
251         if (pack_m && typeof(this.el[pack_m]) == 'undefined') {
252             Seed.print('pack method not available : ' + this.xtype + '.' +  pack_m);
253             return;
254         }
255         
256         
257         //Seed.print('Pack ' + this.el + '.'+ pack_m + '(' + item.el + ')');
258
259         args.unshift(item.el);
260         print('[' + args.join(',') +']');
261         //Seed.print('args: ' + args.length);
262         if (pack_m) {
263             this.el[pack_m].apply(this.el, args);
264         }
265         
266        
267         
268     },
269     /**
270       * @method addListener
271       * Connects a method to a signal. (gjs/Seed aware)
272       * 
273       * @arg sig  {String} name of signal
274       * @arg fn  {Function} handler.
275       */
276     addListener  : function(sig, fn) 
277     {
278  
279         Seed.print("Add signal " + sig);
280  
281         var _li = XObject.createDelegate(fn,this);
282         // private listeners that are not copied to GTk.
283         
284         if (typeof(Seed) != 'undefined') {
285           //   Seed.print(typeof(_li));
286             this.el.signal[sig].connect(_li);
287         } else {
288             this.el.connect( sig, _li);
289         }
290              
291         
292     },
293      /**
294       * @method get
295       * Finds an object in the child elements using xid of object.
296       * prefix with '.' to look up the tree.. multiple '..' to look further up..
297       * 
298       * @arg name  {String} name of signal
299       * @return   {XObject|false} the object if found.
300       */
301     get : function(xid)
302     {
303         var ret=  false;
304         if (xid[0] == '.') {
305             return this.parent.get(xid.substring(1));
306         }
307         
308         
309         this.items.forEach(function(ch) {
310             if (ch.id == xid) {
311                 ret = ch;
312                 return true;
313             }
314         })
315         if (ret) {
316             return ret;
317         }
318         // iterate children.
319         this.items.forEach(function(ch) {
320             ret = ch.get(xid);
321             if (ret) {
322                 return true;
323             }
324         })
325         return ret;
326     }
327       
328       
329
330          
331
332 XObject.writeablePropsCache = { }; 
333          
334 /**
335  * Copies all the properties of config to obj.
336  *
337  * Pretty much the same as JQuery/Prototype..
338  * @param {Object} obj The receiver of the properties
339  * @param {Object} config The source of the properties
340  * @param {Object} defaults A different object that will also be applied for default values
341  * @return {Object} returns obj
342  * @member XObject extend
343  */
344
345
346 XObject.extend = function(o, c, defaults){
347     if(defaults){
348         // no "this" reference for friendly out of scope calls
349         XObject.extend(o, defaults);
350     }
351     if(o && c && typeof c == 'object'){
352         for(var p in c){
353             o[p] = c[p];
354         }
355     }
356     return o;
357 };
358
359 XObject.extend(XObject,
360 {
361     /**
362      * Copies all the properties of config to obj, if the do not exist.
363      * @param {Object} obj The receiver of the properties
364      * @param {Object} config The source of the properties
365      * @return {Object} returns obj
366      * @member Object extendIf
367      */
368
369
370     extendIf : function(o, c){
371
372         if(!o || !c || typeof c != 'object'){
373             return o;
374         }
375         for(var p in c){
376             if (typeof(o[p]) != 'undefined') {
377                 continue;
378             }
379             o[p] = c[p];
380         }
381         return o;
382     },
383
384  
385
386     /**
387      * Extends one class with another class and optionally overrides members with the passed literal. This class
388      * also adds the function "override()" to the class that can be used to override
389      * members on an instance.
390      *
391      * usage:
392      * MyObject = Object.define(
393      *     function(...) {
394      *          ....
395      *     },
396      *     parentClass, // or Object
397      *     {
398      *        ... methods and properties.
399      *     }
400      * });
401      * @param {Function} constructor The class inheriting the functionality
402      * @param {Object} superclass The class being extended
403      * @param {Object} overrides (optional) A literal with members
404      * @return {Function} constructor (eg. class
405      * @method define
406      */
407     define : function(){
408         // inline overrides
409         var io = function(o){
410             for(var m in o){
411                 this[m] = o[m];
412             }
413         };
414         return function(constructor, parentClass, overrides) {
415             if (typeof(parentClass) == 'undefined') {
416                 print("XObject.define: Missing parentClass: when applying: " );
417                 print(new String(constructor));
418                 Seed.quit(); 
419             }
420             if (typeof(parentClass.prototype) == 'undefined') {
421                 print("Missing protype: when applying: " );
422                 print(new String(constructor));
423                 print(new String(parentClass));
424                 Seed.quit(); 
425             }
426             var F = function(){};
427             var sbp;
428             var spp = parentClass.prototype;
429             
430             F.prototype = spp;
431             sbp = constructor.prototype = new F();
432             sbp.constructor=constructor;
433             constructor.superclass=spp;
434
435             // extends Object.
436             if(spp.constructor == Object.prototype.constructor){
437                 spp.constructor=parentClass;
438             }
439             
440             constructor.override = function(o){
441                 Object.extend(constructor.prototype, o);
442             };
443             sbp.override = io;
444             XObject.extend(constructor.prototype, overrides);
445             return constructor;
446         };
447     }(),
448
449          
450     /**
451      * returns a list of keys of the object.
452      * @param {Object} obj object to inspect
453      * @return {Array} returns list of kyes
454      * @member XObject keys
455      */
456     keys : function(o)
457     {
458         var ret = [];
459         for(var i in o) {
460             ret.push(i);
461         }
462         return ret;
463     },
464       
465     /**
466      * @member XObject createDelegate
467      * creates a delage metdhod
468      * @param {Function} method to wrap
469      * @param {Object} scope 
470      * @param {Array} args to add
471      * @param {Boolean|Number} append arguments or replace after N arguments.
472      * @return {Function} returns the delegate
473      */
474
475     createDelegate : function(method, obj, args, appendArgs){
476         
477         return function() {
478             var callArgs = args || arguments;
479             if(appendArgs === true){
480                 callArgs = Array.prototype.slice.call(arguments, 0);
481                 callArgs = callArgs.concat(args);
482             }else if(typeof appendArgs == "number"){
483                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
484                     var applyArgs = [appendArgs, 0].concat(args); // create method call params
485                     Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
486                 }
487                 return method.apply(obj || window, callArgs);
488             };
489     }
490     
491 });