1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: More control (widget) classes for wxPython
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
17 #include <wx/listctrl.h>
18 #include <wx/treectrl.h>
20 #include <wx/tabctrl.h>
24 //----------------------------------------------------------------------
27 %include my_typemaps.i
29 // Import some definitions of other classes, etc.
37 %pragma(python) code = "import wxp"
39 //----------------------------------------------------------------------
42 extern wxValidator wxPyDefaultValidator;
45 //----------------------------------------------------------------------
49 long m_mask; // Indicates what fields are valid
50 long m_itemId; // The zero-based item position
51 int m_col; // Zero-based column, if in report mode
52 long m_state; // The state of the item
53 long m_stateMask; // Which flags of m_state are valid (uses same flags)
54 wxString m_text; // The label/header text
55 int m_image; // The zero-based index into an image list
56 long m_data; // App-defined data
57 // wxColour *m_colour; // only wxGLC, not supported by Windows ;->
60 int m_format; // left, right, centre
61 int m_width; // width of column
67 class wxListEvent: public wxCommandEvent {
81 class wxListCtrl : public wxControl {
84 wxListCtrl(wxWindow* parent, wxWindowID id,
85 const wxPoint& pos = wxPyDefaultPosition,
86 const wxSize& size = wxPyDefaultSize,
87 long style = wxLC_ICON,
88 const wxValidator& validator = wxPyDefaultValidator,
89 char* name = "listCtrl");
91 wxListCtrl(wxWindow* parent, wxWindowID id,
92 const wxPoint& pos = wxPyDefaultPosition,
93 const wxSize& size = wxPyDefaultSize,
94 long style = wxLC_ICON,
95 char* name = "listctrl");
98 %pragma(python) addtomethod = "__init__:wxp._StdWindowCallbacks(self)"
100 bool Arrange(int flag = wxLIST_ALIGN_DEFAULT);
101 bool DeleteItem(long item);
102 bool DeleteAllItems();
103 bool DeleteColumn(int col);
105 bool DeleteAllColumns(void);
107 wxTextCtrl* EditLabel(long item);
108 bool EndEditLabel(bool cancel);
110 bool EnsureVisible(long item);
111 long FindItem(long start, const wxString& str, bool partial = FALSE);
112 %name(FindItemData)long FindItem(long start, long data);
113 %name(FindItemAtPos)long FindItem(long start, const wxPoint& pt,
115 bool GetColumn(int col, wxListItem& item);
116 int GetColumnWidth(int col);
117 int GetCountPerPage();
119 wxTextCtrl* GetEditControl();
121 wxImageList* GetImageList(int which);
122 long GetItemData(long item);
125 %new wxListItem* GetItem() {
126 wxListItem* info = new wxListItem;
127 self->GetItem(*info);
130 %new wxPoint* GetItemPosition(long item) {
131 wxPoint* pos = new wxPoint;
132 self->GetItemPosition(item, *pos);
135 %new wxRect* GetItemRect(long item, int code = wxLIST_RECT_BOUNDS) {
136 wxRect* rect= new wxRect;
137 self->GetItemRect(item, *rect, code);
142 int GetItemState(long item, long stateMask);
144 int GetItemSpacing(bool isSmall);
145 wxString GetItemText(long item);
146 long GetNextItem(long item,
147 int geometry = wxLIST_NEXT_ALL,
148 int state = wxLIST_STATE_DONTCARE);
149 int GetSelectedItemCount();
151 wxColour GetTextColour();
154 long HitTest(const wxPoint& point, int& OUTPUT);
155 %name(InsertColumnWithInfo)long InsertColumn(long col, wxListItem& info);
156 long InsertColumn(long col, const wxString& heading,
157 int format = wxLIST_FORMAT_LEFT,
160 long InsertItem(wxListItem& info);
161 %name(InsertStringItem) long InsertItem(long index, const wxString& label);
162 %name(InsertImageItem) long InsertItem(long index, int imageIndex);
163 %name(InsertImageStringItem)long InsertItem(long index, const wxString& label,
166 bool ScrollList(int dx, int dy);
167 void SetBackgroundColour(const wxColour& col);
168 bool SetColumn(int col, wxListItem& item);
169 bool SetColumnWidth(int col, int width);
170 void SetImageList(wxImageList* imageList, int which);
171 bool SetItem(wxListItem& info);
172 %name(SetItemString)long SetItem(long index, int col, const wxString& label,
174 bool SetItemData(long item, long data);
175 bool SetItemImage(long item, int image, int selImage);
176 bool SetItemPosition(long item, const wxPoint& pos);
177 bool SetItemState(long item, long state, long stateMask);
178 void SetItemText(long item, const wxString& text);
179 void SetSingleStyle(long style, bool add = TRUE);
181 void SetTextColour(const wxColour& col);
183 void SetWindowStyleFlag(long style);
184 // TODO: bool SortItems(wxListCtrlCompare fn, long data);
189 //----------------------------------------------------------------------
197 wxTREE_MASK_SELECTED_IMAGE,
198 wxTREE_MASK_CHILDREN,
202 wxTREE_STATE_DROPHILITED,
203 wxTREE_STATE_EXPANDED,
204 wxTREE_STATE_EXPANDEDONCE,
205 wxTREE_STATE_FOCUSED,
206 wxTREE_STATE_SELECTED,
209 wxTREE_HITTEST_ABOVE,
210 wxTREE_HITTEST_BELOW,
211 wxTREE_HITTEST_NOWHERE,
212 wxTREE_HITTEST_ONITEMBUTTON,
213 wxTREE_HITTEST_ONITEMICON,
214 wxTREE_HITTEST_ONITEMINDENT,
215 wxTREE_HITTEST_ONITEMLABEL,
216 wxTREE_HITTEST_ONITEMRIGHT,
217 wxTREE_HITTEST_ONITEMSTATEICON,
218 wxTREE_HITTEST_TOLEFT,
219 wxTREE_HITTEST_TORIGHT,
220 wxTREE_HITTEST_ONITEM,
227 wxTREE_NEXT_DROPHILITE,
228 wxTREE_NEXT_FIRSTVISIBLE,
230 wxTREE_NEXT_NEXTVISIBLE,
232 wxTREE_NEXT_PREVIOUS,
233 wxTREE_NEXT_PREVIOUSVISIBLE,
238 wxTREE_EXPAND_EXPAND,
239 wxTREE_EXPAND_COLLAPSE,
240 wxTREE_EXPAND_COLLAPSE_RESET,
274 class wxTreeEvent : public wxCommandEvent {
285 class wxTreeCtrl : public wxControl {
288 wxTreeCtrl(wxWindow *parent, wxWindowID id = -1,
289 const wxPoint& pos = wxPyDefaultPosition,
290 const wxSize& size = wxPyDefaultSize,
291 long style = wxTR_HAS_BUTTONS,
292 const wxValidator& validator = wxPyDefaultValidator,
293 char* name = "wxTreeCtrl");
295 wxTreeCtrl(wxWindow *parent, wxWindowID id = -1,
296 const wxPoint& pos = wxPyDefaultPosition,
297 const wxSize& size = wxPyDefaultSize,
298 long style = wxTR_HAS_BUTTONS,
299 char* name = "wxTreeCtrl");
302 %pragma(python) addtomethod = "__init__:wxp._StdWindowCallbacks(self)"
304 bool DeleteAllItems();
306 bool DeleteItem(long item);
308 void DeleteItem(long item);
311 wxTextCtrl* EditLabel(long item);
312 bool EnsureVisible(long item);
313 bool ExpandItem(long item, int action);
314 long GetChild(long item);
318 wxTextCtrl* GetEditControl();
319 long GetFirstVisibleItem();
321 wxImageList* GetImageList(int which = wxIMAGE_LIST_NORMAL);
323 long GetItemData(long item);
326 %new wxTreeItem* GetItem() {
327 wxTreeItem* info = new wxTreeItem;
328 self->GetItem(*info);
332 %new wxRect* GetItemRect(long item, int textOnly = FALSE) {
333 wxRect* rect = new wxRect;
334 self->GetItemRect(item, *rect, textOnly);
341 int GetItemState(long item, long stateMask);
343 wxString GetItemText(long item);
345 long GetNextItem(long item, int code);
346 long GetNextVisibleItem(long item);
348 long GetParent(long item);
351 long HitTest(const wxPoint& point, int& OUTPUT); // *** check this
352 long InsertItem(long parent, wxTreeItem& info,
353 long insertAfter = wxTREE_INSERT_LAST);
354 %name(InsertItemString)
355 long InsertItem(long parent, const wxString& label,
356 int image = -1, int selImage = -1,
357 long insertAfter = wxTREE_INSERT_LAST);
358 bool ItemHasChildren(long item);
360 bool ScrollTo(long item);
362 bool SelectItem(long item);
363 void SetIndent(int indent);
364 void SetImageList(wxImageList* imageList, int which = wxIMAGE_LIST_NORMAL);
365 bool SetItem(wxTreeItem& info);
367 bool SetItemImage(long item, int image, int selImage);
369 void SetItemImage(long item, int image, int selImage);
372 bool SetItemState(long item, long state, long stateMask);
374 void SetItemText(long item, const wxString& text);
375 bool SetItemData(long item, long data);
377 bool SortChildren(long item);
381 //----------------------------------------------------------------------
385 class wxTabEvent : public wxCommandEvent {
391 class wxTabCtrl : public wxControl {
393 wxTabCtrl(wxWindow* parent, wxWindowID id,
394 const wxPoint& pos = wxPyDefaultPosition,
395 const wxSize& size = wxPyDefaultSize,
397 char* name = "tabCtrl");
399 %pragma(python) addtomethod = "__init__:wxp._StdWindowCallbacks(self)"
401 bool DeleteAllItems();
402 bool DeleteItem(int item);
403 wxImageList* GetImageList();
405 // TODO: void* GetItemData();
406 int GetItemImage(int item);
409 %new wxRect* GetItemRect(int item) {
410 wxRect* rect = new wxRect;
411 self->GetItemRect(item, *rect);
416 wxString GetItemText(int item);
419 int HitTest(const wxPoint& pt, long& OUTPUT);
420 void InsertItem(int item, const wxString& text,
421 int imageId = -1, void* clientData = NULL);
422 // TODO: bool SetItemData(int item, void* data);
423 bool SetItemImage(int item, int image);
424 void SetImageList(wxImageList* imageList);
425 void SetItemSize(const wxSize& size);
426 bool SetItemText(int item, const wxString& text);
427 void SetPadding(const wxSize& padding);
428 int SetSelection(int item);
435 //----------------------------------------------------------------------
438 /////////////////////////////////////////////////////////////////////////////
441 // Revision 1.4 1998/10/02 06:40:36 RD
442 // Version 0.4 of wxPython for MSW.
444 // Revision 1.3 1998/08/18 19:48:15 RD
445 // more wxGTK compatibility things.
447 // It builds now but there are serious runtime problems...
449 // Revision 1.2 1998/08/15 07:36:30 RD
450 // - Moved the header in the .i files out of the code that gets put into
451 // the .cpp files. It caused CVS conflicts because of the RCS ID being
452 // different each time.
454 // - A few minor fixes.
456 // Revision 1.1 1998/08/09 08:25:49 RD