]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/colordlg.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxColourDialog
4 // Author: Vadim Zeitiln
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_COLORDLG_H_BASE_
13 #define _WX_COLORDLG_H_BASE_
17 #if defined(__WXMSW__) && !defined(__WXUNIVERSAL__)
18 #include "wx/msw/colordlg.h"
19 #elif defined(__WXMAC__) && !defined(__WXUNIVERSAL__)
20 #include "wx/mac/colordlg.h"
22 #include "wx/generic/colrdlgg.h"
24 #define wxColourDialog wxGenericColourDialog
27 // get the colour from user and return it
29 wxGetColourFromUser(wxWindow
*parent
= (wxWindow
*)NULL
,
30 const wxColour
& colInit
= wxNullColour
);
32 #endif // wxUSE_COLOURDLG
35 // _WX_COLORDLG_H_BASE_