]>
Commit | Line | Data |
---|---|---|
7cdb542c VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/colrdlgg.h | |
3 | // Purpose: wxColourDialog | |
4 | // Author: Vadim Zeitiln | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWindows team | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
34138703 JS |
12 | #ifndef _WX_COLORDLG_H_BASE_ |
13 | #define _WX_COLORDLG_H_BASE_ | |
c801d85f | 14 | |
7cdb542c VZ |
15 | #if wxUSE_COLOURDLG |
16 | ||
2049ba38 | 17 | #if defined(__WXMSW__) |
7cdb542c VZ |
18 | #include "wx/msw/colordlg.h" |
19 | #else | |
20 | #include "wx/generic/colrdlgg.h" | |
c801d85f | 21 | |
7cdb542c VZ |
22 | #define wxColourDialog wxGenericColourDialog |
23 | #define sm_classwxColourDialog sm_classwxGenericColourDialog | |
3dd4e4e0 JS |
24 | #endif |
25 | ||
91b4c08d | 26 | // get the colour from user and return it |
7cdb542c VZ |
27 | wxColour WXDLLEXPORT |
28 | wxGetColourFromUser(wxWindow *parent = (wxWindow *)NULL, | |
29 | const wxColour& colInit = wxNullColour); | |
30 | ||
31 | #endif // wxUSE_COLOURDLG | |
91b4c08d | 32 | |
c801d85f | 33 | #endif |
34138703 | 34 | // _WX_COLORDLG_H_BASE_ |