-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathREADME.txt
92 lines (65 loc) · 2.7 KB
/
README.txt
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
TouchCursor Readme
==================
Dependencies
============
C++ Libraries
-------------
* wxWidgets 2.8 (unicode builds)
* boost 1.39 (later may also work)
The location of these libraries can be configured by editing
touchcursor.vsprops.
Tools
-----
* Microsoft Visual Studio 2008
(Haven't tried VC++ Express)
Scripts that build the installer and docs require:
* InnoSetup >=v5.2.2 (http://www.jrsoftware.org/isinfo.php)
* Python >=v2.4 (http://python.org)
* Python markdown library (http://pypi.python.org/pypi/Markdown)
* 7zip (http://www.7-zip.org/)
Building
========
Run build.bat to build executables and docs and package them into zip and
installer files. Alternatively, load touchcursor.sln into Visual Studio and
build in the IDE to build the executables only.
If your Visual Studio installation is not at the location used in the batch
file, you'll need to edit it.
Project Directories
===================
touchcursor
Source for touchcursor.exe, which loads the hook DLL and runs the systray
menu.
touchcursordll
Source for touchcursor.dll. This is the core of TouchCursor and contains
the keyboard hook function. (Windows requires this to be in a DLL rather than
an exe.)
tcconfig
Source for tcconfig.exe, which edits the configuration file. This was
implemented as separate program to keep the memory usage of the permanently
running modules low.
touchcursor_update
Source for a touchcursor_update.exe, which is optionally used to check for a
new version of TouchCursor. The separate exe is partly due to paranoia about
malware scanners that might be suspicious of a program that installed a
keyboard hook and connected to the internet.
tclib
Functions shared by the other projects.
setup
Source, scripts and dependencies for building the installer.
docs
Source for the help file. The text is in Markdown format. The html is built
by a script in the setup directory.
License & Copyright
===================
Copyright © 2010 Martin Stone.
TouchCursor is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
TouchCursor is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with TouchCursor (COPYING.txt). If not, see
<http://www.gnu.org/licenses/>.