README.txt
[app.Builder.js] / README.txt
1 App Builder
2
3 This is a Seed based application builder.. - currently basically a prototype..
4
5
6 The idea is that it can build applications both web based (using roojs) and Desktop based using Gtk
7 and the gobject introspection bindings.
8
9 It's kind of like Glade on steroids..
10
11 ----------------------------------------------------
12 Usage:
13
14 seed builder_run.js
15
16 -> create a project
17 -> add a folder to the project
18 -> add a file to the project..
19 Files are JSON data files at present.. 
20
21 -----------------------------------------------------
22 Where it is..
23
24 * basic builder app runs - you can build a tree of elements making up a interface for roo and gtk.
25 * listeners are  created correctly.
26 * listeners with gtk prototypes
27 * Gtk properties that are enums - now show a combo selector..
28
29 -----------------------------------------------------
30 TODO
31
32 * packing - gather from methods to find out which match..
33 * order of palete needs fixing.
34 * support user functions/properties..
35 * adding a file does not display on project tree straight awya..
36 * calculate mouseover for rendered view of Gtk preview.
37 * create output to JS ...
38 * templates for elements... - eg. defaults for classic elements.
39 * sort out add heirachy for Gtk..
40 * Project Tree needs to work perhaps like a left hand popout.
41 * make heirachy editor...
42 * use application to write itself...
43 * Help view - load docs..
44
45 -----------------------------------------------------
46 Concepts
47
48 Basically both Roo and JS are built using a tree of elements (tagged with xtype/xns)
49 sub elements always go in the items array..
50 we have some special properties of elements, eg.
51
52 *prop (a property of the parent)
53 xtype (element type) eg. Window / Button etc..
54 |xns  (namespace) = eg. Gtk/Roo etc.
55
56 |**** anything starting with a pipe is raw data field rather than quoted..
57
58
59 each element can have a property listeners which is where the listeners go...
60
61