]>
Commit | Line | Data |
---|---|---|
d7463f75 JS |
1 | Welcome to wxWindows Configuration Tool! |
2 | ============================================= | |
3 | ||
4 | wxWindows Configuration Tool is a tool for | |
5 | helping to configure wxWindows. | |
6 | ||
7 | For further information, please see the manual, and the | |
8 | following site: | |
9 | ||
10 | http://www.wxwindows.org | |
11 | ||
12 | ------------------------------------------------------ | |
13 | Installing wxWindows Configuration Tool on Windows | |
14 | ------------------------------------------------------ | |
15 | ||
16 | Run wxconfigtool-x.yz-setup.exe and follow the instructions | |
17 | to install wxWindows Configuration Tool. | |
18 | ||
19 | You should find a shortcut on your desktop, and you can | |
20 | also find it in a group similar to this: | |
21 | ||
22 | Start -> Program Files -> wxWindows Configuration Tool x.y | |
23 | ||
24 | ------------------------------------------------------ | |
25 | Installing wxWindows Configuration Tool on Unix | |
26 | ------------------------------------------------------ | |
27 | ||
28 | Unarchive wxconfigtool-x.yz.tar.gz to a suitable location | |
29 | in your filesystem. A directory of the form wxconfigtool-x.yz | |
30 | (where x.yz is the version number) will be created. | |
31 | ||
32 | Add the location to your PATH and run the application with | |
33 | 'wxconfigtool'. You may wish to set the environment variable | |
34 | WXCONFIGTOOLDIR so that wxWindows Configuration Tool can find its data files. | |
35 | ||
36 | For example: | |
37 | ||
38 | % cd ~ | |
39 | % tar xvfz wxconfigtool-1.01.tar.gz | |
40 | % export WXCONFIGTOOLDIR=`pwd`/wxconfigtool-1.01 | |
41 | % export PATH=$PATH:$WXCONFIGTOOLDIR | |
42 | % wxconfigtool | |
43 | ||
44 | If you don't want to change your PATH, you could place a | |
45 | script in a location already on your PATH, such as | |
46 | /usr/local/bin. For example: | |
47 | ||
48 | #!/bin/sh | |
49 | # Invokes wxWindows Configuration Tool | |
50 | export WXCONFIGTOOLDIR=/home/mydir/wxconfigtool-1.01 | |
51 | $WXCONFIGTOOLDIR/wxconfigtool $* | |
52 | ||
53 | If you wish to associate the wxWindows Configuration Tool file extension | |
54 | (pjd) with wxWindows Configuration Tool, you will need to edit your | |
55 | ~/.mailcap file (or create one if it doesn't exist) | |
56 | and add an entry similar to this: | |
57 | ||
58 | application/wxconfigtool; wxconfigtool %s | |
59 | ||
60 | and add this ~/.mime.types: | |
61 | ||
62 | type=application/wxconfigtool \ | |
63 | desc="wxWindows Configuration Tool Document" \ | |
64 | exts="pjd" | |
65 | ||
66 | ||
67 | ------------------------------------------------------ | |
68 | (c) Julian Smart, June 2003 | |
69 |