Guest User

Untitled

a guest
Mar 10th, 2015
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.57 KB | None | 0 0
  1. <div id="mymodule_block_home" class="block">
  2. <h4>Design Wizard!</h4>
  3. </div>
  4.  
  5.  
  6.  
  7.  
  8. <!-- feeds -->
  9. <link rel="alternate" type="application/atom+xml" title="SVG-edit General Discussion" href="http://groups.google.com/group/svg-edit/feed/atom_v1_0_msgs.xml" />
  10. <link rel="alternate" type="application/atom+xml" title="SVG-edit Updates (Issues/Fixes/Commits)" href="http://code.google.com/feeds/p/svg-edit/updates/basic" />
  11.  
  12. <!-- This surrounding div added by clong -->
  13. <div id="master_editor_container">
  14.  
  15. <div id="svg_editor">
  16.  
  17. <div id="rulers">
  18. <div id="ruler_corner"></div>
  19. <div id="ruler_x">
  20. <div>
  21. <canvas height="15"></canvas>
  22. </div>
  23. </div>
  24. <div id="ruler_y">
  25. <div>
  26. <canvas width="15"></canvas>
  27. </div>
  28. </div>
  29. </div>
  30.  
  31. <div id="workarea">
  32. <style id="styleoverrides" type="text/css" media="screen" scoped="scoped"></style>
  33. <div id="svgcanvas" style="position:relative">
  34.  
  35. </div>
  36. </div>
  37.  
  38. <div id="main_button">
  39. <div id="main_icon" class="tool_button" title="Main Menu">
  40. <span>Designer</span>
  41. <div id="logo"></div>
  42. <div class="dropdown"></div>
  43. </div>
  44.  
  45. <div id="main_menu">
  46.  
  47. <!-- File-like buttons: New, Save, Source -->
  48. <ul>
  49. <li id="tool_clear">
  50. <div></div>
  51. New Image (N)
  52. </li>
  53.  
  54. <li id="tool_open" style="display:none;">
  55. <div id="fileinputs">
  56. <div></div>
  57. </div>
  58. Open Image
  59. </li>
  60.  
  61. <li id="tool_import" style="display:none;">
  62. <div id="fileinputs_import">
  63. <div></div>
  64. </div>
  65. Import Image
  66. </li>
  67.  
  68. <li id="tool_save">
  69. <div></div>
  70. Save Image (S)
  71. </li>
  72.  
  73. <li id="tool_export">
  74. <div></div>
  75. Export
  76. </li>
  77.  
  78. <li id="tool_docprops">
  79. <div></div>
  80. Document Properties (D)
  81. </li>
  82. </ul>
  83.  
  84. <p>
  85. <!-- -->
  86. <!-- Credit goes to all those who contributed to svg-editor -->
  87. <!-- -->
  88. <!-- Removed and allowed under MIT license -->
  89. <!-- <a href="http://svg-edit.googlecode.com/" target="_blank">
  90. SVG-edit Home Page
  91. </a> -->
  92. </p>
  93.  
  94. <button id="tool_prefs_option">
  95. Editor Options
  96. </button>
  97.  
  98.  
  99. </div>
  100. </div>
  101.  
  102.  
  103.  
  104. <div id="tools_top" class="tools_panel">
  105.  
  106. <div id="editor_panel">
  107. <button type="none" id="add_design">Save Changes</button>
  108. <!-- <div class="tool_sep"></div>
  109. <div>Press "S" key to Save</div> -->
  110. <div class="tool_sep"></div>
  111. <div class="push_button" id="tool_source" title="Edit Source [U]"></div>
  112. </div>
  113.  
  114. <!-- History buttons -->
  115. <div id="history_panel">
  116. <div class="tool_sep"></div>
  117. <div class="push_button tool_button_disabled" id="tool_undo" title="Undo [Z]"></div>
  118. <div class="push_button tool_button_disabled" id="tool_redo" title="Redo [Y]"></div>
  119. </div>
  120.  
  121. <!-- Buttons when a single element is selected -->
  122. <div id="selected_panel">
  123. <div class="toolset">
  124. <div class="tool_sep"></div>
  125. <div class="push_button" id="tool_clone" title="Duplicate Element [D]"></div>
  126. <div class="push_button" id="tool_delete" title="Delete Element [Delete/Backspace]"></div>
  127. <div class="tool_sep"></div>
  128. <div class="push_button" id="tool_move_top" title="Bring to Front [ Ctrl+Shift+] ]"></div>
  129. <div class="push_button" id="tool_move_bottom" title="Send to Back [ Ctrl+Shift+[ ]"></div>
  130. <div class="tool_sep"></div>
  131.  
  132. </div>
  133.  
  134. <label id="tool_angle" title="Change rotation angle" class="toolset">
  135. <span id="angleLabel" class="icon_label"></span>
  136. <input id="angle" size="2" value="0" type="text"/>
  137. </label>
  138.  
  139. <div class="toolset" id="tool_blur" title="Change gaussian blur value">
  140. <label>
  141. <span id="blurLabel" class="icon_label"></span>
  142. <input id="blur" size="2" value="0" type="text"/>
  143. </label>
  144. <div id="blur_dropdown" class="dropdown">
  145. <button></button>
  146. <ul>
  147. <li class="special"><div id="blur_slider"></div></li>
  148. </ul>
  149. </div>
  150. </div>
  151.  
  152. <div class="dropdown toolset" id="tool_position" title="Align Element to Page">
  153. <div id="cur_position" class="icon_label"></div>
  154. <button></button>
  155. </div>
  156.  
  157. </div>
  158.  
  159. <!-- Buttons when multiple elements are selected -->
  160. <div id="multiselected_panel">
  161. <div class="tool_sep"></div>
  162. <div class="push_button" id="tool_clone_multi" title="Clone Elements [C]"></div>
  163. <div class="push_button" id="tool_delete_multi" title="Delete Selected Elements [Delete/Backspace]"></div>
  164. <div class="tool_sep"></div>
  165. <div class="push_button" id="tool_group_elements" title="Group Elements [G]"></div>
  166. <div class="push_button" id="tool_make_link_multi" title="Make (hyper)link"></div>
  167. <div class="push_button" id="tool_alignleft" title="Align Left"></div>
  168. <div class="push_button" id="tool_aligncenter" title="Align Center"></div>
  169. <div class="push_button" id="tool_alignright" title="Align Right"></div>
  170. <div class="push_button" id="tool_aligntop" title="Align Top"></div>
  171. <div class="push_button" id="tool_alignmiddle" title="Align Middle"></div>
  172. <div class="push_button" id="tool_alignbottom" title="Align Bottom"></div>
  173. <label id="tool_align_relative">
  174. <span id="relativeToLabel">relative to:</span>
  175. <select id="align_relative_to" title="Align relative to ...">
  176. <option id="selected_objects" value="selected">selected objects</option>
  177. <option id="largest_object" value="largest">largest object</option>
  178. <option id="smallest_object" value="smallest">smallest object</option>
  179. <option id="page" value="page">page</option>
  180. </select>
  181. </label>
  182. <div class="tool_sep"></div>
  183.  
  184. </div>
  185.  
  186. <div id="rect_panel">
  187. <div class="toolset">
  188. <label id="rect_width_tool" title="Change rectangle width">
  189. <span id="rwidthLabel" class="icon_label"></span>
  190. <input id="rect_width" class="attr_changer" size="3" data-attr="width"/>
  191. </label>
  192. <label id="rect_height_tool" title="Change rectangle height">
  193. <span id="rheightLabel" class="icon_label"></span>
  194. <input id="rect_height" class="attr_changer" size="3" data-attr="height"/>
  195. </label>
  196. </div>
  197. <label id="cornerRadiusLabel" title="Change Rectangle Corner Radius" class="toolset">
  198. <span class="icon_label"></span>
  199. <input id="rect_rx" size="3" value="0" type="text" data-attr="Corner Radius"/>
  200. </label>
  201. </div>
  202.  
  203. <div id="image_panel">
  204. <div class="toolset">
  205. <label><span id="iwidthLabel" class="icon_label"></span>
  206. <input id="image_width" class="attr_changer" title="Change image width" size="3" data-attr="width"/>
  207. </label>
  208. <label><span id="iheightLabel" class="icon_label"></span>
  209. <input id="image_height" class="attr_changer" title="Change image height" size="3" data-attr="height"/>
  210. </label>
  211. </div>
  212. <div class="toolset">
  213. <label id="tool_image_url">url:
  214. <input id="image_url" type="text" title="Change URL" size="35"/>
  215. </label>
  216. <label id="tool_change_image">
  217. <button id="change_image_url" style="display:none;">Change Image</button>
  218. <span id="url_notice" title="NOTE: This image cannot be embedded. It will depend on this path to be displayed"></span>
  219. </label>
  220. </div>
  221. </div>
  222.  
  223. <div id="circle_panel">
  224. <div class="toolset">
  225. <label id="tool_circle_cx">cx:
  226. <input id="circle_cx" class="attr_changer" title="Change circle's cx coordinate" size="3" data-attr="cx"/>
  227. </label>
  228. <label id="tool_circle_cy">cy:
  229. <input id="circle_cy" class="attr_changer" title="Change circle's cy coordinate" size="3" data-attr="cy"/>
  230. </label>
  231. </div>
  232. <div class="toolset">
  233. <label id="tool_circle_r">r:
  234. <input id="circle_r" class="attr_changer" title="Change circle's radius" size="3" data-attr="r"/>
  235. </label>
  236. </div>
  237. </div>
  238.  
  239. <div id="ellipse_panel">
  240. <div class="toolset">
  241. <label id="tool_ellipse_cx">cx:
  242. <input id="ellipse_cx" class="attr_changer" title="Change ellipse's cx coordinate" size="3" data-attr="cx"/>
  243. </label>
  244. <label id="tool_ellipse_cy">cy:
  245. <input id="ellipse_cy" class="attr_changer" title="Change ellipse's cy coordinate" size="3" data-attr="cy"/>
  246. </label>
  247. </div>
  248. <div class="toolset">
  249. <label id="tool_ellipse_rx">rx:
  250. <input id="ellipse_rx" class="attr_changer" title="Change ellipse's x radius" size="3" data-attr="rx"/>
  251. </label>
  252. <label id="tool_ellipse_ry">ry:
  253. <input id="ellipse_ry" class="attr_changer" title="Change ellipse's y radius" size="3" data-attr="ry"/>
  254. </label>
  255. </div>
  256. </div>
  257.  
  258. <div id="line_panel">
  259. <div class="toolset">
  260. <label id="tool_line_x1">x1:
  261. <input id="line_x1" class="attr_changer" title="Change line's starting x coordinate" size="3" data-attr="x1"/>
  262. </label>
  263. <label id="tool_line_y1">y1:
  264. <input id="line_y1" class="attr_changer" title="Change line's starting y coordinate" size="3" data-attr="y1"/>
  265. </label>
  266. </div>
  267. <div class="toolset">
  268. <label id="tool_line_x2">x2:
  269. <input id="line_x2" class="attr_changer" title="Change line's ending x coordinate" size="3" data-attr="x2"/>
  270. </label>
  271. <label id="tool_line_y2">y2:
  272. <input id="line_y2" class="attr_changer" title="Change line's ending y coordinate" size="3" data-attr="y2"/>
  273. </label>
  274. </div>
  275. </div>
  276.  
  277. <div id="text_panel">
  278. <div class="toolset">
  279. <div class="tool_button" id="tool_bold" title="Bold Text [B]"><span></span>B</div>
  280. <div class="tool_button" id="tool_italic" title="Italic Text [I]"><span></span>i</div>
  281. </div>
  282.  
  283. <div class="toolset" id="tool_font_family">
  284. <label>
  285. <!-- Font family -->
  286. <input id="font_family" type="text" title="Change Font Family" size="12"/>
  287. </label>
  288. <div id="font_family_dropdown" class="dropdown">
  289. <button></button>
  290. <ul>
  291. <li style="font-family:serif">Serif</li>
  292. <li style="font-family:sans-serif">Sans-serif</li>
  293. <li style="font-family:cursive">Cursive</li>
  294. <li style="font-family:fantasy">Fantasy</li>
  295. <li style="font-family:monospace">Monospace</li>
  296. </ul>
  297. </div>
  298. </div>
  299.  
  300. <label id="tool_font_size" title="Change Font Size">
  301. <span id="font_sizeLabel" class="icon_label"></span>
  302. <input id="font_size" size="3" value="0" type="text"/>
  303. </label>
  304.  
  305. <!-- Not visible, but still used -->
  306. <input id="text" type="text" size="35"/>
  307. </div>
  308.  
  309. <!-- formerly gsvg_panel -->
  310. <div id="container_panel">
  311. <div class="tool_sep"></div>
  312.  
  313. <!-- Add viewBox field here? -->
  314.  
  315. <label id="group_title" title="Group identification label">
  316. <span>label:</span>
  317. <input id="g_title" data-attr="title" size="10" type="text"/>
  318. </label>
  319. </div>
  320.  
  321. <div id="use_panel">
  322. <div class="push_button" id="tool_unlink_use" title="Break link to reference element (make unique)"></div>
  323. </div>
  324.  
  325. <div id="g_panel">
  326. <div class="push_button" id="tool_ungroup" title="Ungroup Elements [G]"></div>
  327. </div>
  328.  
  329. <!-- For anchor elements -->
  330. <div id="a_panel">
  331. <label id="tool_link_url" title="Set link URL (leave empty to remove)">
  332. <span id="linkLabel" class="icon_label"></span>
  333. <input id="link_url" type="text" size="35"/>
  334. </label>
  335. </div>
  336.  
  337. <div id="path_node_panel">
  338. <div class="tool_sep"></div>
  339. <div class="tool_button push_button_pressed" id="tool_node_link" title="Link Control Points"></div>
  340. <div class="tool_sep"></div>
  341. <label id="tool_node_x">x:
  342. <input id="path_node_x" class="attr_changer" title="Change node's x coordinate" size="3" data-attr="x"/>
  343. </label>
  344. <label id="tool_node_y">y:
  345. <input id="path_node_y" class="attr_changer" title="Change node's y coordinate" size="3" data-attr="y"/>
  346. </label>
  347.  
  348. <select id="seg_type" title="Change Segment type">
  349. <option id="straight_segments" selected="selected" value="4">Straight</option>
  350. <option id="curve_segments" value="6">Curve</option>
  351. </select>
  352. <div class="tool_button" id="tool_node_clone" title="Clone Node"></div>
  353. <div class="tool_button" id="tool_node_delete" title="Delete Node"></div>
  354. <div class="tool_button" id="tool_openclose_path" title="Open/close sub-path"></div>
  355. <div class="tool_button" id="tool_add_subpath" title="Add sub-path"></div>
  356. </div>
  357. </div> <!-- tools_top -->
  358. <div id="cur_context_panel">
  359.  
  360. </div>
  361.  
  362.  
  363. <div id="tools_left" class="tools_panel">
  364. <div class="tool_button" id="tool_select" title="Select Tool"></div>
  365. <div class="tool_button" id="tool_fhpath" title="Pencil Tool"></div>
  366. <div class="tool_button" id="tool_line" title="Line Tool"></div>
  367. <div class="tool_button flyout_current" id="tools_rect_show" title="Square/Rect Tool">
  368. <div class="flyout_arrow_horiz"></div>
  369. </div>
  370. <div class="tool_button flyout_current" id="tools_ellipse_show" title="Ellipse/Circle Tool">
  371. <div class="flyout_arrow_horiz"></div>
  372. </div>
  373. <div class="tool_button" id="tool_path" title="Path Tool"></div>
  374. <div class="tool_button" id="tool_text" title="Text Tool"></div>
  375.  
  376. <div style="display: none">
  377. <div id="tool_rect" title="Rectangle"></div>
  378. <div id="tool_square" title="Square"></div>
  379. <div id="tool_fhrect" title="Free-Hand Rectangle"></div>
  380. <div id="tool_ellipse" title="Ellipse"></div>
  381. <div id="tool_circle" title="Circle"></div>
  382. <div id="tool_fhellipse" title="Free-Hand Ellipse"></div>
  383. </div>
  384. </div> <!-- tools_left -->
  385.  
  386. <div id="tools_bottom" class="tools_panel">
  387.  
  388. <div id="tools_bottom_2">
  389. <div id="color_tools">
  390.  
  391. <div class="color_tool" id="tool_fill">
  392. <label class="icon_label" for="fill_color" title="Change fill color"></label>
  393. <div class="color_block">
  394. <div id="fill_bg"></div>
  395. <div id="fill_color" class="color_block"></div>
  396. </div>
  397. </div>
  398.  
  399. <div class="color_tool" id="tool_stroke">
  400. <label class="icon_label" title="Change stroke color"></label>
  401. <div class="color_block">
  402. <div id="stroke_bg"></div>
  403. <div id="stroke_color" class="color_block" title="Change stroke color"></div>
  404. </div>
  405.  
  406. <label class="stroke_label">
  407. <input id="stroke_width" title="Change stroke width by 1, shift-click to change by 0.1" size="2" value="5" type="text" data-attr="Stroke Width"/>
  408. </label>
  409.  
  410. <div id="toggle_stroke_tools" title="Show/hide more stroke tools"></div>
  411.  
  412. <label class="stroke_tool">
  413. <select id="stroke_style" title="Change stroke dash style">
  414. <option selected="selected" value="none">&#8212;</option>
  415. <option value="2,2">...</option>
  416. <option value="5,5">- -</option>
  417. <option value="5,2,2,2">- .</option>
  418. <option value="5,2,2,2,2,2">- ..</option>
  419. </select>
  420. </label>
  421.  
  422. <div class="stroke_tool dropdown" id="stroke_linejoin">
  423. <div id="cur_linejoin" title="Linejoin: Miter"></div>
  424. <button></button>
  425. </div>
  426.  
  427. <div class="stroke_tool dropdown" id="stroke_linecap">
  428. <div id="cur_linecap" title="Linecap: Butt"></div>
  429. <button></button>
  430. </div>
  431.  
  432. </div>
  433.  
  434. <div class="color_tool" id="tool_opacity" title="Change selected item opacity">
  435. <label>
  436. <span id="group_opacityLabel" class="icon_label"></span>
  437. <input id="group_opacity" size="3" value="100" type="text"/>
  438. </label>
  439. <div id="opacity_dropdown" class="dropdown">
  440. <button></button>
  441. <ul>
  442. <li>0%</li>
  443. <li>25%</li>
  444. <li>50%</li>
  445. <li>75%</li>
  446. <li>100%</li>
  447. <li class="special"><div id="opac_slider"></div></li>
  448. </ul>
  449. </div>
  450. </div>
  451. </div>
  452.  
  453. </div>
  454.  
  455. <div id="tools_bottom_3">
  456. <div id="palette_holder"><div id="palette" title="Click to change fill color, shift-click to change stroke color"></div></div>
  457. </div>
  458. <!-- MIT and Creative Commons does not require credit given -->
  459. <!-- <div id="copyright"><span id="copyrightLabel">Powered by</span> <a href="http://svg-edit.googlecode.com/" target="_blank">SVG-edit v2.6-beta</a></div> -->
  460. </div>
  461.  
  462. <div id="option_lists" class="dropdown">
  463. <ul id="linejoin_opts">
  464. <li class="tool_button current" id="linejoin_miter" title="Linejoin: Miter"></li>
  465. <li class="tool_button" id="linejoin_round" title="Linejoin: Round"></li>
  466. <li class="tool_button" id="linejoin_bevel" title="Linejoin: Bevel"></li>
  467. </ul>
  468.  
  469. <ul id="linecap_opts">
  470. <li class="tool_button current" id="linecap_butt" title="Linecap: Butt"></li>
  471. <li class="tool_button" id="linecap_square" title="Linecap: Square"></li>
  472. <li class="tool_button" id="linecap_round" title="Linecap: Round"></li>
  473. </ul>
  474.  
  475. <ul id="position_opts" class="optcols3">
  476. <li class="push_button" id="tool_posleft" title="Align Left"></li>
  477. <li class="push_button" id="tool_poscenter" title="Align Center"></li>
  478. <li class="push_button" id="tool_posright" title="Align Right"></li>
  479. <li class="push_button" id="tool_postop" title="Align Top"></li>
  480. <li class="push_button" id="tool_posmiddle" title="Align Middle"></li>
  481. <li class="push_button" id="tool_posbottom" title="Align Bottom"></li>
  482. </ul>
  483. </div>
  484.  
  485.  
  486. <!-- hidden divs -->
  487. <div id="color_picker"></div>
  488.  
  489. </div> <!-- svg_editor -->
  490.  
  491. <div id="svg_source_editor">
  492. <div class="overlay"></div>
  493. <div id="svg_source_container">
  494. <div id="tool_source_back" class="toolbar_button">
  495. <button id="tool_source_save">Apply Changes</button>
  496. <button id="tool_source_cancel">Cancel</button>
  497. </div>
  498. <div id="save_output_btns">
  499. <p id="copy_save_note">Copy the contents of this box into a text editor, then save the file with a .svg extension.</p>
  500. <button id="copy_save_done">Done</button>
  501. </div>
  502. <form>
  503. <textarea id="svg_source_textarea" spellcheck="false"></textarea>
  504. </form>
  505. </div>
  506. </div>
  507.  
  508.  
  509. <div id="svg_docprops">
  510. <div class="overlay"></div>
  511. <div id="svg_docprops_container">
  512. <div id="tool_docprops_back" class="toolbar_button">
  513. <button id="tool_docprops_save">OK</button>
  514. <button id="tool_docprops_cancel">Cancel</button>
  515. </div>
  516.  
  517.  
  518. <fieldset id="svg_docprops_docprops">
  519. <legend id="svginfo_image_props">Image Properties</legend>
  520. <label>
  521. <span id="svginfo_title">Title:</span>
  522. <input type="text" id="canvas_title"/>
  523. </label>
  524.  
  525. <fieldset id="change_resolution">
  526. <legend id="svginfo_dim">Canvas Dimensions</legend>
  527.  
  528. <label><span id="svginfo_width">width:</span> <input type="text" id="canvas_width" size="6"/></label>
  529.  
  530. <label><span id="svginfo_height">height:</span> <input type="text" id="canvas_height" size="6"/></label>
  531.  
  532. <label>
  533. <select id="resolution">
  534. <option id="selectedPredefined" selected="selected">Select predefined:</option>
  535. <option>640x480</option>
  536. <option>800x600</option>
  537. <option>1024x768</option>
  538. <option>1280x960</option>
  539. <option>1600x1200</option>
  540. <option id="fitToContent" value="content">Fit to Content</option>
  541. </select>
  542. </label>
  543. </fieldset>
  544.  
  545. <fieldset id="image_save_opts">
  546. <legend id="includedImages">Included Images</legend>
  547. <label><input type="radio" name="image_opt" value="embed" checked="checked"/> <span id="image_opt_embed">Embed data (local files)</span> </label>
  548. <label><input type="radio" name="image_opt" value="ref"/> <span id="image_opt_ref">Use file reference</span> </label>
  549. </fieldset>
  550. </fieldset>
  551.  
  552. </div>
  553. </div>
  554.  
  555. <div id="svg_prefs">
  556. <div class="overlay"></div>
  557. <div id="svg_prefs_container">
  558. <div id="tool_prefs_back" class="toolbar_button">
  559. <button id="tool_prefs_save">OK</button>
  560. <button id="tool_prefs_cancel">Cancel</button>
  561. </div>
  562.  
  563. <fieldset>
  564. <legend id="svginfo_editor_prefs">Editor Preferences</legend>
  565.  
  566. <label><span id="svginfo_lang">Language:</span>
  567. <!-- Source: http://en.wikipedia.org/wiki/Language_names -->
  568. <select id="lang_select">
  569. <option id="lang_ar" value="ar">العربية</option>
  570. <option id="lang_cs" value="cs">Čeština</option>
  571. <option id="lang_de" value="de">Deutsch</option>
  572. <option id="lang_en" value="en" selected="selected">English</option>
  573. <option id="lang_es" value="es">Español</option>
  574. <option id="lang_fa" value="fa">فارسی</option>
  575. <option id="lang_fr" value="fr">Français</option>
  576. <option id="lang_fy" value="fy">Frysk</option>
  577. <option id="lang_hi" value="hi">&#2361;&#2367;&#2344;&#2381;&#2342;&#2368;, &#2361;&#2367;&#2306;&#2342;&#2368;</option>
  578. <option id="lang_it" value="it">Italiano</option>
  579. <option id="lang_ja" value="ja">日本語</option>
  580. <option id="lang_nl" value="nl">Nederlands</option>
  581. <option id="lang_pl" value="pl">Polski</option>
  582. <option id="lang_pt-BR" value="pt-BR">Português (BR)</option>
  583. <option id="lang_ro" value="ro">Română</option>
  584. <option id="lang_ru" value="ru">Русский</option>
  585. <option id="lang_sk" value="sk">Slovenčina</option>
  586. <option id="lang_zh-TW" value="zh-TW">繁體中文</option>
  587. </select>
  588. </label>
  589.  
  590. <label><span id="svginfo_icons">Icon size:</span>
  591. <select id="iconsize">
  592. <option id="icon_small" value="s">Small</option>
  593. <option id="icon_medium" value="m" selected="selected">Medium</option>
  594. <option id="icon_large" value="l">Large</option>
  595. <option id="icon_xlarge" value="xl">Extra Large</option>
  596. </select>
  597. </label>
  598.  
  599. <fieldset id="change_background">
  600. <legend id="svginfo_change_background">Editor Background</legend>
  601. <div id="bg_blocks"></div>
  602. <label><span id="svginfo_bg_url">URL:</span> <input type="text" id="canvas_bg_url"/></label>
  603. <p id="svginfo_bg_note">Note: Background will not be saved with image.</p>
  604. </fieldset>
  605.  
  606. <fieldset id="change_grid">
  607. <legend id="svginfo_grid_settings">Grid</legend>
  608. <label><span id="svginfo_snap_onoff">Snapping on/off</span><input type="checkbox" value="snapping_on" id="grid_snapping_on"/></label>
  609. <label><span id="svginfo_snap_step">Snapping Step-Size:</span> <input type="text" id="grid_snapping_step" size="3" value="10"/></label>
  610. <label><span id="svginfo_grid_color">Grid color:</span> <input type="text" id="grid_color" size="3" value="#000"/></label>
  611. </fieldset>
  612.  
  613. <fieldset id="units_rulers">
  614. <legend id="svginfo_units_rulers">Units &amp; Rulers</legend>
  615. <label><span id="svginfo_rulers_onoff">Show rulers</span><input type="checkbox" value="show_rulers" id="show_rulers" checked="checked"/></label>
  616. <label>
  617. <span id="svginfo_unit">Base Unit:</span>
  618. <select id="base_unit">
  619. <option value="px">Pixels</option>
  620. <option value="cm">Centimeters</option>
  621. <option value="mm">Millimeters</option>
  622. <option value="in">Inches</option>
  623. <option value="pt">Points</option>
  624. <option value="pc">Picas</option>
  625. <option value="em">Ems</option>
  626. <option value="ex">Exs</option>
  627. </select>
  628. </label>
  629.  
  630. </fieldset>
  631.  
  632. </fieldset>
  633.  
  634. </div>
  635. </div>
  636.  
  637. <div id="dialog_box">
  638. <div class="overlay"></div>
  639. <div id="dialog_container">
  640. <div id="dialog_content"></div>
  641. <div id="dialog_buttons"></div>
  642. </div>
  643. </div>
  644.  
  645. <ul id="cmenu_canvas" class="contextMenu">
  646. <li><a href="#cut">Cut</a></li>
  647. <li><a href="#copy">Copy</a></li>
  648. <li><a href="#paste">Paste</a></li>
  649. <li><a href="#paste_in_place">Paste in Place</a></li>
  650. <li class="separator"><a href="#delete">Delete</a></li>
  651. <li class="separator"><a href="#group">Group<span class="shortcut">G</span></a></li>
  652. <li><a href="#ungroup">Ungroup<span class="shortcut">G</span></a></li>
  653. <li class="separator"><a href="#move_front">Bring to Front<span class="shortcut">SHFT+CTRL+]</span></a></li>
  654. <li><a href="#move_up">Bring Forward<span class="shortcut">CTRL+]</span></a></li>
  655. <li><a href="#move_down">Send Backward<span class="shortcut">CTRL+[</span></a></li>
  656. <li><a href="#move_back">Send to Back<span class="shortcut">SHFT+CTRL+[</span></a></li>
  657. </ul>
  658.  
  659.  
  660. <ul id="cmenu_layers" class="contextMenu">
  661. <li><a href="#dupe">Duplicate Layer...</a></li>
  662. <li><a href="#delete">Delete Layer</a></li>
  663. <li><a href="#merge_down">Merge Down</a></li>
  664. <li><a href="#merge_all">Merge All</a></li>
  665. </ul>
  666.  
  667. </div>
  668.  
  669.  
  670. <hr/>
  671.  
  672. <button type="none" id="test_raw">Show raw image</button>
  673. <div id="test_raw"></div>
  674.  
  675. <hr/>
  676.  
  677. <h1>Upload Your Artwork</h1>
  678. <p><strong>Step one:</strong> Press the "S" Key to bring up the image (White colors appear blank on white background)</p>
  679. <p><strong>Step two:</strong> Save the Image</p>
  680. <p><strong>Step three:</strong> Upload Below</p>
  681. <p>You can also upload your own artwork</p>
  682. <p>File types of "svg", "esp", "ai" preferred for production, "gif", "jpg", "png" also accepted</p>
  683.  
  684. <form name="svg_form" id="svg_form" action="/prestashop/modules/svgwizard/controllers/svg_upload.php" method="post" enctype="multipart/form-data">
  685. <input type="file" id="svg_file" name="svg_file">
  686. <button type="button" id="save_svg" class="button btn btn-default button button-large" name="save_svg">
  687. Save and Add to Cart</button>
  688. </form>
  689.  
  690. <hr/>
  691.  
  692. <div class="block_content">
  693. <p>Hello,
  694. {if isset($my_module_name) && $my_module_name}
  695. {$my_module_name}
  696. {else}
  697. World
  698. {/if}
  699. !
  700. </p>
  701. <ul>
  702. <li><a href="{$my_module_link}" title="Click this link" target="_blank">Get more information about this Design Wizard!</a></li>
  703. <p>{$my_module_message}</p>
  704. </ul>
  705. </div>
Advertisement
Add Comment
Please, Sign In to add comment