Mercurial > MadButterfly
comparison inkscape/firefox/content/madbuilder.html @ 367:e21e9447f545
Add wizard. We still need to add the template files.
author | wycc |
---|---|
date | Sun, 15 Mar 2009 17:17:06 +0800 |
parents | 6adb28388132 |
children | 3d21115297ba |
comparison
equal
deleted
inserted
replaced
366:912d05129b4f | 367:e21e9447f545 |
---|---|
7 <script language="javascript" src="jqXMLUtils.js"></script> | 7 <script language="javascript" src="jqXMLUtils.js"></script> |
8 <script language="javascript" src="jqSOAPClient.js"></script> | 8 <script language="javascript" src="jqSOAPClient.js"></script> |
9 <script language="javascript" src="tree_component.js"></script> | 9 <script language="javascript" src="tree_component.js"></script> |
10 <script type="text/javascript" src="jquery-ui-1.7.custom.min.js"></script> | 10 <script type="text/javascript" src="jquery-ui-1.7.custom.min.js"></script> |
11 <script type="text/javascript" src="jquery.simplemodal-1.2.3.pack.js"></script> | 11 <script type="text/javascript" src="jquery.simplemodal-1.2.3.pack.js"></script> |
12 | 12 <script type="text/javascript" src="wizard.js"></script> |
13 | 13 |
14 <style type="text/css"> | 14 <style type="text/css"> |
15 .normal { | 15 .normal { |
16 background-color:write | 16 background-color:write |
17 } | 17 } |
61 <a class='button' href='#'> <span id='MakeSymbol' onClick='onButtonClick(this)'>Make Symbol</span></a> | 61 <a class='button' href='#'> <span id='MakeSymbol' onClick='onButtonClick(this)'>Make Symbol</span></a> |
62 <a class='button' href='#'> <span id='MakeButton' onClick='onButtonClick(this)'>make Button</span></a> | 62 <a class='button' href='#'> <span id='MakeButton' onClick='onButtonClick(this)'>make Button</span></a> |
63 <a class='button' href='#'> <span id='EditAnimation' onClick='onButtonClick(this)'>Edit Animation</span></a> | 63 <a class='button' href='#'> <span id='EditAnimation' onClick='onButtonClick(this)'>Edit Animation</span></a> |
64 <a class='button' href='#'> <span id='Test' onClick='onButtonClick(this)'>Test</span></a> | 64 <a class='button' href='#'> <span id='Test' onClick='onButtonClick(this)'>Test</span></a> |
65 <a class='button' href='#'> <span id='Save' onClick='onButtonClick(this)'>Save</span></a> | 65 <a class='button' href='#'> <span id='Save' onClick='onButtonClick(this)'>Save</span></a> |
66 <a class='button' href='#'> <span id='Wizard' onClick='wizard.execute()'>Wizard</span></a> | |
66 <br/> | 67 <br/> |
67 <br/> | 68 <br/> |
68 </div> | 69 </div> |
69 <table> | 70 <table> |
70 <tr><td width=200 height=700 valign=top><div id='filelist' valign=top></div></td><td width=700 height=700 valign=top> <div id='inkscape'></div><div id='editor'></div></td></tr> | 71 <tr><td width=200 height=700 valign=top><div id='filelist' valign=top></div></td><td width=700 height=700 valign=top> <div id='inkscape'></div><div id='editor'></div></td></tr> |
71 </table> | 72 </table> |
72 <div id='filedialog'></div> | 73 <div id='filedialog'></div> |
74 | |
75 <div id='wizard'> | |
76 The name of the project<br> | |
77 <input type=text id='wizardname' value='default'/><br> | |
78 Please select the type of applications.<br> | |
79 <ul> | |
80 <a href='#' onClick="wizard.step1_cb('text')"><li> Text only menu </li></a> | |
81 <a href='#' onClick="wizard.step1_cb('preview')"><li> Text with preview menu </li></a> | |
82 </ul> | |
83 | |
84 </div> | |
85 | |
86 <div id='wizard_step2'> | |
87 Please select the output path<br> | |
88 <input id='outputpath' type=file value='/tmp' /><br> | |
89 <a class 'buttopn' href='#'><span onClick='wizard.step1_cb()'>Prev</span></a> | |
90 <a class 'buttopn' href='#'><span onClick='wizard.step3_cb()'>Next</span></a> | |
91 </div> | |
92 <div id='wizard_step3'> | |
93 The step 3 is not implemented yet | |
94 </div> | |
95 | |
73 <script type="text/javascript" src="inkscape.js" > | 96 <script type="text/javascript" src="inkscape.js" > |
74 </script> | 97 </script> |
75 </body> | 98 </body> |
76 </html> | 99 </html> |