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