]> git.saurik.com Git - wxWidgets.git/blob - include/wx/colordlg.h
moved wxWindow::m_hMenu to wxFrame, it is not needed in the base class
[wxWidgets.git] / include / wx / colordlg.h
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) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_COLORDLG_H_BASE_
13 #define _WX_COLORDLG_H_BASE_
14
15 #include "wx/defs.h"
16
17 #if wxUSE_COLOURDLG
18
19 #if defined(__WXMSW__) && !defined(__WXUNIVERSAL__)
20 #include "wx/msw/colordlg.h"
21 #elif defined(__WXMAC__) && !defined(__WXUNIVERSAL__)
22 #include "wx/mac/colordlg.h"
23 #elif defined(__WXGTK20__) && !defined(__WXUNIVERSAL__)
24 #include "wx/gtk/colordlg.h"
25 #else
26 #include "wx/generic/colrdlgg.h"
27
28 #define wxColourDialog wxGenericColourDialog
29 #endif
30
31 // get the colour from user and return it
32 wxColour WXDLLEXPORT
33 wxGetColourFromUser(wxWindow *parent = (wxWindow *)NULL,
34 const wxColour& colInit = wxNullColour);
35
36 #endif // wxUSE_COLOURDLG
37
38 #endif
39 // _WX_COLORDLG_H_BASE_