]>
Commit | Line | Data |
---|---|---|
d7463f75 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: symbols.h | |
3 | // Purpose: Application symbols file | |
d9ab621e | 4 | // Author: Julian Smart |
d7463f75 | 5 | // Modified by: |
d9ab621e | 6 | // Created: 2003-06-12 |
d7463f75 JS |
7 | // RCS-ID: $Id$ |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _CT_SYMBOLS_H_ | |
13 | #define _CT_SYMBOLS_H_ | |
14 | ||
15 | //// Build settings | |
16 | ||
17 | // Version | |
d9a41dfe | 18 | #define ctVERSION_NUMBER 1.02 |
d7463f75 JS |
19 | |
20 | // Whether to have a splash screen | |
21 | #define ctUSE_SPLASH_SCREEN 0 | |
22 | ||
23 | // Cell background colour in property editor | |
24 | // Light blue | |
25 | #define ctCELL_BACKGROUND_COLOUR wxColour(227, 228, 255) | |
26 | ||
27 | // Custom property cell background colour in property editor | |
28 | // Light blue | |
29 | #define ctCUSTOM_CELL_BACKGROUND_COLOUR wxColour(255, 227, 227) | |
30 | ||
31 | // Description window colour in property editor | |
32 | // Light yellow | |
33 | #define ctDESCRIPTION_BACKGROUND_COLOUR wxColour(255, 255, 192) | |
34 | ||
35 | // Misc symbols | |
be5a51fb | 36 | #define ctSYMBOL_WEBSITE wxT("http://www.wxwidgets.org") |
d7463f75 JS |
37 | |
38 | #endif |