]>
Commit | Line | Data |
---|---|---|
99d80019 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/colour.h | |
3 | // Purpose: Includes platform-specific wxColour file | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
34138703 JS |
12 | #ifndef _WX_COLOUR_H_BASE_ |
13 | #define _WX_COLOUR_H_BASE_ | |
14 | ||
4055ed82 | 15 | #if defined(__WXPALMOS__) |
ffecfa5a JS |
16 | #include "wx/palmos/colour.h" |
17 | #elif defined(__WXMSW__) | |
34138703 JS |
18 | #include "wx/msw/colour.h" |
19 | #elif defined(__WXMOTIF__) | |
20 | #include "wx/motif/colour.h" | |
21 | #elif defined(__WXGTK__) | |
22 | #include "wx/gtk/colour.h" | |
1e6feb95 VZ |
23 | #elif defined(__WXMGL__) |
24 | #include "wx/mgl/colour.h" | |
83df96d6 JS |
25 | #elif defined(__WXX11__) |
26 | #include "wx/x11/colour.h" | |
34138703 JS |
27 | #elif defined(__WXMAC__) |
28 | #include "wx/mac/colour.h" | |
e64df9bc DE |
29 | #elif defined(__WXCOCOA__) |
30 | #include "wx/cocoa/colour.h" | |
1777b9bb DW |
31 | #elif defined(__WXPM__) |
32 | #include "wx/os2/colour.h" | |
34138703 JS |
33 | #endif |
34 | ||
e4a81a2e VZ |
35 | #define wxColor wxColour |
36 | ||
34138703 JS |
37 | #endif |
38 | // _WX_COLOUR_H_BASE_ |