Mercurial > MadButterfly
annotate inkscape/firefox/content/madbuilder.html @ 371:3d21115297ba
Add textmenu template
author | wycc |
---|---|
date | Tue, 17 Mar 2009 08:31:04 +0800 |
parents | e21e9447f545 |
children | 7d244a85dd68 |
rev | line source |
---|---|
288 | 1 <html> |
2 <head> | |
352 | 3 <link rel="stylesheet" type="text/css" href="tree_component.css" /> |
364
a373b4743e63
Add file dialog to add a new scene file into the project.
wycc
parents:
361
diff
changeset
|
4 <link type="text/css" href="css/smoothness/jquery-ui-1.7.custom.css" rel="stylesheet" /> |
352 | 5 <script language="javascript" src="css.js"></script> |
288 | 6 <script language="javascript" src="jquery-1.3.1.js"></script> |
7 <script language="javascript" src="jqXMLUtils.js"></script> | |
8 <script language="javascript" src="jqSOAPClient.js"></script> | |
352 | 9 <script language="javascript" src="tree_component.js"></script> |
364
a373b4743e63
Add file dialog to add a new scene file into the project.
wycc
parents:
361
diff
changeset
|
10 <script type="text/javascript" src="jquery-ui-1.7.custom.min.js"></script> |
357 | 11 <script type="text/javascript" src="jquery.simplemodal-1.2.3.pack.js"></script> |
367 | 12 <script type="text/javascript" src="wizard.js"></script> |
352 | 13 |
288 | 14 <style type="text/css"> |
15 .normal { | |
16 background-color:write | |
17 } | |
18 .active { | |
19 background-color: yellow | |
20 } | |
21 a.button { | |
352 | 22 background: transparent url('bg_button_a.gif') no-repeat scroll top right; |
23 color : #444 ; | |
288 | 24 display : block ; |
25 float : left ; | |
26 font : normal 12px arial, sans-serif ; | |
27 height : 24px; | |
28 margin-right : 6px; | |
29 padding-right : 18px; | |
30 text-decoration : none ; | |
31 } | |
32 a.button span { | |
352 | 33 background : transparent url('bg_button_span.gif' ) no-repeat ; |
288 | 34 display : block ; |
352 | 35 line- height : 14px; |
36 padding : 5px 0 5px 18px; | |
288 | 37 } |
352 | 38 a.button:active { |
39 background-position: bottom right; | |
40 color: blue; | |
41 outline: none; /* hide dotted outline in Firefox */ | |
42 } | |
43 | |
44 a.button:active span { | |
45 background-position: bottom left; | |
46 color: blue; | |
47 padding: 6px 0 4px 18px; /* push text down 1px */ | |
48 } | |
288 | 49 </style> |
50 </head> | |
51 <body> | |
52 <div id='frame' width=800 height=200> | |
53 </div> | |
54 | |
55 <div id='btns'> | |
352 | 56 <br/> |
288 | 57 <a class='button' href='#'> <span id='Jump' onClick='onButtonClick(this)'>Jump</span></a> |
58 <a class='button' href='#'> <span id='InsertKey' onClick='onButtonClick(this)'>Insert</span></a> | |
59 <a class='button' href='#'> <span id='ExtendScene' onClick='onButtonClick(this)'>Extend</span></a> | |
60 <a class='button' href='#'> <span id='DeleteScene' onClick='onButtonClick(this)'>Delete</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> | |
352 | 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> | |
365
6adb28388132
Add capability to add new scene and source into the project
wycc
parents:
364
diff
changeset
|
65 <a class='button' href='#'> <span id='Save' onClick='onButtonClick(this)'>Save</span></a> |
367 | 66 <a class='button' href='#'> <span id='Wizard' onClick='wizard.execute()'>Wizard</span></a> |
288 | 67 <br/> |
68 <br/> | |
69 </div> | |
352 | 70 <table> |
361
8c4456190d9a
Add text editor support to edit C source file inside the MadBuilder
wycc
parents:
357
diff
changeset
|
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> |
352 | 72 </table> |
364
a373b4743e63
Add file dialog to add a new scene file into the project.
wycc
parents:
361
diff
changeset
|
73 <div id='filedialog'></div> |
367 | 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> | |
371 | 80 <a href='#' onClick="wizard.step1_cb('textmenu')"><li> Text only menu </li></a> |
367 | 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> | |
371 | 90 <a class 'buttopn' href='#'><span onClick='wizard.step2_cb()'>Next</span></a> |
367 | 91 </div> |
92 <div id='wizard_step3'> | |
371 | 93 Generating files<br> |
367 | 94 </div> |
95 | |
288 | 96 <script type="text/javascript" src="inkscape.js" > |
97 </script> | |
98 </body> | |
99 </html> |