1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Wrappers for the "gizmo" classes in wx/contrib
7 // Created: 23-Nov-2001
9 // Copyright: (c) 2001 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
14 "Various *gizmo* classes: `DynamicSashWindow`, `EditableListBox`,
15 `LEDNumberCtrl`, `TreeListCtrl`, etc."
18 %module(package="wx", docstring=DOCSTRING) gizmos
22 #include "wx/wxPython/wxPython.h"
23 #include "wx/wxPython/pyclasses.h"
25 #include <wx/gizmos/dynamicsash.h>
26 #include <wx/gizmos/editlbox.h>
27 #include <wx/gizmos/splittree.h>
28 #include <wx/gizmos/ledctrl.h>
29 #include <wx/gizmos/statpict.h>
31 #include <wx/listctrl.h>
32 #include <wx/treectrl.h>
33 #include <wx/imaglist.h>
37 //---------------------------------------------------------------------------
41 %pythoncode { import wx }
42 %pythoncode { __docfilter__ = wx._core.__DocFilter(globals()) }
45 MAKE_CONST_WXSTRING2(DynamicSashNameStr, wxT("dynamicSashWindow"));
46 MAKE_CONST_WXSTRING2(EditableListBoxNameStr, wxT("editableListBox"));
47 MAKE_CONST_WXSTRING(StaticPictureNameStr);
49 MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
51 //---------------------------------------------------------------------------
54 wxDS_MANAGE_SCROLLBARS,
58 %constant wxEventType wxEVT_DYNAMIC_SASH_SPLIT;
59 %constant wxEventType wxEVT_DYNAMIC_SASH_UNIFY;
63 wxDynamicSashSplitEvents are sent to your view by wxDynamicSashWindow
64 whenever your view is being split by the user. It is your
65 responsibility to handle this event by creating a new view window as
66 a child of the wxDynamicSashWindow. wxDynamicSashWindow will
67 automatically reparent it to the proper place in its window hierarchy.
69 class wxDynamicSashSplitEvent : public wxCommandEvent {
71 wxDynamicSashSplitEvent(wxObject *target);
76 wxDynamicSashUnifyEvents are sent to your view by wxDynamicSashWindow
77 whenever the sash which splits your view and its sibling is being
78 reunified such that your view is expanding to replace its sibling.
79 You needn't do anything with this event if you are allowing
80 wxDynamicSashWindow to manage your view's scrollbars, but it is useful
81 if you are managing the scrollbars yourself so that you can keep
82 the scrollbars' event handlers connected to your view's event handler
85 class wxDynamicSashUnifyEvent : public wxCommandEvent {
87 wxDynamicSashUnifyEvent(wxObject *target);
96 wxDynamicSashWindow widgets manages the way other widgets are viewed.
97 When a wxDynamicSashWindow is first shown, it will contain one child
98 view, a viewport for that child, and a pair of scrollbars to allow the
99 user to navigate the child view area. Next to each scrollbar is a small
100 tab. By clicking on either tab and dragging to the appropriate spot, a
101 user can split the view area into two smaller views separated by a
102 draggable sash. Later, when the user wishes to reunify the two subviews,
103 the user simply drags the sash to the side of the window.
104 wxDynamicSashWindow will automatically reparent the appropriate child
105 view back up the window hierarchy, and the wxDynamicSashWindow will have
106 only one child view once again.
108 As an application developer, you will simply create a wxDynamicSashWindow
109 using either the Create() function or the more complex constructor
110 provided below, and then create a view window whose parent is the
111 wxDynamicSashWindow. The child should respond to
112 wxDynamicSashSplitEvents -- perhaps with an OnSplit() event handler -- by
113 constructing a new view window whose parent is also the
114 wxDynamicSashWindow. That's it! Now your users can dynamically split
115 and reunify the view you provided.
117 If you wish to handle the scrollbar events for your view, rather than
118 allowing wxDynamicSashWindow to do it for you, things are a bit more
119 complex. (You might want to handle scrollbar events yourself, if,
120 for instance, you wish to scroll a subwindow of the view you add to
121 your wxDynamicSashWindow object, rather than scrolling the whole view.)
122 In this case, you will need to construct your wxDynamicSashWindow without
123 the wxDS_MANAGE_SCROLLBARS style and you will need to use the
124 GetHScrollBar() and GetVScrollBar() methods to retrieve the scrollbar
125 controls and call SetEventHanler() on them to redirect the scrolling
126 events whenever your window is reparented by wxDyanmicSashWindow.
127 You will need to set the scrollbars' event handler at three times:
129 * When your view is created
130 * When your view receives a wxDynamicSashSplitEvent
131 * When your view receives a wxDynamicSashUnifyEvent
133 See the dynsash_switch sample application for an example which does this.
137 MustHaveApp(wxDynamicSashWindow);
139 class wxDynamicSashWindow : public wxWindow {
141 %pythonAppend wxDynamicSashWindow "self._setOORInfo(self)"
142 %pythonAppend wxDynamicSashWindow() ""
144 wxDynamicSashWindow(wxWindow *parent, wxWindowID id=-1,
145 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
146 long style = wxCLIP_CHILDREN | wxDS_MANAGE_SCROLLBARS | wxDS_DRAG_CORNER,
147 const wxString& name = wxPyDynamicSashNameStr);
148 %RenameCtor(PreDynamicSashWindow, wxDynamicSashWindow());
150 bool Create(wxWindow *parent, wxWindowID id=-1,
151 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
152 long style = wxCLIP_CHILDREN | wxDS_MANAGE_SCROLLBARS | wxDS_DRAG_CORNER,
153 const wxString& name = wxPyDynamicSashNameStr);
155 wxScrollBar *GetHScrollBar(const wxWindow *child) const;
156 wxScrollBar *GetVScrollBar(const wxWindow *child) const;
162 EVT_DYNAMIC_SASH_SPLIT = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_SPLIT, 1 )
163 EVT_DYNAMIC_SASH_UNIFY = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_UNIFY, 1 )
166 //---------------------------------------------------------------------------
167 //---------------------------------------------------------------------------
175 // This class provides a composite control that lets the
176 // user easily enter list of strings
177 MustHaveApp(wxEditableListBox);
178 class wxEditableListBox : public wxPanel
181 %pythonAppend wxEditableListBox "self._setOORInfo(self)"
182 %pythonAppend wxEditableListBox() ""
184 wxEditableListBox(wxWindow *parent, wxWindowID id=-1,
185 const wxString& label = wxPyEmptyString,
186 const wxPoint& pos = wxDefaultPosition,
187 const wxSize& size = wxDefaultSize,
188 long style = wxEL_ALLOW_NEW | wxEL_ALLOW_EDIT | wxEL_ALLOW_DELETE,
189 const wxString& name = wxPyEditableListBoxNameStr);
192 void SetStrings(const wxArrayString& strings);
194 //void GetStrings(wxArrayString& strings);
196 PyObject* GetStrings() {
197 wxArrayString strings;
198 self->GetStrings(strings);
199 return wxArrayString2PyList_helper(strings);
203 wxPyListCtrl* GetListCtrl();
204 wxBitmapButton* GetDelButton();
205 wxBitmapButton* GetNewButton();
206 wxBitmapButton* GetUpButton();
207 wxBitmapButton* GetDownButton();
208 wxBitmapButton* GetEditButton();
213 //---------------------------------------------------------------------------
217 * wxRemotelyScrolledTreeCtrl
219 * This tree control disables its vertical scrollbar and catches scroll
220 * events passed by a scrolled window higher in the hierarchy.
221 * It also updates the scrolled window vertical scrollbar as appropriate.
225 typedef wxTreeCtrl wxPyTreeCtrl;
228 MustHaveApp(wxRemotelyScrolledTreeCtrl);
230 class wxRemotelyScrolledTreeCtrl: public wxPyTreeCtrl
233 %pythonAppend wxRemotelyScrolledTreeCtrl "self._setOORInfo(self)"
234 %pythonAppend wxRemotelyScrolledTreeCtrl() ""
236 wxRemotelyScrolledTreeCtrl(wxWindow* parent, wxWindowID id,
237 const wxPoint& pos = wxDefaultPosition,
238 const wxSize& size = wxDefaultSize,
239 long style = wxTR_HAS_BUTTONS);
242 void HideVScrollbar();
244 // Adjust the containing wxScrolledWindow's scrollbars appropriately
245 void AdjustRemoteScrollbars();
247 // Find the scrolled window that contains this control
248 wxScrolledWindow* GetScrolledWindow() const;
250 // Scroll to the given line (in scroll units where each unit is
251 // the height of an item)
252 void ScrollToLine(int posHoriz, int posVert);
254 // The companion window is one which will get notified when certain
255 // events happen such as node expansion
256 void SetCompanionWindow(wxWindow* companion);
257 wxWindow* GetCompanionWindow() const;
263 * wxTreeCompanionWindow
265 * A window displaying values associated with tree control items.
269 class wxPyTreeCompanionWindow: public wxTreeCompanionWindow
272 wxPyTreeCompanionWindow(wxWindow* parent, wxWindowID id = -1,
273 const wxPoint& pos = wxDefaultPosition,
274 const wxSize& size = wxDefaultSize,
276 : wxTreeCompanionWindow(parent, id, pos, size, style) {}
279 virtual void DrawItem(wxDC& dc, wxTreeItemId id, const wxRect& rect) {
281 wxPyBlock_t blocked = wxPyBeginBlockThreads();
282 if ((found = wxPyCBH_findCallback(m_myInst, "DrawItem"))) {
283 PyObject* dcobj = wxPyMake_wxObject(&dc,false);
284 PyObject* idobj = wxPyConstructObject((void*)&id, wxT("wxTreeItemId"), false);
285 PyObject* recobj= wxPyConstructObject((void*)&rect, wxT("wxRect"), false);
286 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OOO)", dcobj, idobj, recobj));
291 wxPyEndBlockThreads(blocked);
293 wxTreeCompanionWindow::DrawItem(dc, id, rect);
301 MustHaveApp(wxPyTreeCompanionWindow);
303 %rename(TreeCompanionWindow) wxPyTreeCompanionWindow;
304 class wxPyTreeCompanionWindow: public wxWindow
307 %pythonAppend wxPyTreeCompanionWindow "self._setOORInfo(self);self._setCallbackInfo(self, TreeCompanionWindow)"
308 %pythonAppend wxPyTreeCompanionWindow() ""
310 wxPyTreeCompanionWindow(wxWindow* parent, wxWindowID id = -1,
311 const wxPoint& pos = wxDefaultPosition,
312 const wxSize& size = wxDefaultSize,
314 void _setCallbackInfo(PyObject* self, PyObject* _class);
316 wxRemotelyScrolledTreeCtrl* GetTreeCtrl() const;
317 void SetTreeCtrl(wxRemotelyScrolledTreeCtrl* treeCtrl);
323 * wxThinSplitterWindow
325 * Implements a splitter with a less obvious sash
326 * than the usual one.
329 MustHaveApp(wxThinSplitterWindow);
331 class wxThinSplitterWindow: public wxSplitterWindow
334 %pythonAppend wxThinSplitterWindow "self._setOORInfo(self)"
335 %pythonAppend wxThinSplitterWindow() ""
337 wxThinSplitterWindow(wxWindow* parent, wxWindowID id = -1,
338 const wxPoint& pos = wxDefaultPosition,
339 const wxSize& size = wxDefaultSize,
340 long style = wxSP_3D | wxCLIP_CHILDREN);
346 * wxSplitterScrolledWindow
348 * This scrolled window is aware of the fact that one of its
349 * children is a splitter window. It passes on its scroll events
350 * (after some processing) to both splitter children for them
351 * scroll appropriately.
354 MustHaveApp(wxSplitterScrolledWindow);
356 class wxSplitterScrolledWindow: public wxScrolledWindow
359 %pythonAppend wxSplitterScrolledWindow "self._setOORInfo(self)"
360 %pythonAppend wxSplitterScrolledWindow() ""
362 wxSplitterScrolledWindow(wxWindow* parent, wxWindowID id = -1,
363 const wxPoint& pos = wxDefaultPosition,
364 const wxSize& size = wxDefaultSize,
369 //---------------------------------------------------------------------------
370 //---------------------------------------------------------------------------
385 MustHaveApp(wxLEDNumberCtrl);
387 class wxLEDNumberCtrl : public wxControl
390 %pythonAppend wxLEDNumberCtrl "self._setOORInfo(self)"
391 %pythonAppend wxLEDNumberCtrl() ""
393 wxLEDNumberCtrl(wxWindow *parent, wxWindowID id = -1,
394 const wxPoint& pos = wxDefaultPosition,
395 const wxSize& size = wxDefaultSize,
396 long style = wxLED_ALIGN_LEFT | wxLED_DRAW_FADED);
397 %RenameCtor(PreLEDNumberCtrl, wxLEDNumberCtrl());
399 bool Create(wxWindow *parent, wxWindowID id = -1,
400 const wxPoint& pos = wxDefaultPosition,
401 const wxSize& size = wxDefaultSize,
402 long style = wxLED_ALIGN_LEFT | wxLED_DRAW_FADED);
404 wxLEDValueAlign GetAlignment() const;
405 bool GetDrawFaded() const;
406 const wxString &GetValue() const;
408 void SetAlignment(wxLEDValueAlign Alignment, bool Redraw = true);
409 void SetDrawFaded(bool DrawFaded, bool Redraw = true);
410 void SetValue(const wxString &Value, bool Redraw = true);
416 //----------------------------------------------------------------------
420 //----------------------------------------------------------------------
430 MustHaveApp(wxStaticPicture);
432 class wxStaticPicture : public wxControl
435 %pythonAppend wxStaticPicture "self._setOORInfo(self)"
436 %pythonAppend wxStaticPicture() ""
438 wxStaticPicture( wxWindow* parent, wxWindowID id=-1,
439 const wxBitmap& label=wxNullBitmap,
440 const wxPoint& pos = wxDefaultPosition,
441 const wxSize& size = wxDefaultSize,
443 const wxString& name = wxPyStaticPictureNameStr );
445 %RenameCtor(PreStaticPicture, wxStaticPicture());
447 bool Create( wxWindow* parent, wxWindowID id=-1,
448 const wxBitmap& label=wxNullBitmap,
449 const wxPoint& pos = wxDefaultPosition,
450 const wxSize& size = wxDefaultSize,
452 const wxString& name = wxPyStaticPictureNameStr );
454 void SetBitmap( const wxBitmap& bmp );
455 wxBitmap GetBitmap() const;
456 void SetIcon( const wxIcon& icon );
457 wxIcon GetIcon() const;
459 void SetAlignment( int align );
460 int GetAlignment() const;
462 void SetScale( int scale );
463 int GetScale() const;
465 void SetCustomScale( float sx, float sy );
466 void GetCustomScale( float* OUTPUT, float* OUTPUT ) const;
471 //----------------------------------------------------------------------
472 //----------------------------------------------------------------------
475 wxPyPtrTypeMap_Add("wxTreeCompanionWindow", "wxPyTreeCompanionWindow");
478 //----------------------------------------------------------------------
479 //----------------------------------------------------------------------