]>
Commit | Line | Data |
---|---|---|
ec376c8f VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/clrpicker.h | |
3 | // Purpose: wxColourPickerCtrl base header | |
4 | // Author: Francesco Montorsi (based on Vadim Zeitlin's code) | |
5 | // Modified by: | |
6 | // Created: 14/4/2006 | |
7 | // Copyright: (c) Vadim Zeitlin, Francesco Montorsi | |
8 | // RCS-ID: $Id$ | |
9 | // Licence: wxWindows Licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_CLRPICKER_H_BASE_ | |
13 | #define _WX_CLRPICKER_H_BASE_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | ||
17 | ||
18 | #if wxUSE_COLOURPICKERCTRL | |
19 | ||
ec376c8f VZ |
20 | #include "wx/pickerbase.h" |
21 | ||
22 | ||
b5dbe15d | 23 | class WXDLLIMPEXP_FWD_CORE wxColourPickerEvent; |
ec376c8f | 24 | |
53a2db12 FM |
25 | extern WXDLLIMPEXP_DATA_CORE(const char) wxColourPickerWidgetNameStr[]; |
26 | extern WXDLLIMPEXP_DATA_CORE(const char) wxColourPickerCtrlNameStr[]; | |
ec376c8f | 27 | |
ff654490 VZ |
28 | // show the colour in HTML form (#AABBCC) as colour button label |
29 | #define wxCLRBTN_SHOW_LABEL 100 | |
30 | ||
31 | // the default style | |
32 | #define wxCLRBTN_DEFAULT_STYLE (wxCLRBTN_SHOW_LABEL) | |
33 | ||
34 | ||
ec376c8f VZ |
35 | |
36 | // ---------------------------------------------------------------------------- | |
37 | // wxColourPickerWidgetBase: a generic abstract interface which must be | |
38 | // implemented by controls used by wxColourPickerCtrl | |
39 | // ---------------------------------------------------------------------------- | |
40 | ||
41 | class WXDLLIMPEXP_CORE wxColourPickerWidgetBase | |
42 | { | |
43 | public: | |
44 | wxColourPickerWidgetBase() { m_colour = *wxBLACK; } | |
45 | virtual ~wxColourPickerWidgetBase() {} | |
46 | ||
47 | wxColour GetColour() const | |
48 | { return m_colour; } | |
49 | virtual void SetColour(const wxColour &col) | |
50 | { m_colour = col; UpdateColour(); } | |
51 | virtual void SetColour(const wxString &col) | |
52 | { m_colour.Set(col); UpdateColour(); } | |
53 | ||
54 | protected: | |
55 | ||
56 | virtual void UpdateColour() = 0; | |
57 | ||
58 | // the current colour (may be invalid if none) | |
59 | wxColour m_colour; | |
60 | }; | |
61 | ||
62 | ||
63 | // Styles which must be supported by all controls implementing wxColourPickerWidgetBase | |
64 | // NB: these styles must be defined to carefully-chosen values to | |
65 | // avoid conflicts with wxButton's styles | |
66 | ||
67 | // show the colour in HTML form (#AABBCC) as colour button label | |
68 | // (instead of no label at all) | |
69 | // NOTE: this style is supported just by wxColourButtonGeneric and | |
70 | // thus is not exposed in wxColourPickerCtrl | |
71 | #define wxCLRP_SHOW_LABEL 0x0008 | |
72 | ||
73 | // map platform-dependent controls which implement the wxColourPickerWidgetBase | |
74 | // under the name "wxColourPickerWidget". | |
75 | // NOTE: wxColourPickerCtrl allocates a wxColourPickerWidget and relies on the | |
76 | // fact that all classes being mapped as wxColourPickerWidget have the | |
77 | // same prototype for their contructor (and also explains why we use | |
78 | // define instead of a typedef) | |
82540105 | 79 | // since GTK > 2.4, there is GtkColorButton |
ff654490 | 80 | #if defined(__WXGTK20__) && !defined(__WXUNIVERSAL__) |
ec376c8f VZ |
81 | #include "wx/gtk/clrpicker.h" |
82 | #define wxColourPickerWidget wxColourButton | |
83 | #else | |
84 | #include "wx/generic/clrpickerg.h" | |
85 | #define wxColourPickerWidget wxGenericColourButton | |
86 | #endif | |
87 | ||
88 | ||
89 | // ---------------------------------------------------------------------------- | |
90 | // wxColourPickerCtrl: platform-independent class which embeds a | |
91 | // platform-dependent wxColourPickerWidget and, if wxCLRP_USE_TEXTCTRL style is | |
92 | // used, a textctrl next to it. | |
93 | // ---------------------------------------------------------------------------- | |
94 | ||
556151f5 | 95 | #define wxCLRP_USE_TEXTCTRL (wxPB_USE_TEXTCTRL) |
ec376c8f VZ |
96 | #define wxCLRP_DEFAULT_STYLE 0 |
97 | ||
98 | class WXDLLIMPEXP_CORE wxColourPickerCtrl : public wxPickerBase | |
99 | { | |
100 | public: | |
44b72116 | 101 | wxColourPickerCtrl() {} |
ec376c8f VZ |
102 | virtual ~wxColourPickerCtrl() {} |
103 | ||
104 | ||
105 | wxColourPickerCtrl(wxWindow *parent, wxWindowID id, | |
106 | const wxColour& col = *wxBLACK, const wxPoint& pos = wxDefaultPosition, | |
107 | const wxSize& size = wxDefaultSize, long style = wxCLRP_DEFAULT_STYLE, | |
108 | const wxValidator& validator = wxDefaultValidator, | |
109 | const wxString& name = wxColourPickerCtrlNameStr) | |
ec376c8f VZ |
110 | { Create(parent, id, col, pos, size, style, validator, name); } |
111 | ||
112 | bool Create(wxWindow *parent, wxWindowID id, | |
113 | const wxColour& col = *wxBLACK, | |
114 | const wxPoint& pos = wxDefaultPosition, | |
115 | const wxSize& size = wxDefaultSize, | |
116 | long style = wxCLRP_DEFAULT_STYLE, | |
117 | const wxValidator& validator = wxDefaultValidator, | |
118 | const wxString& name = wxColourPickerCtrlNameStr); | |
119 | ||
120 | ||
121 | public: // public API | |
122 | ||
123 | // get the colour chosen | |
124 | wxColour GetColour() const | |
125 | { return ((wxColourPickerWidget *)m_picker)->GetColour(); } | |
126 | ||
127 | // set currently displayed color | |
128 | void SetColour(const wxColour& col); | |
129 | ||
130 | // set colour using RGB(r,g,b) syntax or considering given text as a colour name; | |
131 | // returns true if the given text was successfully recognized. | |
132 | bool SetColour(const wxString& text); | |
133 | ||
134 | ||
135 | public: // internal functions | |
136 | ||
137 | // update the button colour to match the text control contents | |
138 | void UpdatePickerFromTextCtrl(); | |
139 | ||
140 | // update the text control to match the button's colour | |
141 | void UpdateTextCtrlFromPicker(); | |
142 | ||
143 | // event handler for our picker | |
144 | void OnColourChange(wxColourPickerEvent &); | |
145 | ||
c757b5fe | 146 | protected: |
ec376c8f VZ |
147 | virtual long GetPickerStyle(long style) const |
148 | { return (style & wxCLRP_SHOW_LABEL); } | |
149 | ||
ec376c8f VZ |
150 | private: |
151 | DECLARE_DYNAMIC_CLASS(wxColourPickerCtrl) | |
152 | }; | |
153 | ||
154 | ||
155 | // ---------------------------------------------------------------------------- | |
156 | // wxColourPickerEvent: used by wxColourPickerCtrl only | |
157 | // ---------------------------------------------------------------------------- | |
158 | ||
9b11752c | 159 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_COLOURPICKER_CHANGED, wxColourPickerEvent ); |
ec376c8f VZ |
160 | |
161 | class WXDLLIMPEXP_CORE wxColourPickerEvent : public wxCommandEvent | |
162 | { | |
163 | public: | |
164 | wxColourPickerEvent() {} | |
165 | wxColourPickerEvent(wxObject *generator, int id, const wxColour &col) | |
166 | : wxCommandEvent(wxEVT_COMMAND_COLOURPICKER_CHANGED, id), | |
167 | m_colour(col) | |
168 | { | |
169 | SetEventObject(generator); | |
170 | } | |
171 | ||
172 | wxColour GetColour() const { return m_colour; } | |
173 | void SetColour(const wxColour &c) { m_colour = c; } | |
174 | ||
258b2ca6 RD |
175 | |
176 | // default copy ctor, assignment operator and dtor are ok | |
177 | virtual wxEvent *Clone() const { return new wxColourPickerEvent(*this); } | |
178 | ||
ec376c8f VZ |
179 | private: |
180 | wxColour m_colour; | |
181 | ||
258b2ca6 | 182 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxColourPickerEvent) |
ec376c8f VZ |
183 | }; |
184 | ||
185 | // ---------------------------------------------------------------------------- | |
186 | // event types and macros | |
187 | // ---------------------------------------------------------------------------- | |
188 | ||
189 | typedef void (wxEvtHandler::*wxColourPickerEventFunction)(wxColourPickerEvent&); | |
190 | ||
191 | #define wxColourPickerEventHandler(func) \ | |
3c778901 | 192 | wxEVENT_HANDLER_CAST(wxColourPickerEventFunction, func) |
ec376c8f VZ |
193 | |
194 | #define EVT_COLOURPICKER_CHANGED(id, fn) \ | |
195 | wx__DECLARE_EVT1(wxEVT_COMMAND_COLOURPICKER_CHANGED, id, wxColourPickerEventHandler(fn)) | |
196 | ||
ec376c8f VZ |
197 | |
198 | #endif // wxUSE_COLOURPICKERCTRL | |
199 | ||
200 | #endif // _WX_CLRPICKER_H_BASE_ | |
201 |