not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
2.4 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Paint Activity</title>
  6. <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, viewport-fit=cover" />
  7. <link rel="prefetch" type="application/l10n" href="translate.ini" />
  8. <link rel="stylesheet" media="not screen and (device-width: 1200px) and (device-height: 900px)" href="lib/sugar-web/graphics/css/sugar-96dpi.css">
  9. <link rel="stylesheet" media="screen and (device-width: 1200px) and (device-height: 900px)" href="lib/sugar-web/graphics/css/sugar-200dpi.css">
  10. <link rel="stylesheet" href="css/activity.css">
  11. <link rel="stylesheet" href="css/libnotify.css">
  12. <script data-main="js/loader" src="lib/require.js"></script>
  13. </head>
  14. <body style="background-color:#fff; color:#fff; height:100%; margin:0; overflow:hidden;">
  15. <div id="main-toolbar" class="toolbar">
  16. <button class="toolbutton" id="activity-button" title="My Activity"></button>
  17. <button class="toolbutton" id="network-button" title="Network"></button>
  18. <button class="toolbutton active" id="colors-button-fill" title="Fill Color"></button>
  19. <button class="toolbutton" id="colors-button-stroke" title="Stroke Color"></button>
  20. <button class="toolbutton" id="undo-button" title="Undo"></button>
  21. <button class="toolbutton" id="redo-button" title="Redo"></button>
  22. <button class="toolbutton" id="size-button" title="Size"></button>
  23. <button class="toolbutton" id="pen-button" title="Pen"></button>
  24. <button class="toolbutton" id="eraser-button" title="Eraser"></button>
  25. <button class="toolbutton" id="stamps-button" title="Stamps"></button>
  26. <button class="toolbutton" id="text-button" title="Text"></button>
  27. <button class="toolbutton" id="insertimage-button" title="Insert image"></button>
  28. <button class="toolbutton" id="drawings-button" title="Drawings"></button>
  29. <button class="toolbutton" id="bucket-button" title="Bucket"></button>
  30. <button class="toolbutton" id="filters-button" title="Filters"></button>
  31. <button class="toolbutton" id="copy-button" title="Copy"></button>
  32. <button class="toolbutton" id="paste-button" title="Paste"></button>
  33. <button class="toolbutton" id="clear-button" title="Clear"></button>
  34. <button class="toolbutton pull-right" id="stop-button" title="Stop"></button>
  35. </div>
  36. <canvas id="paint-canvas" style="width:100%; "></canvas>
  37. </body>
  38. </html>