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