1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface for Colour, Dir, File, Font picker controls
7 // Created: 6-June-2006
9 // Copyright: (c) 2006 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
25 "Base abstract class for all pickers which support an auxiliary text
26 control. This class handles all positioning and sizing of the text
27 control like a an horizontal `wx.BoxSizer` would do, with the text
28 control on the left of the picker button and the proportion of the
29 picker fixed to value 1.", "");
31 class wxPickerBase : public wxControl
34 // This class is an ABC, can't be instantiated from Python.
35 //wxPickerBase() : m_text(NULL), m_picker(NULL),
36 // m_margin(5), m_textProportion(2) {}
37 //virtual ~wxPickerBase();
40 // if present, intercepts wxPB_USE_TEXTCTRL style and creates the text control
41 // The 3rd argument is the initial wxString to display in the text control
42 bool CreateBase(wxWindow *parent, wxWindowID id,
43 const wxString& text = wxEmptyString,
44 const wxPoint& pos = wxDefaultPosition,
45 const wxSize& size = wxDefaultSize, long style = 0,
46 const wxValidator& validator = wxDefaultValidator,
47 const wxString& name = wxButtonNameStr);
52 void , SetInternalMargin(int newmargin),
53 "Sets the margin (in pixels) between the picker and the text control.", "");
56 int , GetInternalMargin() const,
57 "Returns the margin (in pixels) between the picker and the text
62 void , SetTextCtrlProportion(int prop),
63 "Sets the proportion between the text control and the picker button.
64 This is used to set relative sizes of the text contorl and the picker.
65 The value passed to this function must be >= 1.", "");
68 int , GetTextCtrlProportion() const,
69 "Returns the proportion between the text control and the picker.", "");
73 void , SetPickerCtrlProportion(int prop),
74 "Sets the proportion value of the picker.", "");
77 int , GetPickerCtrlProportion() const,
78 "Gets the proportion value of the picker.", "");
82 bool , IsTextCtrlGrowable() const,
86 void , SetTextCtrlGrowable(bool grow = true),
91 bool , IsPickerCtrlGrowable() const,
95 void , SetPickerCtrlGrowable(bool grow = true),
100 bool , HasTextCtrl() const,
101 "Returns true if this class has a valid text control (i.e. if the
102 wx.PB_USE_TEXTCTRL style was given when creating this control).", "");
105 wxTextCtrl *, GetTextCtrl(),
106 "Returns a pointer to the text control handled by this class or None if
107 the wx.PB_USE_TEXTCTRL style was not specified when this control was
110 Very important: the contents of the text control could be containing
111 an invalid representation of the entity which can be chosen through
112 the picker (e.g. the user entered an invalid colour syntax because of
113 a typo). Thus you should never parse the content of the textctrl to
114 get the user's input; rather use the derived-class getter
115 (e.g. `wx.ColourPickerCtrl.GetColour`, `wx.FilePickerCtrl.GetPath`,
119 wxControl *, GetPickerCtrl(),
124 //---------------------------------------------------------------------------
127 MAKE_CONST_WXSTRING(ColourPickerCtrlNameStr);
132 wxCLRP_DEFAULT_STYLE,
136 MustHaveApp(wxColourPickerCtrl);
137 DocStr(wxColourPickerCtrl,
138 "This control allows the user to select a colour. The generic
139 implementation is a button which brings up a `wx.ColourDialog` when
140 clicked. Native implementations may differ but this is usually a
141 (small) widget which give access to the colour-chooser dialog.",
146 ====================== ============================================
147 wx.CLRP_DEFAULT Default style.
148 wx.CLRP_USE_TEXTCTRL Creates a text control to the left of the
149 picker button which is completely managed
150 by the `wx.ColourPickerCtrl` and which can
151 be used by the user to specify a colour.
152 The text control is automatically synchronized
153 with the button's value. Use functions defined in
154 `wx.PickerBase` to modify the text control.
155 wx.CLRP_SHOW_LABEL Shows the colour in HTML form (AABBCC) as the
156 colour button label (instead of no label at all).
157 ====================== ============================================
161 ======================== ==========================================
162 EVT_COLOURPICKER_CHANGED The user changed the colour selected in the
163 control either using the button or using the
164 text control (see wx.CLRP_USE_TEXTCTRL; note
165 that in this case the event is fired only if
166 the user's input is valid, i.e. recognizable).
167 ======================== ==========================================
170 class wxColourPickerCtrl : public wxPickerBase
173 %pythonAppend wxColourPickerCtrl "self._setOORInfo(self)"
174 %pythonAppend wxColourPickerCtrl() ""
176 wxColourPickerCtrl(wxWindow *parent, wxWindowID id=-1,
177 const wxColour& col = *wxBLACK,
178 const wxPoint& pos = wxDefaultPosition,
179 const wxSize& size = wxDefaultSize,
180 long style = wxCLRP_DEFAULT_STYLE,
181 const wxValidator& validator = wxDefaultValidator,
182 const wxString& name = wxPyColourPickerCtrlNameStr);
183 %RenameCtor(PreColourPickerCtrl, wxColourPickerCtrl());
185 bool Create(wxWindow *parent, wxWindowID id,
186 const wxColour& col = *wxBLACK,
187 const wxPoint& pos = wxDefaultPosition,
188 const wxSize& size = wxDefaultSize,
189 long style = wxCLRP_DEFAULT_STYLE,
190 const wxValidator& validator = wxDefaultValidator,
191 const wxString& name = wxPyColourPickerCtrlNameStr);
195 wxColour , GetColour() const,
196 "Returns the currently selected colour.", "");
200 void , SetColour(const wxColour& col),
201 "Set the displayed colour.", "");
203 %property(Colour, GetColour, SetColour, doc="See `GetColour` and `SetColour`");
208 %constant wxEventType wxEVT_COMMAND_COLOURPICKER_CHANGED;
210 EVT_COLOURPICKER_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_COLOURPICKER_CHANGED, 1 )
213 class wxColourPickerEvent : public wxCommandEvent
216 wxColourPickerEvent(wxObject *generator, int id, const wxColour &col);
218 wxColour GetColour() const;
219 void SetColour(const wxColour &c);
221 %property(Colour, GetColour, SetColour, doc="See `GetColour` and `SetColour`");
225 //---------------------------------------------------------------------------
228 MAKE_CONST_WXSTRING(FilePickerCtrlNameStr);
229 MAKE_CONST_WXSTRING(FileSelectorPromptStr);
230 MAKE_CONST_WXSTRING(DirPickerCtrlNameStr);
231 MAKE_CONST_WXSTRING(DirSelectorPromptStr);
232 MAKE_CONST_WXSTRING(FileSelectorDefaultWildcardStr);
238 wxFLP_OVERWRITE_PROMPT,
239 wxFLP_FILE_MUST_EXIST,
241 wxDIRP_DIR_MUST_EXIST,
248 wxDIRP_DEFAULT_STYLE,
253 MustHaveApp(wxFilePickerCtrl);
254 DocStr(wxFilePickerCtrl,
257 class wxFilePickerCtrl : public wxPickerBase
260 %pythonAppend wxFilePickerCtrl "self._setOORInfo(self)"
261 %pythonAppend wxFilePickerCtrl() ""
263 wxFilePickerCtrl(wxWindow *parent,
265 const wxString& path = wxPyEmptyString,
266 const wxString& message = wxPyFileSelectorPromptStr,
267 const wxString& wildcard = wxPyFileSelectorDefaultWildcardStr,
268 const wxPoint& pos = wxDefaultPosition,
269 const wxSize& size = wxDefaultSize,
270 long style = wxFLP_DEFAULT_STYLE,
271 const wxValidator& validator = wxDefaultValidator,
272 const wxString& name = wxPyFilePickerCtrlNameStr);
273 %RenameCtor(PreFilePickerCtrl, wxFilePickerCtrl());
275 bool Create(wxWindow *parent,
277 const wxString& path = wxPyEmptyString,
278 const wxString& message = wxPyFileSelectorPromptStr,
279 const wxString& wildcard = wxPyFileSelectorDefaultWildcardStr,
280 const wxPoint& pos = wxDefaultPosition,
281 const wxSize& size = wxDefaultSize,
282 long style = wxFLP_DEFAULT_STYLE,
283 const wxValidator& validator = wxDefaultValidator,
284 const wxString& name = wxPyFilePickerCtrlNameStr);
286 wxString GetPath() const;
287 void SetPath(const wxString &str);
289 // return true if the given path is valid for this control
290 bool CheckPath(const wxString& path) const;
292 // Returns the filtered value currently placed in the text control (if present).
293 wxString GetTextCtrlValue() const;
295 %property(Path, GetPath, SetPath, doc="See `GetPath` and `SetPath`");
296 %property(TextCtrlValue, GetTextCtrlValue, doc="See `GetTextCtrlValue`");
302 MustHaveApp(wxDirPickerCtrl);
303 DocStr(wxDirPickerCtrl,
306 class wxDirPickerCtrl : public wxPickerBase
309 %pythonAppend wxDirPickerCtrl "self._setOORInfo(self)"
310 %pythonAppend wxDirPickerCtrl() ""
312 wxDirPickerCtrl(wxWindow *parent, wxWindowID id=-1,
313 const wxString& path = wxPyEmptyString,
314 const wxString& message = wxPyDirSelectorPromptStr,
315 const wxPoint& pos = wxDefaultPosition,
316 const wxSize& size = wxDefaultSize,
317 long style = wxDIRP_DEFAULT_STYLE,
318 const wxValidator& validator = wxDefaultValidator,
319 const wxString& name = wxPyDirPickerCtrlNameStr);
320 %RenameCtor(PreDirPickerCtrl, wxDirPickerCtrl());
322 bool Create(wxWindow *parent, wxWindowID id=-1,
323 const wxString& path = wxPyEmptyString,
324 const wxString& message = wxPyDirSelectorPromptStr,
325 const wxPoint& pos = wxDefaultPosition,
326 const wxSize& size = wxDefaultSize,
327 long style = wxDIRP_DEFAULT_STYLE,
328 const wxValidator& validator = wxDefaultValidator,
329 const wxString& name = wxPyDirPickerCtrlNameStr);
331 wxString GetPath() const;
332 void SetPath(const wxString &str);
334 // return true if the given path is valid for this control
335 bool CheckPath(const wxString& path) const;
337 // Returns the filtered value currently placed in the text control (if present).
338 wxString GetTextCtrlValue() const;
340 %property(Path, GetPath, SetPath, doc="See `GetPath` and `SetPath`");
341 %property(TextCtrlValue, GetTextCtrlValue, doc="See `GetTextCtrlValue`");
346 %constant wxEventType wxEVT_COMMAND_FILEPICKER_CHANGED;
347 %constant wxEventType wxEVT_COMMAND_DIRPICKER_CHANGED;
350 EVT_FILEPICKER_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_FILEPICKER_CHANGED, 1 )
351 EVT_DIRPICKER_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_DIRPICKER_CHANGED, 1 )
354 class wxFileDirPickerEvent : public wxCommandEvent
357 wxFileDirPickerEvent(wxEventType type, wxObject *generator, int id, const wxString &path);
359 wxString GetPath() const { return m_path; }
360 void SetPath(const wxString &p) { m_path = p; }
362 %property(Path, GetPath, SetPath, doc="See `GetPath` and `SetPath`");
366 //---------------------------------------------------------------------------
369 MAKE_CONST_WXSTRING(FontPickerCtrlNameStr);
372 wxFNTP_FONTDESC_AS_LABEL,
373 wxFNTP_USEFONT_FOR_LABEL,
375 wxFNTP_DEFAULT_STYLE,
379 MustHaveApp(wxFontPickerCtrl);
380 DocStr(wxFontPickerCtrl,
384 class wxFontPickerCtrl : public wxPickerBase
387 %pythonAppend wxFontPickerCtrl "self._setOORInfo(self)"
388 %pythonAppend wxFontPickerCtrl() ""
391 wxFontPickerCtrl(wxWindow *parent,
393 const wxFont& initial = *wxNORMAL_FONT,
394 const wxPoint& pos = wxDefaultPosition,
395 const wxSize& size = wxDefaultSize,
396 long style = wxFNTP_DEFAULT_STYLE,
397 const wxValidator& validator = wxDefaultValidator,
398 const wxString& name = wxPyFontPickerCtrlNameStr);
399 %RenameCtor(PreFontPickerCtrl, wxFontPickerCtrl());
401 bool Create(wxWindow *parent,
403 const wxFont& initial = *wxNORMAL_FONT,
404 const wxPoint& pos = wxDefaultPosition,
405 const wxSize& size = wxDefaultSize,
406 long style = wxFNTP_DEFAULT_STYLE,
407 const wxValidator& validator = wxDefaultValidator,
408 const wxString& name = wxPyFontPickerCtrlNameStr);
411 // get the font chosen
412 wxFont GetSelectedFont() const;
414 // sets currently displayed font
415 void SetSelectedFont(const wxFont& f);
417 // set/get the max pointsize
418 void SetMaxPointSize(unsigned int max);
419 unsigned int GetMaxPointSize() const;
421 %property(MaxPointSize, GetMaxPointSize, SetMaxPointSize, doc="See `GetMaxPointSize` and `SetMaxPointSize`");
422 %property(SelectedFont, GetSelectedFont, SetSelectedFont, doc="See `GetSelectedFont` and `SetSelectedFont`");
426 %constant wxEventType wxEVT_COMMAND_FONTPICKER_CHANGED;
429 EVT_FONTPICKER_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_FONTPICKER_CHANGED, 1 )
433 class wxFontPickerEvent : public wxCommandEvent
436 wxFontPickerEvent(wxObject *generator, int id, const wxFont &f);
438 wxFont GetFont() const;
439 void SetFont(const wxFont &c);
441 %property(Font, GetFont, SetFont, doc="See `GetFont` and `SetFont`");
444 //---------------------------------------------------------------------------