-
-
Notifications
You must be signed in to change notification settings - Fork 519
/
editor.html
131 lines (126 loc) · 4.75 KB
/
editor.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Screenshot Editor</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link href="css/style.css" rel="stylesheet" />
<link href="libs/colors.css" rel="stylesheet" />
<script src="libs/jquery.js"></script>
<script src="settings.js"></script>
<script src="libs/colors.js"></script>
<script src="js/pluginLib.js"></script>
<script src="js/plugin.js"></script>
<script src="js/pluginsBuiltIn.js"></script>
<script src="extension.js"></script>
<script src="js/pdf.js"></script>
<script src="editor.js"></script>
<script src="libs\svgcanvas.js"></script>
</head>
<body id="page-editor">
<div id="header">
<div class="editor-toolbar" id="toolbar" style=height:50px>
<a href="https://1ce.org" target="_blank" class="logo">
<img src="images/icon48.png" alt="1Click Screenshot" />
</a>
<div class="donation-bar">
<iframe src="https://ghbtns.com/github-btn.html?user=aminag&repo=openscreenshot&type=fork&count=true&size=large" frameborder="0"
scrolling="0" width="158px" height="30px"></iframe>
<a target="_blank" class="donate" href="https://www.patreon.com/bePatron?u=5449508">
<button>Donate</button>
</a>
</div>
<div class="tools">
<button tag="highlight" class="button highlight" status="on">
<span></span>
</button>
<button tag="line" class="button line" status="on">
<span></span>
</button>
<button tag="free" class="button curved-line" status="on">
<span></span>
</button>
<button tag="spray" class="button spray" status="on">
<span></span>
</button>
<button tag="text" class="button text" status="on">
<span></span>
</button>
<button tag="rectangle" class="button square-empty" status="on">
<span></span>
</button>
<button tag="full" class="button square-fill" status="on">
<span></span>
</button>
<button tag="ellipsis" class="button oval" status="on">
<span></span>
</button>
<button tag="arrow" class="button arrow" status="on">
<span></span>
</button>
<button tag="star" class="button star" status="on">
<span></span>
</button>
<button tag="house" class="button house" status="on">
<span></span>
</button>
<button tag="crop" class="button crop last" status="on">
<span></span>
</button>
</div>
<div class="tools">
<button tag="undo" class="button undo disable">
<span></span>
</button>
<button tag="redo" class="button last redo disable">
<span></span>
</button>
</div>
<div class="tools" id="wColorPicker2_3">
</div>
<div id="LineWidthPicker" class="tools" style="float:left;margin-right:10px;">
<button class="button line-size" status="on">
<span></span>
</button>
<div class="linePickerOverlay">
<hr style=height:1px>
<hr style=height:2px>
<hr style=height:3px>
<hr style=height:5px>
<hr style=height:8px>
<hr style=height:12px>
<hr style=height:16px>
<hr style=height:20px>
<hr style=height:30px>
</div>
</div>
<div class="buttons">
<button title="Share" class="share" style="text-indent: initial;font-size:inherit">
<span class="icon"></span> Share</button>
<button title="Save Local" class="save">
<span class="icon"></span> Save local</button>
<button title="Save to PDF" class="pdf save-to-pdf">
<span class="icon"></span>
</button>
<button title="Copy" class="copy save-to-clipboard">
<span class="icon"></span>
</button>
<!-- <button title="Thumbnail" class="thumbnail save-to-thumbnail"><span class="icon"></span></button> -->
<!-- <button title="Print" class="print save-to-printer"><span class="icon"></span></button> -->
<!-- <div id="toolbarContainer" style=" clear: both;
margin-top: 34px;
width: 310px;"></div> -->
</div>
</div>
</div>
<div id="screenshot-area">
<div dir="ltr" id="divCanvasData">
<div id="clipper">
<img id="imgFixForLong" />
<canvas style="position:absolute" id="cborder"></canvas>
<canvas style="background:url(images/editor-background.png) repeat;display:none" id="canvasId"></canvas>
</div>
</div>
</div>
</body>
</html>