]>
Commit | Line | Data |
---|---|---|
1e6feb95 VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/univ/colschem.h | |
3 | // Purpose: wxColourScheme class provides the colours to use for drawing | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 19.08.00 | |
7 | // RCS-ID: $Id$ | |
442b35b5 | 8 | // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com) |
1e6feb95 VZ |
9 | // Licence: wxWindows license |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_UNIV_COLSCHEM_H_ | |
13 | #define _WX_UNIV_COLSCHEM_H_ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "colschem.h" | |
17 | #endif | |
18 | ||
19 | class WXDLLEXPORT wxWindow; | |
20 | ||
21 | #include "wx/colour.h" | |
22 | #include "wx/checkbox.h" | |
23 | ||
24 | // ---------------------------------------------------------------------------- | |
25 | // wxColourScheme | |
26 | // ---------------------------------------------------------------------------- | |
27 | ||
28 | class WXDLLEXPORT wxColourScheme | |
29 | { | |
30 | public: | |
31 | // the standard colours | |
32 | enum StdColour | |
33 | { | |
34 | // the background colour for a window | |
35 | WINDOW, | |
36 | ||
37 | // the different background and text colours for the control | |
38 | CONTROL, | |
39 | CONTROL_PRESSED, | |
40 | CONTROL_CURRENT, | |
41 | ||
42 | // the label text for the normal and the disabled state | |
43 | CONTROL_TEXT, | |
44 | CONTROL_TEXT_DISABLED, | |
45 | CONTROL_TEXT_DISABLED_SHADOW, | |
46 | ||
47 | // the scrollbar background colour for the normal and pressed states | |
48 | SCROLLBAR, | |
49 | SCROLLBAR_PRESSED, | |
50 | ||
51 | // the background and text colour for the highlighted item | |
52 | HIGHLIGHT, | |
53 | HIGHLIGHT_TEXT, | |
54 | ||
55 | // these colours are used for drawing the shadows of 3D objects | |
56 | SHADOW_DARK, | |
57 | SHADOW_HIGHLIGHT, | |
58 | SHADOW_IN, | |
59 | SHADOW_OUT, | |
24a23c35 VS |
60 | |
61 | // the titlebar background colours for the normal and focused states | |
62 | TITLEBAR, | |
63 | TITLEBAR_ACTIVE, | |
64 | TITLEBAR_TEXT, | |
1e6feb95 VZ |
65 | |
66 | MAX | |
67 | }; | |
68 | ||
69 | // get a standard colour | |
70 | virtual wxColour Get(StdColour col) const = 0; | |
71 | ||
72 | // get the background colour for the given window | |
73 | virtual wxColour GetBackground(wxWindow *win) const = 0; | |
74 | ||
75 | // virtual dtor for any base class | |
76 | virtual ~wxColourScheme(); | |
77 | }; | |
78 | ||
79 | // some people just can't spell it correctly :-) | |
80 | typedef wxColourScheme wxColorScheme; | |
81 | ||
82 | // ---------------------------------------------------------------------------- | |
83 | // macros | |
84 | // ---------------------------------------------------------------------------- | |
85 | ||
86 | // retrieve the default colour from the theme or the given scheme | |
87 | #define wxSCHEME_COLOUR(scheme, what) scheme->Get(wxColorScheme::what) | |
88 | #define wxTHEME_COLOUR(what) \ | |
89 | wxSCHEME_COLOUR(wxTheme::Get()->GetColourScheme(), what) | |
90 | ||
91 | // get the background colour for the window in the current theme | |
92 | #define wxTHEME_BG_COLOUR(win) \ | |
93 | wxTheme::Get()->GetColourScheme()->GetBackground(win) | |
94 | ||
95 | #endif // _WX_UNIV_COLSCHEM_H_ |