TCAD.toolkit = {}; TCAD.toolkit.add = function(parent, child) { parent.content.append(child.root); }; TCAD.toolkit.Box = function() { this.root = this.content = $('
'); this.root.addClass('tc-box'); this.root.appendTo('body'); }; TCAD.toolkit.Folder = function(title) { this.root = $('
', {class: 'tc-folder'}); this.content = $('
', {class: 'tc-scroll'}); this.root.append($('
', {text: title, class: 'tc-row tc-title'})); this.root.append(this.content); }; TCAD.toolkit.Button = function(title) { this.root = $('
', {class: 'tc-row tc-ctrl tc-ctrl-btn', text: title}); }; TCAD.toolkit.propLayout = function(root, name, valueEl) { root.append($('', {class: 'tc-prop-name', text: name})) .append($('
', {class: 'tc-prop-value'}) .append(valueEl)); }; TCAD.toolkit.Number = function(name) { this.root = $('
', {class: 'tc-row tc-ctrl tc-ctrl-number'}); TCAD.toolkit.propLayout(this.root, name, $('')) }; TCAD.toolkit.Text = function(name) { this.root = $('
', {class: 'tc-row tc-ctrl tc-ctrl-text'}); TCAD.toolkit.propLayout(this.root, name, $('')) }; TCAD.toolkit.Tree = function() { this.root = $('
', {class: 'tc-tree'}); }; TCAD.toolkit.Tree.prototype.set = function(data) { this.root.empty(); this._fill(this.root, data.children); }; TCAD.toolkit.Tree.prototype._fill = function(parent, data) { parent.append($('
', {text : data.name})); if (data.children !== undefined && data.children.length !== 0) { var ul = $('
    '); parent.append(ul); for (var i = 0; i < data.children.length; i++) { var li = $('
  • '); ul.append(li); var child = data.children[i]; this._fill(li, child); } } };