Lightweight controller library for JavaScript.
Go to file
2011-01-25 14:21:15 -08:00
controllers Starting on sliders. Still some kinks. 2011-01-25 02:35:45 -07:00
demo added georges svg library 2011-01-25 14:21:15 -08:00
.gitignore Added gitignore for textmate project 2011-01-23 13:30:07 -08:00
gui-bare.css Added gui-bare.css and split controllers into seperate files. 2011-01-24 12:38:52 -07:00
gui.css changed around folder structure and updated the styling 2011-01-25 14:16:30 -08:00
gui.js Attempt to make text in number boxes unselectable. 2011-01-24 15:08:48 -07:00
index.html changed around folder structure and updated the styling 2011-01-25 14:16:30 -08:00
README updated README 2011-01-24 23:11:24 -08:00

GUI-DAT
=======

Usage:
------

    var controllableObject = 
    	{	
    		numberProperty: 20,
    		anotherNumberProperty: 0,
    		textProperty: "a string",
    		booleanProperty: false,
    		functionProperty: function() {
    			alert("I am a function!");
    		}
    	};

    window.onload = function() {

    	GUI.start();

    	// Creates a number box
    	GUI.add(controllableObject, "numberProperty");

    	// Creates a slider (min, max)
    	GUI.add(controllableObject, "anotherNumberProperty", -100, 100);

    	// Creates a text field
    	GUI.add(controllableObject, "textProperty");

    	// Creates a checkbox
    	GUI.add(controllableObject, "booleanProperty");

    	// Creates a button
    	GUI.add(controllableObject, "functionProperty");

    }