1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/colordlg.h
3 // Purpose: wxColourDialog class. Use generic version if no
4 // platform-specific implementation.
5 // Author: Stefan Csomor
9 // Copyright: (c) Stefan Csomor
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_COLORDLG_H_
14 #define _WX_COLORDLG_H_
17 #include "wx/dialog.h"
18 #include "wx/cmndata.h"
21 * Platform-specific colour dialog implementation
24 class WXDLLIMPEXP_CORE wxColourDialog
: public wxDialog
26 DECLARE_DYNAMIC_CLASS(wxColourDialog
)
29 wxColourDialog(wxWindow
*parent
, wxColourData
*data
= NULL
);
31 bool Create(wxWindow
*parent
, wxColourData
*data
= NULL
);
34 wxColourData
& GetColourData() { return m_colourData
; }
37 wxColourData m_colourData
;
38 wxWindow
* m_dialogParent
;