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_
16 #include "wx/dialog.h"
19 * Platform-specific colour dialog implementation
22 class WXDLLIMPEXP_CORE wxColourDialog
: public wxDialog
24 DECLARE_DYNAMIC_CLASS(wxColourDialog
)
27 wxColourDialog(wxWindow
*parent
, wxColourData
*data
= NULL
);
29 bool Create(wxWindow
*parent
, wxColourData
*data
= NULL
);
32 wxColourData
& GetColourData() { return m_colourData
; }
35 wxColourData m_colourData
;
36 wxWindow
* m_dialogParent
;