2011-01-23 21:23:53 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2011-01-24 20:11:19 +00:00
|
|
|
<link href="gui.css" media="screen" rel="stylesheet" type="text/css" />
|
2011-01-24 02:59:29 +00:00
|
|
|
<link href="demo.css" media="screen" rel="stylesheet" type="text/css" />
|
2011-01-25 07:43:32 +00:00
|
|
|
<script type="text/javascript" src="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.js"></script>
|
2011-01-24 22:08:48 +00:00
|
|
|
|
|
|
|
<script type="text/javascript" src="gui.js"></script>
|
2011-01-24 00:15:04 +00:00
|
|
|
<script type="text/javascript" src="controller.js"></script>
|
2011-01-24 19:40:07 +00:00
|
|
|
<script type="text/javascript" src="controller.string.js"></script>
|
|
|
|
<script type="text/javascript" src="controller.number.js"></script>
|
|
|
|
<script type="text/javascript" src="controller.boolean.js"></script>
|
|
|
|
<script type="text/javascript" src="controller.function.js"></script>
|
2011-01-24 10:36:57 +00:00
|
|
|
<script id="demo" type="text/javascript">
|
|
|
|
var controllableObject =
|
2011-01-24 02:59:29 +00:00
|
|
|
{
|
|
|
|
numberProperty: 20,
|
|
|
|
constrainedNum: 0,
|
|
|
|
textProperty: "a string",
|
2011-01-24 21:22:09 +00:00
|
|
|
anotherTextProperty: "another string",
|
2011-01-24 02:59:29 +00:00
|
|
|
booleanProperty: false,
|
2011-01-24 21:21:21 +00:00
|
|
|
anotherBooleanProperty: false,
|
2011-01-24 02:59:29 +00:00
|
|
|
functionProperty: function() {
|
|
|
|
alert("I am a function!");
|
|
|
|
}
|
|
|
|
};
|
2011-01-23 21:39:07 +00:00
|
|
|
|
2011-01-23 22:35:19 +00:00
|
|
|
window.onload = function() {
|
|
|
|
|
2011-01-25 07:43:32 +00:00
|
|
|
prettyPrint();
|
2011-01-24 10:36:57 +00:00
|
|
|
|
2011-01-24 02:59:29 +00:00
|
|
|
GUI.start();
|
|
|
|
|
|
|
|
// Creates a number box
|
|
|
|
GUI.add(controllableObject, "numberProperty");
|
|
|
|
|
|
|
|
// Creates a slider (min, max)
|
2011-01-24 10:36:57 +00:00
|
|
|
GUI.add(controllableObject, "constrainedNum", -100, 100)
|
2011-01-24 02:59:29 +00:00
|
|
|
|
|
|
|
// Creates a text field
|
|
|
|
GUI.add(controllableObject, "textProperty");
|
|
|
|
|
|
|
|
// Creates a checkbox
|
|
|
|
GUI.add(controllableObject, "booleanProperty");
|
|
|
|
|
|
|
|
// Creates a button
|
2011-01-25 05:31:20 +00:00
|
|
|
GUI.add(controllableObject, "functionProperty")
|
|
|
|
.setName("Fire a Function");
|
2011-01-23 22:35:19 +00:00
|
|
|
|
2011-01-24 10:36:57 +00:00
|
|
|
};
|
2011-01-23 21:23:53 +00:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2011-01-24 10:36:57 +00:00
|
|
|
<pre id="demo-pre" class="prettyprint">
|
|
|
|
var controllableObject =
|
|
|
|
{
|
|
|
|
numberProperty: 20,
|
|
|
|
constrainedNum: 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)
|
2011-01-25 05:31:20 +00:00
|
|
|
GUI.add(controllableObject, "constrainedNum", -100, 100, 0);
|
2011-01-24 10:36:57 +00:00
|
|
|
|
|
|
|
// Creates a text field
|
|
|
|
GUI.add(controllableObject, "textProperty");
|
|
|
|
|
|
|
|
// Creates a checkbox
|
|
|
|
GUI.add(controllableObject, "booleanProperty");
|
|
|
|
|
|
|
|
// Creates a button
|
2011-01-25 05:31:20 +00:00
|
|
|
GUI.add(controllableObject, "functionProperty")
|
|
|
|
.setName("Fire a Function");
|
2011-01-24 10:36:57 +00:00
|
|
|
|
|
|
|
};
|
2011-01-24 02:59:29 +00:00
|
|
|
</pre>
|
2011-01-23 21:23:53 +00:00
|
|
|
</body>
|
|
|
|
</html>
|