-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathflruler.H
38 lines (36 loc) · 1.61 KB
/
flruler.H
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
#include "version.H"
// HELP SCREEN
const char *G_help =
"\n"
"flruler - a simple onscreen pixel ruler for debugging GUIs\n"
"Version " VERSION "\n"
"\n"
"KEYBOARD OPERATIONS\n"
" 'c' Make a copy of the current ruler (in focus)\n"
" 'Esc' Closes current ruler (in focus)\n"
" 'q' Quit all rulers\n"
" Up,Down,Left,Right Re-orients ruler (arrow points to where zero will be)\n"
"\n"
"MOUSE OPERATIONS\n"
" Left-Drag Drags current ruler around for positioning\n"
" Left-Double-click Reverses direction of current ruler's numbers\n"
" Left-Triple-click Rotates current ruler 90 degrees\n"
" Middle-Click Makes copy of current ruler\n"
"\n"
"AUTHOR\n"
" Written by Greg Ercolano."
"\n"
" The latest version of flruler can be downloaded from http://seriss.com/people/erco/fltk/flruler/\n"
" To build flruler from source, you need FLTK, the multi-platform GPL graphics toolkit\n"
" (which supports Windows, Linux, OSX, IRIX..) from http://www.fltk.org/\n"
"\n"
"BUGS\n"
" To report bugs, create an 'issue' on the project's github page:\n"
" https://github.com/erco77/flruler\n"
"\n"
"COPYRIGHT\n"
" Copyright (C) 2012, 2006 Greg Ercolano.\n"
"\n"
" This is free software; see the source for copying conditions. There is\n"
" NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR\n"
" PURPOSE. For more information, see the LICENSE file that came with the source.\n";