]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
f6bcfd97 | 2 | // Name: wx/msw/colordlg.h |
2bda0e17 KB |
3 | // Purpose: wxColourDialog class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_COLORDLG_H_ |
13 | #define _WX_COLORDLG_H_ | |
2bda0e17 | 14 | |
2bda0e17 KB |
15 | #include "wx/setup.h" |
16 | #include "wx/dialog.h" | |
17 | #include "wx/cmndata.h" | |
18 | ||
f6bcfd97 BP |
19 | // ---------------------------------------------------------------------------- |
20 | // wxColourDialog: dialog for choosing a colours | |
21 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 22 | |
f6bcfd97 | 23 | class WXDLLEXPORT wxColourDialog : public wxDialog |
2bda0e17 | 24 | { |
bbcdf8bc | 25 | public: |
f6bcfd97 | 26 | wxColourDialog(); |
bbcdf8bc JS |
27 | wxColourDialog(wxWindow *parent, wxColourData *data = NULL); |
28 | ||
29 | bool Create(wxWindow *parent, wxColourData *data = NULL); | |
30 | ||
f6bcfd97 BP |
31 | wxColourData& GetColourData() { return m_colourData; } |
32 | ||
33 | // override some base class virtuals | |
34 | virtual void SetTitle(const wxString& title); | |
ba14d986 | 35 | virtual wxString GetTitle() const; |
f6bcfd97 BP |
36 | |
37 | virtual int ShowModal(); | |
bbcdf8bc | 38 | |
f63e3ebb VZ |
39 | virtual void DoGetPosition( int *x, int *y ) const; |
40 | ||
bbcdf8bc | 41 | protected: |
f6bcfd97 BP |
42 | virtual void DoGetSize(int *width, int *height) const; |
43 | virtual void DoGetClientSize(int *width, int *height) const; | |
44 | virtual void DoSetSize(int x, int y, | |
45 | int width, int height, | |
46 | int sizeFlags = wxSIZE_AUTO); | |
47 | ||
bbcdf8bc | 48 | wxColourData m_colourData; |
f6bcfd97 BP |
49 | wxString m_title; |
50 | ||
f63e3ebb VZ |
51 | wxPoint m_pos; |
52 | ||
fc7a2a60 | 53 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxColourDialog) |
2bda0e17 KB |
54 | }; |
55 | ||
56 | #endif | |
bbcdf8bc | 57 | // _WX_COLORDLG_H_ |