1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxColourDialog class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_COLORDLG_H_
13 #define _WX_COLORDLG_H_
16 #pragma interface "colordlg.h"
20 #include "wx/dialog.h"
21 #include "wx/cmndata.h"
27 class WXDLLEXPORT wxColourDialog
: public wxDialog
29 DECLARE_DYNAMIC_CLASS(wxColourDialog
)
32 wxColourDialog(wxWindow
*parent
, wxColourData
*data
= NULL
);
34 bool Create(wxWindow
*parent
, wxColourData
*data
= NULL
);
37 wxColourData
& GetColourData(void) { return m_colourData
; }
40 wxColourData m_colourData
;
41 wxWindow
* m_dialogParent
;