-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.html
49 lines (41 loc) · 1.8 KB
/
help.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Painter - help</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/help.css">
</head>
<body>
<h1 class="title">Painter</h1>
<p>Below you can find list of default keys uses in application. You can change it in <strong>presentation-draw-settings.json</strong> file in your <strong>%APPDATA%</strong> folder.</p>
<h3>Tools:</h3>
<ul class="keys">
<li><strong class="key">1</strong> - select / manage</li>
<li><strong class="key">2</strong> - paint</li>
<li><strong class="key">3</strong> - rectangle</li>
<li><strong class="key">4</strong> - line</li>
<li><strong class="key">5</strong> - arrow</li>
<li><strong class="key">6</strong> - text</li>
</ul>
<p>In select mode you can group / ungroup objects with <strong>Ctrl + G</strong> and <strong>Ctrl + Shift + G</strong></p>
<h3>Colors:</h3>
<ul class="tools">
<li><strong class="key">r</strong> - red</li>
<li><strong class="key">g</strong> - green</li>
<li><strong class="key">b</strong> - blue</li>
<li><strong class="key">p</strong> - pink</li>
<li><strong class="key">y</strong> - yellow</li>
<li><strong class="key">o</strong> - orange</li>
</ul>
<h3>Other stuff:</h3>
<ul class="other">
<li><strong class="key">delete</strong> - delete selected objects in selection mode</li>
<li><strong class="key">[</strong> - decrease brush size. You can do this with mouse wheel.</li>
<li><strong class="key">]</strong> - increase brush size. You can do this with mouse wheel.</li>
<li><strong class="key">c</strong> - clear screen</li>
<li><strong class="key">/</strong> - toggle white board</li>
</ul>
</body>
</html>