]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_COLORDLG_H_BASE_ |
2 | #define _WX_COLORDLG_H_BASE_ | |
c801d85f | 3 | |
2049ba38 | 4 | #if defined(__WXMSW__) |
c801d85f | 5 | #include "wx/msw/colordlg.h" |
2049ba38 | 6 | #elif defined(__WXMOTIF__) |
c801d85f | 7 | #include "wx/generic/colrdlgg.h" |
2049ba38 | 8 | #elif defined(__WXGTK__) |
c801d85f | 9 | #include "wx/generic/colrdlgg.h" |
b4e76e0d RR |
10 | #elif defined(__WXQT__) |
11 | #include "wx/generic/colrdlgg.h" | |
34138703 JS |
12 | #elif defined(__WXMAC__) |
13 | #include "wx/generic/colrdlgg.h" | |
1777b9bb | 14 | #elif defined(__WXPM__) |
fb46a9a6 | 15 | #include "wx/generic/colrdlgg.h" |
34138703 JS |
16 | #elif defined(__WXSTUBS__) |
17 | #include "wx/generic/colrdlgg.h" | |
c801d85f KB |
18 | #endif |
19 | ||
cd34332f | 20 | #if !defined(__WXMSW__) |
3dd4e4e0 | 21 | #define wxColourDialog wxGenericColourDialog |
cd34332f | 22 | #define sm_classwxColourDialog sm_classwxGenericColourDialog |
3dd4e4e0 JS |
23 | #endif |
24 | ||
91b4c08d VZ |
25 | // get the colour from user and return it |
26 | wxColour WXDLLEXPORT wxGetColourFromUser(wxWindow *parent = (wxWindow *)NULL, | |
27 | const wxColour& colInit = wxNullColour); | |
28 | ||
c801d85f | 29 | #endif |
34138703 | 30 | // _WX_COLORDLG_H_BASE_ |