]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: treelistctrl.cpp | |
3 | // Purpose: multi column tree control implementation | |
4 | // Author: Robert Roebling | |
5 | // Maintainer: Otto Wyss | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2004 Robert Roebling, Julian Smart, Alberto Griggio, | |
9 | // Vadim Zeitlin, Otto Wyss | |
10 | // Licence: wxWindows | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | // =========================================================================== | |
14 | // declarations | |
15 | // =========================================================================== | |
16 | ||
17 | // --------------------------------------------------------------------------- | |
18 | // headers | |
19 | // --------------------------------------------------------------------------- | |
20 | ||
21 | // For compilers that support precompilation, includes "wx.h". | |
22 | #include "wx/wxprec.h" | |
23 | ||
24 | #ifdef __BORLANDC__ | |
25 | #pragma hdrstop | |
26 | #endif | |
27 | ||
28 | ||
29 | #include <wx/treebase.h> | |
30 | #include <wx/timer.h> | |
31 | #include <wx/textctrl.h> | |
32 | #include <wx/imaglist.h> | |
33 | #include <wx/settings.h> | |
34 | #include <wx/dcclient.h> | |
35 | #include <wx/dcscreen.h> | |
36 | #include <wx/scrolwin.h> | |
37 | #if wxCHECK_VERSION(2, 7, 0) | |
38 | #include <wx/renderer.h> | |
39 | #endif | |
40 | ||
41 | #ifdef __WXMAC__ | |
42 | #include "wx/mac/private.h" | |
43 | #endif | |
44 | ||
45 | #include "wx/treelistctrl.h" | |
46 | ||
47 | ||
48 | // --------------------------------------------------------------------------- | |
49 | // array types | |
50 | // --------------------------------------------------------------------------- | |
51 | ||
52 | class wxTreeListItem; | |
53 | ||
54 | #if !wxCHECK_VERSION(2, 5, 0) | |
55 | WX_DEFINE_ARRAY(wxTreeListItem *, wxArrayTreeListItems); | |
56 | #else | |
57 | WX_DEFINE_ARRAY_PTR(wxTreeListItem *, wxArrayTreeListItems); | |
58 | #endif | |
59 | ||
60 | #include <wx/dynarray.h> | |
61 | WX_DECLARE_OBJARRAY(wxTreeListColumnInfo, wxArrayTreeListColumnInfo); | |
62 | #include <wx/arrimpl.cpp> | |
63 | WX_DEFINE_OBJARRAY(wxArrayTreeListColumnInfo); | |
64 | ||
65 | ||
66 | // -------------------------------------------------------------------------- | |
67 | // constants | |
68 | // -------------------------------------------------------------------------- | |
69 | ||
70 | static const int NO_IMAGE = -1; | |
71 | ||
72 | static const int LINEHEIGHT = 10; | |
73 | static const int LINEATROOT = 5; | |
74 | static const int MARGIN = 2; | |
75 | static const int MININDENT = 16; | |
76 | static const int BTNWIDTH = 9; | |
77 | static const int BTNHEIGHT = 9; | |
78 | static const int EXTRA_WIDTH = 4; | |
79 | static const int EXTRA_HEIGHT = 4; | |
80 | static const int HEADER_OFFSET_X = 1; | |
81 | static const int HEADER_OFFSET_Y = 1; | |
82 | ||
83 | static const int DRAG_TIMER_TICKS = 250; // minimum drag wait time in ms | |
84 | static const int FIND_TIMER_TICKS = 500; // minimum find wait time in ms | |
85 | static const int RENAME_TIMER_TICKS = 250; // minimum rename wait time in ms | |
86 | ||
87 | const wxChar* wxTreeListCtrlNameStr = _T("treelistctrl"); | |
88 | ||
89 | static wxTreeListColumnInfo wxInvalidTreeListColumnInfo; | |
90 | ||
91 | ||
92 | // --------------------------------------------------------------------------- | |
93 | // private classes | |
94 | // --------------------------------------------------------------------------- | |
95 | //----------------------------------------------------------------------------- | |
96 | // wxTreeListHeaderWindow (internal) | |
97 | //----------------------------------------------------------------------------- | |
98 | ||
99 | class wxTreeListHeaderWindow : public wxWindow | |
100 | { | |
101 | protected: | |
102 | wxTreeListMainWindow *m_owner; | |
103 | const wxCursor *m_currentCursor; | |
104 | const wxCursor *m_resizeCursor; | |
105 | bool m_isDragging; | |
106 | ||
107 | // column being resized | |
108 | int m_column; | |
109 | ||
110 | // divider line position in logical (unscrolled) coords | |
111 | int m_currentX; | |
112 | ||
113 | // minimal position beyond which the divider line can't be dragged in | |
114 | // logical coords | |
115 | int m_minX; | |
116 | ||
117 | wxArrayTreeListColumnInfo m_columns; | |
118 | ||
119 | // total width of the columns | |
120 | int m_total_col_width; | |
121 | ||
122 | #if wxCHECK_VERSION_FULL(2, 7, 0, 1) | |
123 | // which col header is currently highlighted with mouse-over | |
124 | int m_hotTrackCol; | |
125 | ||
126 | int XToCol(int x); | |
127 | void RefreshColLabel(int col); | |
128 | #endif | |
129 | ||
130 | public: | |
131 | wxTreeListHeaderWindow(); | |
132 | ||
133 | wxTreeListHeaderWindow( wxWindow *win, | |
134 | wxWindowID id, | |
135 | wxTreeListMainWindow *owner, | |
136 | const wxPoint &pos = wxDefaultPosition, | |
137 | const wxSize &size = wxDefaultSize, | |
138 | long style = 0, | |
139 | const wxString &name = _T("wxtreelistctrlcolumntitles") ); | |
140 | ||
141 | virtual ~wxTreeListHeaderWindow(); | |
142 | ||
143 | void DoDrawRect( wxDC *dc, int x, int y, int w, int h ); | |
144 | void DrawCurrent(); | |
145 | void AdjustDC(wxDC& dc); | |
146 | ||
147 | void OnPaint( wxPaintEvent &event ); | |
148 | void OnMouse( wxMouseEvent &event ); | |
149 | void OnSetFocus( wxFocusEvent &event ); | |
150 | ||
151 | // total width of all columns | |
152 | int GetWidth() const { return m_total_col_width; } | |
153 | ||
154 | // column manipulation | |
155 | int GetColumnCount() const { return m_columns.GetCount(); } | |
156 | ||
157 | void AddColumn (const wxTreeListColumnInfo& colInfo); | |
158 | ||
159 | void InsertColumn (int before, const wxTreeListColumnInfo& colInfo); | |
160 | ||
161 | void RemoveColumn (int column); | |
162 | ||
163 | // column information manipulation | |
164 | const wxTreeListColumnInfo& GetColumn (int column) const{ | |
165 | wxCHECK_MSG ((column >= 0) && (column < GetColumnCount()), | |
166 | wxInvalidTreeListColumnInfo, _T("Invalid column")); | |
167 | return m_columns[column]; | |
168 | } | |
169 | wxTreeListColumnInfo& GetColumn (int column) { | |
170 | wxCHECK_MSG ((column >= 0) && (column < GetColumnCount()), | |
171 | wxInvalidTreeListColumnInfo, _T("Invalid column")); | |
172 | return m_columns[column]; | |
173 | } | |
174 | void SetColumn (int column, const wxTreeListColumnInfo& info); | |
175 | ||
176 | wxString GetColumnText (int column) const { | |
177 | wxCHECK_MSG ((column >= 0) && (column < GetColumnCount()), | |
178 | wxEmptyString, _T("Invalid column")); | |
179 | return m_columns[column].GetText(); | |
180 | } | |
181 | void SetColumnText (int column, const wxString& text) { | |
182 | wxCHECK_RET ((column >= 0) && (column < GetColumnCount()), | |
183 | _T("Invalid column")); | |
184 | m_columns[column].SetText (text); | |
185 | } | |
186 | ||
187 | int GetColumnAlignment (int column) const { | |
188 | wxCHECK_MSG ((column >= 0) && (column < GetColumnCount()), | |
189 | wxALIGN_LEFT, _T("Invalid column")); | |
190 | return m_columns[column].GetAlignment(); | |
191 | } | |
192 | void SetColumnAlignment (int column, int flag) { | |
193 | wxCHECK_RET ((column >= 0) && (column < GetColumnCount()), | |
194 | _T("Invalid column")); | |
195 | m_columns[column].SetAlignment (flag); | |
196 | } | |
197 | ||
198 | int GetColumnWidth (int column) const { | |
199 | wxCHECK_MSG ((column >= 0) && (column < GetColumnCount()), | |
200 | -1, _T("Invalid column")); | |
201 | return m_columns[column].GetWidth(); | |
202 | } | |
203 | void SetColumnWidth (int column, int width); | |
204 | ||
205 | bool IsColumnEditable (int column) const { | |
206 | wxCHECK_MSG ((column >= 0) && (column < GetColumnCount()), | |
207 | false, _T("Invalid column")); | |
208 | return m_columns[column].IsEditable(); | |
209 | } | |
210 | ||
211 | bool IsColumnShown (int column) const { | |
212 | wxCHECK_MSG ((column >= 0) && (column < GetColumnCount()), | |
213 | true, _T("Invalid column")); | |
214 | return m_columns[column].IsShown(); | |
215 | } | |
216 | ||
217 | // needs refresh | |
218 | bool m_dirty; | |
219 | ||
220 | private: | |
221 | // common part of all ctors | |
222 | void Init(); | |
223 | ||
224 | void SendListEvent(wxEventType type, wxPoint pos); | |
225 | ||
226 | DECLARE_DYNAMIC_CLASS(wxTreeListHeaderWindow) | |
227 | DECLARE_EVENT_TABLE() | |
228 | }; | |
229 | ||
230 | ||
231 | // this is the "true" control | |
232 | class wxTreeListMainWindow: public wxScrolledWindow | |
233 | { | |
234 | public: | |
235 | // creation | |
236 | // -------- | |
237 | wxTreeListMainWindow() { Init(); } | |
238 | ||
239 | wxTreeListMainWindow (wxTreeListCtrl *parent, wxWindowID id = -1, | |
240 | const wxPoint& pos = wxDefaultPosition, | |
241 | const wxSize& size = wxDefaultSize, | |
242 | long style = wxTR_DEFAULT_STYLE, | |
243 | const wxValidator &validator = wxDefaultValidator, | |
244 | const wxString& name = _T("wxtreelistmainwindow")) | |
245 | { | |
246 | Init(); | |
247 | Create (parent, id, pos, size, style, validator, name); | |
248 | } | |
249 | ||
250 | virtual ~wxTreeListMainWindow(); | |
251 | ||
252 | bool Create(wxTreeListCtrl *parent, wxWindowID id = -1, | |
253 | const wxPoint& pos = wxDefaultPosition, | |
254 | const wxSize& size = wxDefaultSize, | |
255 | long style = wxTR_DEFAULT_STYLE, | |
256 | const wxValidator &validator = wxDefaultValidator, | |
257 | const wxString& name = _T("wxtreelistctrl")); | |
258 | ||
259 | // accessors | |
260 | // --------- | |
261 | ||
262 | // return true if this is a virtual list control | |
263 | bool IsVirtual() const { return HasFlag(wxTR_VIRTUAL); } | |
264 | ||
265 | // get the total number of items in the control | |
266 | size_t GetCount() const; | |
267 | ||
268 | // indent is the number of pixels the children are indented relative to | |
269 | // the parents position. SetIndent() also redraws the control | |
270 | // immediately. | |
271 | unsigned int GetIndent() const { return m_indent; } | |
272 | void SetIndent(unsigned int indent); | |
273 | ||
274 | // see wxTreeListCtrl for the meaning | |
275 | unsigned int GetLineSpacing() const { return m_linespacing; } | |
276 | void SetLineSpacing(unsigned int spacing); | |
277 | ||
278 | // image list: these functions allow to associate an image list with | |
279 | // the control and retrieve it. Note that when assigned with | |
280 | // SetImageList, the control does _not_ delete | |
281 | // the associated image list when it's deleted in order to allow image | |
282 | // lists to be shared between different controls. If you use | |
283 | // AssignImageList, the control _does_ delete the image list. | |
284 | ||
285 | // The normal image list is for the icons which correspond to the | |
286 | // normal tree item state (whether it is selected or not). | |
287 | // Additionally, the application might choose to show a state icon | |
288 | // which corresponds to an app-defined item state (for example, | |
289 | // checked/unchecked) which are taken from the state image list. | |
290 | wxImageList *GetImageList() const { return m_imageListNormal; } | |
291 | wxImageList *GetStateImageList() const { return m_imageListState; } | |
292 | wxImageList *GetButtonsImageList() const { return m_imageListButtons; } | |
293 | ||
294 | void SetImageList(wxImageList *imageList); | |
295 | void SetStateImageList(wxImageList *imageList); | |
296 | void SetButtonsImageList(wxImageList *imageList); | |
297 | void AssignImageList(wxImageList *imageList); | |
298 | void AssignStateImageList(wxImageList *imageList); | |
299 | void AssignButtonsImageList(wxImageList *imageList); | |
300 | ||
301 | // Functions to work with tree ctrl items. | |
302 | ||
303 | // accessors | |
304 | // --------- | |
305 | ||
306 | // retrieve item's label | |
307 | wxString GetItemText (const wxTreeItemId& item) const | |
308 | { return GetItemText (item, GetMainColumn()); } | |
309 | wxString GetItemText (const wxTreeItemId& item, int column) const; | |
310 | wxString GetItemText (wxTreeItemData* item, int column) const; | |
311 | ||
312 | // get one of the images associated with the item (normal by default) | |
313 | int GetItemImage (const wxTreeItemId& item, | |
314 | wxTreeItemIcon which = wxTreeItemIcon_Normal) const | |
315 | { return GetItemImage (item, GetMainColumn(), which); } | |
316 | int GetItemImage (const wxTreeItemId& item, int column, | |
317 | wxTreeItemIcon which = wxTreeItemIcon_Normal) const; | |
318 | ||
319 | // get the data associated with the item | |
320 | wxTreeItemData *GetItemData(const wxTreeItemId& item) const; | |
321 | ||
322 | bool GetItemBold(const wxTreeItemId& item) const; | |
323 | wxColour GetItemTextColour(const wxTreeItemId& item) const; | |
324 | wxColour GetItemBackgroundColour(const wxTreeItemId& item) const; | |
325 | wxFont GetItemFont(const wxTreeItemId& item) const; | |
326 | ||
327 | // modifiers | |
328 | // --------- | |
329 | ||
330 | // set item's label | |
331 | void SetItemText (const wxTreeItemId& item, const wxString& text) | |
332 | { SetItemText (item, GetMainColumn(), text); } | |
333 | void SetItemText (const wxTreeItemId& item, int column, const wxString& text); | |
334 | ||
335 | // get one of the images associated with the item (normal by default) | |
336 | void SetItemImage (const wxTreeItemId& item, int image, | |
337 | wxTreeItemIcon which = wxTreeItemIcon_Normal) | |
338 | { SetItemImage (item, GetMainColumn(), image, which); } | |
339 | void SetItemImage (const wxTreeItemId& item, int column, int image, | |
340 | wxTreeItemIcon which = wxTreeItemIcon_Normal); | |
341 | ||
342 | // associate some data with the item | |
343 | void SetItemData(const wxTreeItemId& item, wxTreeItemData *data); | |
344 | ||
345 | // force appearance of [+] button near the item. This is useful to | |
346 | // allow the user to expand the items which don't have any children now | |
347 | // - but instead add them only when needed, thus minimizing memory | |
348 | // usage and loading time. | |
349 | void SetItemHasChildren(const wxTreeItemId& item, bool has = true); | |
350 | ||
351 | // the item will be shown in bold | |
352 | void SetItemBold(const wxTreeItemId& item, bool bold = true); | |
353 | ||
354 | // set the item's text colour | |
355 | void SetItemTextColour(const wxTreeItemId& item, const wxColour& colour); | |
356 | ||
357 | // set the item's background colour | |
358 | void SetItemBackgroundColour(const wxTreeItemId& item, const wxColour& colour); | |
359 | ||
360 | // set the item's font (should be of the same height for all items) | |
361 | void SetItemFont(const wxTreeItemId& item, const wxFont& font); | |
362 | ||
363 | // set the window font | |
364 | virtual bool SetFont( const wxFont &font ); | |
365 | ||
366 | // set the styles. No need to specify a GetWindowStyle here since | |
367 | // the base wxWindow member function will do it for us | |
368 | void SetWindowStyle(const long styles); | |
369 | ||
370 | // item status inquiries | |
371 | // --------------------- | |
372 | ||
373 | // is the item visible (it might be outside the view or not expanded)? | |
374 | bool IsVisible(const wxTreeItemId& item, bool fullRow) const; | |
375 | // does the item has any children? | |
376 | bool HasChildren(const wxTreeItemId& item) const; | |
377 | // is the item expanded (only makes sense if HasChildren())? | |
378 | bool IsExpanded(const wxTreeItemId& item) const; | |
379 | // is this item currently selected (the same as has focus)? | |
380 | bool IsSelected(const wxTreeItemId& item) const; | |
381 | // is item text in bold font? | |
382 | bool IsBold(const wxTreeItemId& item) const; | |
383 | // does the layout include space for a button? | |
384 | ||
385 | // number of children | |
386 | // ------------------ | |
387 | ||
388 | // if 'recursively' is false, only immediate children count, otherwise | |
389 | // the returned number is the number of all items in this branch | |
390 | size_t GetChildrenCount(const wxTreeItemId& item, bool recursively = true); | |
391 | ||
392 | // navigation | |
393 | // ---------- | |
394 | ||
395 | // wxTreeItemId.IsOk() will return false if there is no such item | |
396 | ||
397 | // get the root tree item | |
398 | wxTreeItemId GetRootItem() const { return m_rootItem; } | |
399 | ||
400 | // get the item currently selected, only if a single item is selected | |
401 | wxTreeItemId GetSelection() const { return m_selectItem; } | |
402 | ||
403 | // get all the items currently selected, return count of items | |
404 | size_t GetSelections(wxArrayTreeItemIds&) const; | |
405 | ||
406 | // get the parent of this item (may return NULL if root) | |
407 | wxTreeItemId GetItemParent(const wxTreeItemId& item) const; | |
408 | ||
409 | // for this enumeration function you must pass in a "cookie" parameter | |
410 | // which is opaque for the application but is necessary for the library | |
411 | // to make these functions reentrant (i.e. allow more than one | |
412 | // enumeration on one and the same object simultaneously). Of course, | |
413 | // the "cookie" passed to GetFirstChild() and GetNextChild() should be | |
414 | // the same! | |
415 | ||
416 | // get child of this item | |
417 | #if !wxCHECK_VERSION(2, 5, 0) | |
418 | wxTreeItemId GetFirstChild(const wxTreeItemId& item, long& cookie) const; | |
419 | wxTreeItemId GetNextChild(const wxTreeItemId& item, long& cookie) const; | |
420 | wxTreeItemId GetPrevChild(const wxTreeItemId& item, long& cookie) const; | |
421 | wxTreeItemId GetLastChild(const wxTreeItemId& item, long& cookie) const; | |
422 | #else | |
423 | wxTreeItemId GetFirstChild(const wxTreeItemId& item, wxTreeItemIdValue& cookie) const; | |
424 | wxTreeItemId GetNextChild(const wxTreeItemId& item, wxTreeItemIdValue& cookie) const; | |
425 | wxTreeItemId GetPrevChild(const wxTreeItemId& item, wxTreeItemIdValue& cookie) const; | |
426 | wxTreeItemId GetLastChild(const wxTreeItemId& item, wxTreeItemIdValue& cookie) const; | |
427 | #endif | |
428 | ||
429 | // get sibling of this item | |
430 | wxTreeItemId GetNextSibling(const wxTreeItemId& item) const; | |
431 | wxTreeItemId GetPrevSibling(const wxTreeItemId& item) const; | |
432 | ||
433 | // get item in the full tree (currently only for internal use) | |
434 | wxTreeItemId GetNext(const wxTreeItemId& item, bool fulltree = true) const; | |
435 | wxTreeItemId GetPrev(const wxTreeItemId& item, bool fulltree = true) const; | |
436 | ||
437 | // get expanded item, see IsExpanded() | |
438 | wxTreeItemId GetFirstExpandedItem() const; | |
439 | wxTreeItemId GetNextExpanded(const wxTreeItemId& item) const; | |
440 | wxTreeItemId GetPrevExpanded(const wxTreeItemId& item) const; | |
441 | ||
442 | // get visible item, see IsVisible() | |
443 | wxTreeItemId GetFirstVisibleItem(bool fullRow) const; | |
444 | wxTreeItemId GetNextVisible(const wxTreeItemId& item, bool fullRow) const; | |
445 | wxTreeItemId GetPrevVisible(const wxTreeItemId& item, bool fullRow) const; | |
446 | ||
447 | // operations | |
448 | // ---------- | |
449 | ||
450 | // add the root node to the tree | |
451 | wxTreeItemId AddRoot (const wxString& text, | |
452 | int image = -1, int selectedImage = -1, | |
453 | wxTreeItemData *data = NULL); | |
454 | ||
455 | // insert a new item in as the first child of the parent | |
456 | wxTreeItemId PrependItem(const wxTreeItemId& parent, | |
457 | const wxString& text, | |
458 | int image = -1, int selectedImage = -1, | |
459 | wxTreeItemData *data = NULL); | |
460 | ||
461 | // insert a new item after a given one | |
462 | wxTreeItemId InsertItem(const wxTreeItemId& parent, | |
463 | const wxTreeItemId& idPrevious, | |
464 | const wxString& text, | |
465 | int image = -1, int selectedImage = -1, | |
466 | wxTreeItemData *data = NULL); | |
467 | ||
468 | // insert a new item before the one with the given index | |
469 | wxTreeItemId InsertItem(const wxTreeItemId& parent, | |
470 | size_t index, | |
471 | const wxString& text, | |
472 | int image = -1, int selectedImage = -1, | |
473 | wxTreeItemData *data = NULL); | |
474 | ||
475 | // insert a new item in as the last child of the parent | |
476 | wxTreeItemId AppendItem(const wxTreeItemId& parent, | |
477 | const wxString& text, | |
478 | int image = -1, int selectedImage = -1, | |
479 | wxTreeItemData *data = NULL); | |
480 | ||
481 | // delete this item and associated data if any | |
482 | void Delete(const wxTreeItemId& item); | |
483 | // delete all children (but don't delete the item itself) | |
484 | // NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events | |
485 | void DeleteChildren(const wxTreeItemId& item); | |
486 | // delete the root and all its children from the tree | |
487 | // NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events | |
488 | void DeleteRoot(); | |
489 | ||
490 | // expand this item | |
491 | void Expand(const wxTreeItemId& item); | |
492 | // expand this item and all subitems recursively | |
493 | void ExpandAll(const wxTreeItemId& item); | |
494 | // collapse the item without removing its children | |
495 | void Collapse(const wxTreeItemId& item); | |
496 | // collapse the item and remove all children | |
497 | void CollapseAndReset(const wxTreeItemId& item); | |
498 | // toggles the current state | |
499 | void Toggle(const wxTreeItemId& item); | |
500 | ||
501 | // remove the selection from currently selected item (if any) | |
502 | void Unselect(); | |
503 | void UnselectAll(); | |
504 | // select this item | |
505 | void SelectItem(const wxTreeItemId& item, const wxTreeItemId& prev = (wxTreeItemId*)NULL, | |
506 | bool unselect_others = true); | |
507 | void SelectAll(); | |
508 | // make sure this item is visible (expanding the parent item and/or | |
509 | // scrolling to this item if necessary) | |
510 | void EnsureVisible(const wxTreeItemId& item); | |
511 | // scroll to this item (but don't expand its parent) | |
512 | void ScrollTo(const wxTreeItemId& item); | |
513 | void AdjustMyScrollbars(); | |
514 | ||
515 | // The first function is more portable (because easier to implement | |
516 | // on other platforms), but the second one returns some extra info. | |
517 | wxTreeItemId HitTest (const wxPoint& point) | |
518 | { int flags; int column; return HitTest (point, flags, column); } | |
519 | wxTreeItemId HitTest (const wxPoint& point, int& flags) | |
520 | { int column; return HitTest (point, flags, column); } | |
521 | wxTreeItemId HitTest (const wxPoint& point, int& flags, int& column); | |
522 | ||
523 | ||
524 | // get the bounding rectangle of the item (or of its label only) | |
525 | bool GetBoundingRect(const wxTreeItemId& item, | |
526 | wxRect& rect, | |
527 | bool textOnly = false) const; | |
528 | ||
529 | // Start editing the item label: this (temporarily) replaces the item | |
530 | // with a one line edit control. The item will be selected if it hadn't | |
531 | // been before. | |
532 | void EditLabel (const wxTreeItemId& item, int column); | |
533 | ||
534 | // sorting | |
535 | // this function is called to compare 2 items and should return -1, 0 | |
536 | // or +1 if the first item is less than, equal to or greater than the | |
537 | // second one. The base class version performs alphabetic comparaison | |
538 | // of item labels (GetText) | |
539 | virtual int OnCompareItems(const wxTreeItemId& item1, | |
540 | const wxTreeItemId& item2); | |
541 | // sort the children of this item using OnCompareItems | |
542 | // | |
543 | // NB: this function is not reentrant and not MT-safe (FIXME)! | |
544 | void SortChildren(const wxTreeItemId& item); | |
545 | ||
546 | // searching | |
547 | wxTreeItemId FindItem (const wxTreeItemId& item, const wxString& str, int mode = 0); | |
548 | ||
549 | // implementation only from now on | |
550 | ||
551 | // overridden base class virtuals | |
552 | virtual bool SetBackgroundColour(const wxColour& colour); | |
553 | virtual bool SetForegroundColour(const wxColour& colour); | |
554 | ||
555 | // drop over item | |
556 | void SetDragItem (const wxTreeItemId& item = (wxTreeItemId*)NULL); | |
557 | ||
558 | // callbacks | |
559 | void OnPaint( wxPaintEvent &event ); | |
560 | void OnSetFocus( wxFocusEvent &event ); | |
561 | void OnKillFocus( wxFocusEvent &event ); | |
562 | void OnChar( wxKeyEvent &event ); | |
563 | void OnMouse( wxMouseEvent &event ); | |
564 | void OnIdle( wxIdleEvent &event ); | |
565 | void OnScroll(wxScrollWinEvent& event); | |
566 | ||
567 | // implementation helpers | |
568 | void SendDeleteEvent(wxTreeListItem *itemBeingDeleted); | |
569 | ||
570 | int GetColumnCount() const | |
571 | { return m_owner->GetHeaderWindow()->GetColumnCount(); } | |
572 | ||
573 | void SetMainColumn (int column) | |
574 | { if ((column >= 0) && (column < GetColumnCount())) m_main_column = column; } | |
575 | ||
576 | int GetMainColumn() const { return m_main_column; } | |
577 | ||
578 | int GetBestColumnWidth (int column, wxTreeItemId parent = wxTreeItemId()); | |
579 | int GetItemWidth (int column, wxTreeListItem *item); | |
580 | wxFont GetItemFont (wxTreeListItem *item); | |
581 | ||
582 | void SetFocus(); | |
583 | ||
584 | protected: | |
585 | wxTreeListCtrl* m_owner; | |
586 | ||
587 | int m_main_column; | |
588 | ||
589 | friend class wxTreeListItem; | |
590 | friend class wxTreeListRenameTimer; | |
591 | friend class wxEditTextCtrl; | |
592 | ||
593 | wxFont m_normalFont; | |
594 | wxFont m_boldFont; | |
595 | ||
596 | wxTreeListItem *m_rootItem; // root item | |
597 | wxTreeListItem *m_curItem; // current item, either selected or marked | |
598 | wxTreeListItem *m_shiftItem; // item, where the shift key was pressed | |
599 | wxTreeListItem *m_editItem; // item, which is currently edited | |
600 | wxTreeListItem *m_selectItem; // current selected item, not with wxTR_MULTIPLE | |
601 | ||
602 | int m_curColumn; | |
603 | ||
604 | int m_btnWidth, m_btnWidth2; | |
605 | int m_btnHeight, m_btnHeight2; | |
606 | int m_imgWidth, m_imgWidth2; | |
607 | int m_imgHeight, m_imgHeight2; | |
608 | unsigned short m_indent; | |
609 | int m_lineHeight; | |
610 | unsigned short m_linespacing; | |
611 | wxPen m_dottedPen; | |
612 | wxBrush *m_hilightBrush, | |
613 | *m_hilightUnfocusedBrush; | |
614 | bool m_hasFocus; | |
615 | public: | |
616 | bool m_dirty; | |
617 | protected: | |
618 | bool m_ownsImageListNormal, | |
619 | m_ownsImageListState, | |
620 | m_ownsImageListButtons; | |
621 | bool m_isDragging; // true between BEGIN/END drag events | |
622 | bool m_renameAccept; | |
623 | bool m_lastOnSame; // last click on the same item as prev | |
624 | bool m_left_down_selection; | |
625 | ||
626 | wxImageList *m_imageListNormal, | |
627 | *m_imageListState, | |
628 | *m_imageListButtons; | |
629 | ||
630 | int m_dragCount; | |
631 | wxTimer *m_dragTimer; | |
632 | wxTreeListItem *m_dragItem; | |
633 | ||
634 | wxTimer *m_renameTimer; | |
635 | wxString m_renameRes; | |
636 | ||
637 | // char navigation | |
638 | wxTimer *m_findTimer; | |
639 | wxString m_findStr; | |
640 | ||
641 | // the common part of all ctors | |
642 | void Init(); | |
643 | ||
644 | // misc helpers | |
645 | wxTreeItemId DoInsertItem(const wxTreeItemId& parent, | |
646 | size_t previous, | |
647 | const wxString& text, | |
648 | int image, int selectedImage, | |
649 | wxTreeItemData *data); | |
650 | bool HasButtons(void) const | |
651 | { return (m_imageListButtons) || HasFlag (wxTR_TWIST_BUTTONS|wxTR_HAS_BUTTONS); } | |
652 | ||
653 | protected: | |
654 | void CalculateLineHeight(); | |
655 | int GetLineHeight(wxTreeListItem *item) const; | |
656 | void PaintLevel( wxTreeListItem *item, wxDC& dc, int level, int &y, | |
657 | int x_maincol); | |
658 | void PaintItem( wxTreeListItem *item, wxDC& dc); | |
659 | ||
660 | void CalculateLevel( wxTreeListItem *item, wxDC &dc, int level, int &y, | |
661 | int x_maincol); | |
662 | void CalculatePositions(); | |
663 | void CalculateSize( wxTreeListItem *item, wxDC &dc ); | |
664 | ||
665 | void RefreshSubtree (wxTreeListItem *item); | |
666 | void RefreshLine (wxTreeListItem *item); | |
667 | ||
668 | // redraw all selected items | |
669 | void RefreshSelected(); | |
670 | ||
671 | // RefreshSelected() recursive helper | |
672 | void RefreshSelectedUnder (wxTreeListItem *item); | |
673 | ||
674 | void OnRenameTimer(); | |
675 | void OnRenameAccept(); | |
676 | ||
677 | void FillArray(wxTreeListItem*, wxArrayTreeItemIds&) const; | |
678 | bool TagAllChildrenUntilLast (wxTreeListItem *crt_item, wxTreeListItem *last_item); | |
679 | bool TagNextChildren (wxTreeListItem *crt_item, wxTreeListItem *last_item); | |
680 | void UnselectAllChildren (wxTreeListItem *item ); | |
681 | ||
682 | private: | |
683 | DECLARE_EVENT_TABLE() | |
684 | DECLARE_DYNAMIC_CLASS(wxTreeListMainWindow) | |
685 | }; | |
686 | ||
687 | ||
688 | // timer used for enabling in-place edit | |
689 | class wxTreeListRenameTimer: public wxTimer | |
690 | { | |
691 | public: | |
692 | wxTreeListRenameTimer( wxTreeListMainWindow *owner ); | |
693 | ||
694 | void Notify(); | |
695 | ||
696 | private: | |
697 | wxTreeListMainWindow *m_owner; | |
698 | }; | |
699 | ||
700 | // control used for in-place edit | |
701 | class wxEditTextCtrl: public wxTextCtrl | |
702 | { | |
703 | public: | |
704 | wxEditTextCtrl (wxWindow *parent, | |
705 | const wxWindowID id, | |
706 | bool *accept, | |
707 | wxString *res, | |
708 | wxTreeListMainWindow *owner, | |
709 | const wxString &value = wxEmptyString, | |
710 | const wxPoint &pos = wxDefaultPosition, | |
711 | const wxSize &size = wxDefaultSize, | |
712 | int style = 0, | |
713 | const wxValidator& validator = wxDefaultValidator, | |
714 | const wxString &name = wxTextCtrlNameStr ); | |
715 | ||
716 | void OnChar( wxKeyEvent &event ); | |
717 | void OnKeyUp( wxKeyEvent &event ); | |
718 | void OnKillFocus( wxFocusEvent &event ); | |
719 | ||
720 | private: | |
721 | bool *m_accept; | |
722 | wxString *m_res; | |
723 | wxTreeListMainWindow *m_owner; | |
724 | wxString m_startValue; | |
725 | bool m_finished; | |
726 | ||
727 | DECLARE_EVENT_TABLE() | |
728 | }; | |
729 | ||
730 | // a tree item | |
731 | class wxTreeListItem | |
732 | { | |
733 | public: | |
734 | // ctors & dtor | |
735 | wxTreeListItem() { m_data = NULL; } | |
736 | wxTreeListItem( wxTreeListMainWindow *owner, | |
737 | wxTreeListItem *parent, | |
738 | const wxArrayString& text, | |
739 | int image, | |
740 | int selImage, | |
741 | wxTreeItemData *data ); | |
742 | ||
743 | ~wxTreeListItem(); | |
744 | ||
745 | // trivial accessors | |
746 | wxArrayTreeListItems& GetChildren() { return m_children; } | |
747 | ||
748 | const wxString GetText() const | |
749 | { | |
750 | return GetText(0); | |
751 | } | |
752 | const wxString GetText (int column) const | |
753 | { | |
754 | if(m_text.GetCount() > 0) | |
755 | { | |
756 | if( IsVirtual() ) return m_owner->GetItemText( m_data, column ); | |
757 | else return m_text[column]; | |
758 | } | |
759 | return wxEmptyString; | |
760 | } | |
761 | ||
762 | int GetImage (wxTreeItemIcon which = wxTreeItemIcon_Normal) const | |
763 | { return m_images[which]; } | |
764 | int GetImage (int column, wxTreeItemIcon which=wxTreeItemIcon_Normal) const | |
765 | { | |
766 | if(column == m_owner->GetMainColumn()) return m_images[which]; | |
767 | if(column < (int)m_col_images.GetCount()) return m_col_images[column]; | |
768 | return NO_IMAGE; | |
769 | } | |
770 | ||
771 | wxTreeItemData *GetData() const { return m_data; } | |
772 | ||
773 | // returns the current image for the item (depending on its | |
774 | // selected/expanded/whatever state) | |
775 | int GetCurrentImage() const; | |
776 | ||
777 | void SetText (const wxString &text ); | |
778 | void SetText (int column, const wxString& text) | |
779 | { | |
780 | if (column < (int)m_text.GetCount()) { | |
781 | m_text[column] = text; | |
782 | }else if (column < m_owner->GetColumnCount()) { | |
783 | int howmany = m_owner->GetColumnCount(); | |
784 | for (int i = m_text.GetCount(); i < howmany; ++i) m_text.Add (wxEmptyString); | |
785 | m_text[column] = text; | |
786 | } | |
787 | } | |
788 | void SetImage (int image, wxTreeItemIcon which) { m_images[which] = image; } | |
789 | void SetImage (int column, int image, wxTreeItemIcon which) | |
790 | { | |
791 | if (column == m_owner->GetMainColumn()) { | |
792 | m_images[which] = image; | |
793 | }else if (column < (int)m_col_images.GetCount()) { | |
794 | m_col_images[column] = image; | |
795 | }else if (column < m_owner->GetColumnCount()) { | |
796 | int howmany = m_owner->GetColumnCount(); | |
797 | for (int i = m_col_images.GetCount(); i < howmany; ++i) m_col_images.Add (NO_IMAGE); | |
798 | m_col_images[column] = image; | |
799 | } | |
800 | } | |
801 | ||
802 | void SetData(wxTreeItemData *data) { m_data = data; } | |
803 | ||
804 | void SetHasPlus(bool has = true) { m_hasPlus = has; } | |
805 | ||
806 | void SetBold(bool bold) { m_isBold = bold; } | |
807 | ||
808 | int GetX() const { return m_x; } | |
809 | int GetY() const { return m_y; } | |
810 | ||
811 | void SetX (int x) { m_x = x; } | |
812 | void SetY (int y) { m_y = y; } | |
813 | ||
814 | int GetHeight() const { return m_height; } | |
815 | int GetWidth() const { return m_width; } | |
816 | ||
817 | void SetHeight (int height) { m_height = height; } | |
818 | void SetWidth (int width) { m_width = width; } | |
819 | ||
820 | int GetTextX() const { return m_text_x; } | |
821 | void SetTextX (int text_x) { m_text_x = text_x; } | |
822 | ||
823 | wxTreeListItem *GetItemParent() const { return m_parent; } | |
824 | ||
825 | // operations | |
826 | // deletes all children notifying the treectrl about it if !NULL | |
827 | // pointer given | |
828 | void DeleteChildren(wxTreeListMainWindow *tree = NULL); | |
829 | ||
830 | // get count of all children (and grand children if 'recursively') | |
831 | size_t GetChildrenCount(bool recursively = true) const; | |
832 | ||
833 | void Insert(wxTreeListItem *child, size_t index) | |
834 | { m_children.Insert(child, index); } | |
835 | ||
836 | void GetSize( int &x, int &y, const wxTreeListMainWindow* ); | |
837 | ||
838 | // return the item at given position (or NULL if no item), onButton is | |
839 | // true if the point belongs to the item's button, otherwise it lies | |
840 | // on the button's label | |
841 | wxTreeListItem *HitTest (const wxPoint& point, | |
842 | const wxTreeListMainWindow *, | |
843 | int &flags, int& column, int level); | |
844 | ||
845 | void Expand() { m_isCollapsed = false; } | |
846 | void Collapse() { m_isCollapsed = true; } | |
847 | ||
848 | void SetHilight( bool set = true ) { m_hasHilight = set; } | |
849 | ||
850 | // status inquiries | |
851 | bool HasChildren() const { return !m_children.IsEmpty(); } | |
852 | bool IsSelected() const { return m_hasHilight != 0; } | |
853 | bool IsExpanded() const { return !m_isCollapsed; } | |
854 | bool HasPlus() const { return m_hasPlus || HasChildren(); } | |
855 | bool IsBold() const { return m_isBold != 0; } | |
856 | bool IsVirtual() const { return m_owner->IsVirtual(); } | |
857 | ||
858 | // attributes | |
859 | // get them - may be NULL | |
860 | wxTreeItemAttr *GetAttributes() const { return m_attr; } | |
861 | // get them ensuring that the pointer is not NULL | |
862 | wxTreeItemAttr& Attr() | |
863 | { | |
864 | if ( !m_attr ) | |
865 | { | |
866 | m_attr = new wxTreeItemAttr; | |
867 | m_ownsAttr = true; | |
868 | } | |
869 | return *m_attr; | |
870 | } | |
871 | // set them | |
872 | void SetAttributes(wxTreeItemAttr *attr) | |
873 | { | |
874 | if ( m_ownsAttr ) delete m_attr; | |
875 | m_attr = attr; | |
876 | m_ownsAttr = false; | |
877 | } | |
878 | // set them and delete when done | |
879 | void AssignAttributes(wxTreeItemAttr *attr) | |
880 | { | |
881 | SetAttributes(attr); | |
882 | m_ownsAttr = true; | |
883 | } | |
884 | ||
885 | private: | |
886 | wxTreeListMainWindow *m_owner; // control the item belongs to | |
887 | ||
888 | // since there can be very many of these, we save size by chosing | |
889 | // the smallest representation for the elements and by ordering | |
890 | // the members to avoid padding. | |
891 | wxArrayString m_text; // labels to be rendered for item | |
892 | ||
893 | wxTreeItemData *m_data; // user-provided data | |
894 | ||
895 | wxArrayTreeListItems m_children; // list of children | |
896 | wxTreeListItem *m_parent; // parent of this item | |
897 | ||
898 | wxTreeItemAttr *m_attr; // attributes??? | |
899 | ||
900 | // tree ctrl images for the normal, selected, expanded and | |
901 | // expanded+selected states | |
902 | short m_images[wxTreeItemIcon_Max]; | |
903 | wxArrayShort m_col_images; // images for the various columns (!= main) | |
904 | ||
905 | // main column item positions | |
906 | wxCoord m_x; // (virtual) offset from left (vertical line) | |
907 | wxCoord m_y; // (virtual) offset from top | |
908 | wxCoord m_text_x; // item offset from left | |
909 | short m_width; // width of this item | |
910 | unsigned char m_height; // height of this item | |
911 | ||
912 | // use bitfields to save size | |
913 | int m_isCollapsed :1; | |
914 | int m_hasHilight :1; // same as focused | |
915 | int m_hasPlus :1; // used for item which doesn't have | |
916 | // children but has a [+] button | |
917 | int m_isBold :1; // render the label in bold font | |
918 | int m_ownsAttr :1; // delete attribute when done | |
919 | }; | |
920 | ||
921 | // =========================================================================== | |
922 | // implementation | |
923 | // =========================================================================== | |
924 | ||
925 | // --------------------------------------------------------------------------- | |
926 | // wxTreeListRenameTimer (internal) | |
927 | // --------------------------------------------------------------------------- | |
928 | ||
929 | wxTreeListRenameTimer::wxTreeListRenameTimer( wxTreeListMainWindow *owner ) | |
930 | { | |
931 | m_owner = owner; | |
932 | } | |
933 | ||
934 | void wxTreeListRenameTimer::Notify() | |
935 | { | |
936 | m_owner->OnRenameTimer(); | |
937 | } | |
938 | ||
939 | //----------------------------------------------------------------------------- | |
940 | // wxEditTextCtrl (internal) | |
941 | //----------------------------------------------------------------------------- | |
942 | ||
943 | BEGIN_EVENT_TABLE (wxEditTextCtrl,wxTextCtrl) | |
944 | EVT_CHAR (wxEditTextCtrl::OnChar) | |
945 | EVT_KEY_UP (wxEditTextCtrl::OnKeyUp) | |
946 | EVT_KILL_FOCUS (wxEditTextCtrl::OnKillFocus) | |
947 | END_EVENT_TABLE() | |
948 | ||
949 | wxEditTextCtrl::wxEditTextCtrl (wxWindow *parent, | |
950 | const wxWindowID id, | |
951 | bool *accept, | |
952 | wxString *res, | |
953 | wxTreeListMainWindow *owner, | |
954 | const wxString &value, | |
955 | const wxPoint &pos, | |
956 | const wxSize &size, | |
957 | int style, | |
958 | const wxValidator& validator, | |
959 | const wxString &name) | |
960 | : wxTextCtrl (parent, id, value, pos, size, style|wxSIMPLE_BORDER, validator, name) | |
961 | { | |
962 | m_res = res; | |
963 | m_accept = accept; | |
964 | m_owner = owner; | |
965 | (*m_accept) = false; | |
966 | (*m_res) = wxEmptyString; | |
967 | m_startValue = value; | |
968 | m_finished = false; | |
969 | } | |
970 | ||
971 | void wxEditTextCtrl::OnChar( wxKeyEvent &event ) | |
972 | { | |
973 | if (event.GetKeyCode() == WXK_RETURN) | |
974 | { | |
975 | (*m_accept) = true; | |
976 | (*m_res) = GetValue(); | |
977 | ||
978 | if ((*m_res) != m_startValue) | |
979 | m_owner->OnRenameAccept(); | |
980 | ||
981 | if (!wxPendingDelete.Member(this)) | |
982 | wxPendingDelete.Append(this); | |
983 | ||
984 | m_finished = true; | |
985 | m_owner->SetFocus(); // This doesn't work. TODO. | |
986 | ||
987 | return; | |
988 | } | |
989 | if (event.GetKeyCode() == WXK_ESCAPE) | |
990 | { | |
991 | (*m_accept) = false; | |
992 | (*m_res) = wxEmptyString; | |
993 | ||
994 | if (!wxPendingDelete.Member(this)) | |
995 | wxPendingDelete.Append(this); | |
996 | ||
997 | m_finished = true; | |
998 | m_owner->SetFocus(); // This doesn't work. TODO. | |
999 | ||
1000 | return; | |
1001 | } | |
1002 | event.Skip(); | |
1003 | } | |
1004 | ||
1005 | void wxEditTextCtrl::OnKeyUp( wxKeyEvent &event ) | |
1006 | { | |
1007 | if (m_finished) | |
1008 | { | |
1009 | event.Skip(); | |
1010 | return; | |
1011 | } | |
1012 | ||
1013 | // auto-grow the textctrl: | |
1014 | wxSize parentSize = m_owner->GetSize(); | |
1015 | wxPoint myPos = GetPosition(); | |
1016 | wxSize mySize = GetSize(); | |
1017 | int sx, sy; | |
1018 | GetTextExtent(GetValue() + _T("M"), &sx, &sy); | |
1019 | if (myPos.x + sx > parentSize.x) sx = parentSize.x - myPos.x; | |
1020 | if (mySize.x > sx) sx = mySize.x; | |
1021 | SetSize(sx, -1); | |
1022 | ||
1023 | event.Skip(); | |
1024 | } | |
1025 | ||
1026 | void wxEditTextCtrl::OnKillFocus( wxFocusEvent &event ) | |
1027 | { | |
1028 | if (m_finished) | |
1029 | { | |
1030 | event.Skip(); | |
1031 | return; | |
1032 | } | |
1033 | ||
1034 | if (!wxPendingDelete.Member(this)) | |
1035 | wxPendingDelete.Append(this); | |
1036 | ||
1037 | (*m_accept) = true; | |
1038 | (*m_res) = GetValue(); | |
1039 | ||
1040 | if ((*m_res) != m_startValue) | |
1041 | m_owner->OnRenameAccept(); | |
1042 | } | |
1043 | ||
1044 | //----------------------------------------------------------------------------- | |
1045 | // wxTreeListHeaderWindow | |
1046 | //----------------------------------------------------------------------------- | |
1047 | ||
1048 | IMPLEMENT_DYNAMIC_CLASS(wxTreeListHeaderWindow,wxWindow); | |
1049 | ||
1050 | BEGIN_EVENT_TABLE(wxTreeListHeaderWindow,wxWindow) | |
1051 | EVT_PAINT (wxTreeListHeaderWindow::OnPaint) | |
1052 | EVT_MOUSE_EVENTS (wxTreeListHeaderWindow::OnMouse) | |
1053 | EVT_SET_FOCUS (wxTreeListHeaderWindow::OnSetFocus) | |
1054 | END_EVENT_TABLE() | |
1055 | ||
1056 | void wxTreeListHeaderWindow::Init() | |
1057 | { | |
1058 | m_currentCursor = (wxCursor *) NULL; | |
1059 | m_isDragging = false; | |
1060 | m_dirty = false; | |
1061 | m_total_col_width = 0; | |
1062 | m_hotTrackCol = -1; | |
1063 | } | |
1064 | ||
1065 | wxTreeListHeaderWindow::wxTreeListHeaderWindow() | |
1066 | { | |
1067 | Init(); | |
1068 | ||
1069 | m_owner = (wxTreeListMainWindow *) NULL; | |
1070 | m_resizeCursor = (wxCursor *) NULL; | |
1071 | } | |
1072 | ||
1073 | wxTreeListHeaderWindow::wxTreeListHeaderWindow( wxWindow *win, | |
1074 | wxWindowID id, | |
1075 | wxTreeListMainWindow *owner, | |
1076 | const wxPoint& pos, | |
1077 | const wxSize& size, | |
1078 | long style, | |
1079 | const wxString &name ) | |
1080 | : wxWindow( win, id, pos, size, style, name ) | |
1081 | { | |
1082 | Init(); | |
1083 | ||
1084 | m_owner = owner; | |
1085 | m_resizeCursor = new wxCursor(wxCURSOR_SIZEWE); | |
1086 | ||
1087 | #if !wxCHECK_VERSION(2, 5, 0) | |
1088 | SetBackgroundColour (wxSystemSettings::GetSystemColour (wxSYS_COLOUR_BTNFACE)); | |
1089 | #else | |
1090 | SetBackgroundColour (wxSystemSettings::GetColour (wxSYS_COLOUR_BTNFACE)); | |
1091 | #endif | |
1092 | } | |
1093 | ||
1094 | wxTreeListHeaderWindow::~wxTreeListHeaderWindow() | |
1095 | { | |
1096 | delete m_resizeCursor; | |
1097 | } | |
1098 | ||
1099 | void wxTreeListHeaderWindow::DoDrawRect( wxDC *dc, int x, int y, int w, int h ) | |
1100 | { | |
1101 | #if !wxCHECK_VERSION(2, 5, 0) | |
1102 | wxPen pen (wxSystemSettings::GetSystemColour (wxSYS_COLOUR_BTNSHADOW ), 1, wxSOLID); | |
1103 | #else | |
1104 | wxPen pen (wxSystemSettings::GetColour (wxSYS_COLOUR_BTNSHADOW ), 1, wxSOLID); | |
1105 | #endif | |
1106 | ||
1107 | const int m_corner = 1; | |
1108 | ||
1109 | dc->SetBrush( *wxTRANSPARENT_BRUSH ); | |
1110 | #if defined( __WXMAC__ ) | |
1111 | dc->SetPen (pen); | |
1112 | #else // !GTK, !Mac | |
1113 | dc->SetPen( *wxBLACK_PEN ); | |
1114 | #endif | |
1115 | dc->DrawLine( x+w-m_corner+1, y, x+w, y+h ); // right (outer) | |
1116 | dc->DrawRectangle( x, y+h, w+1, 1 ); // bottom (outer) | |
1117 | ||
1118 | #if defined( __WXMAC__ ) | |
1119 | pen = wxPen( wxColour( 0x88 , 0x88 , 0x88 ), 1, wxSOLID ); | |
1120 | #endif | |
1121 | dc->SetPen( pen ); | |
1122 | dc->DrawLine( x+w-m_corner, y, x+w-1, y+h ); // right (inner) | |
1123 | dc->DrawRectangle( x+1, y+h-1, w-2, 1 ); // bottom (inner) | |
1124 | ||
1125 | dc->SetPen( *wxWHITE_PEN ); | |
1126 | dc->DrawRectangle( x, y, w-m_corner+1, 1 ); // top (outer) | |
1127 | dc->DrawRectangle( x, y, 1, h ); // left (outer) | |
1128 | dc->DrawLine( x, y+h-1, x+1, y+h-1 ); | |
1129 | dc->DrawLine( x+w-1, y, x+w-1, y+1 ); | |
1130 | } | |
1131 | ||
1132 | // shift the DC origin to match the position of the main window horz | |
1133 | // scrollbar: this allows us to always use logical coords | |
1134 | void wxTreeListHeaderWindow::AdjustDC(wxDC& dc) | |
1135 | { | |
1136 | int xpix; | |
1137 | m_owner->GetScrollPixelsPerUnit( &xpix, NULL ); | |
1138 | int x; | |
1139 | m_owner->GetViewStart( &x, NULL ); | |
1140 | ||
1141 | // account for the horz scrollbar offset | |
1142 | dc.SetDeviceOrigin( -x * xpix, 0 ); | |
1143 | } | |
1144 | ||
1145 | void wxTreeListHeaderWindow::OnPaint( wxPaintEvent &WXUNUSED(event) ) | |
1146 | { | |
1147 | #ifdef __WXGTK__ | |
1148 | wxClientDC dc( this ); | |
1149 | #else | |
1150 | wxPaintDC dc( this ); | |
1151 | #endif | |
1152 | ||
1153 | PrepareDC( dc ); | |
1154 | AdjustDC( dc ); | |
1155 | ||
1156 | int x = HEADER_OFFSET_X; | |
1157 | ||
1158 | // width and height of the entire header window | |
1159 | int w, h; | |
1160 | GetClientSize( &w, &h ); | |
1161 | m_owner->CalcUnscrolledPosition(w, 0, &w, NULL); | |
1162 | dc.SetBackgroundMode(wxTRANSPARENT); | |
1163 | ||
1164 | #if wxCHECK_VERSION_FULL(2, 7, 0, 1) | |
1165 | int numColumns = GetColumnCount(); | |
1166 | for ( int i = 0; i < numColumns && x < w; i++ ) | |
1167 | { | |
1168 | if (!IsColumnShown (i)) continue; // do next column if not shown | |
1169 | ||
1170 | wxHeaderButtonParams params; | |
1171 | ||
1172 | // TODO: columnInfo should have label colours... | |
1173 | params.m_labelColour = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT ); | |
1174 | params.m_labelFont = GetFont(); | |
1175 | ||
1176 | wxTreeListColumnInfo& column = GetColumn(i); | |
1177 | int wCol = column.GetWidth(); | |
1178 | int flags = 0; | |
1179 | wxRect rect(x, 0, wCol, h); | |
1180 | x += wCol; | |
1181 | ||
1182 | if ( i == m_hotTrackCol) | |
1183 | flags |= wxCONTROL_CURRENT; | |
1184 | ||
1185 | params.m_labelText = column.GetText(); | |
1186 | params.m_labelAlignment = column.GetAlignment(); | |
1187 | ||
1188 | int image = column.GetImage(); | |
1189 | wxImageList* imageList = m_owner->GetImageList(); | |
1190 | if ((image != -1) && imageList) | |
1191 | params.m_labelBitmap = imageList->GetBitmap(image); | |
1192 | ||
1193 | wxRendererNative::Get().DrawHeaderButton(this, dc, rect, flags, | |
1194 | wxHDR_SORT_ICON_NONE, ¶ms); | |
1195 | } | |
1196 | ||
1197 | if (x < w) { | |
1198 | wxRect rect(x, 0, w-x, h); | |
1199 | wxRendererNative::Get().DrawHeaderButton(this, dc, rect); | |
1200 | } | |
1201 | ||
1202 | #else // not 2.7.0.1+ | |
1203 | ||
1204 | dc.SetFont( GetFont() ); | |
1205 | ||
1206 | // do *not* use the listctrl colour for headers - one day we will have a | |
1207 | // function to set it separately | |
1208 | //dc.SetTextForeground( *wxBLACK ); | |
1209 | #if !wxCHECK_VERSION(2, 5, 0) | |
1210 | dc.SetTextForeground (wxSystemSettings::GetSystemColour( wxSYS_COLOUR_WINDOWTEXT )); | |
1211 | #else | |
1212 | dc.SetTextForeground (wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT )); | |
1213 | #endif | |
1214 | ||
1215 | int numColumns = GetColumnCount(); | |
1216 | for ( int i = 0; i < numColumns && x < w; i++ ) | |
1217 | { | |
1218 | if (!IsColumnShown (i)) continue; // do next column if not shown | |
1219 | ||
1220 | wxTreeListColumnInfo& column = GetColumn(i); | |
1221 | int wCol = column.GetWidth(); | |
1222 | ||
1223 | // the width of the rect to draw: make it smaller to fit entirely | |
1224 | // inside the column rect | |
1225 | int cw = wCol - 2; | |
1226 | ||
1227 | #if !wxCHECK_VERSION(2, 7, 0) | |
1228 | dc.SetPen( *wxWHITE_PEN ); | |
1229 | DoDrawRect( &dc, x, HEADER_OFFSET_Y, cw, h-2 ); | |
1230 | #else | |
1231 | wxRect rect(x, HEADER_OFFSET_Y, cw, h-2); | |
1232 | wxRendererNative::GetDefault().DrawHeaderButton (this, dc, rect); | |
1233 | #endif | |
1234 | ||
1235 | // if we have an image, draw it on the right of the label | |
1236 | int image = column.GetImage(); //item.m_image; | |
1237 | int ix = -2, iy = 0; | |
1238 | wxImageList* imageList = m_owner->GetImageList(); | |
1239 | if ((image != -1) && imageList) { | |
1240 | imageList->GetSize (image, ix, iy); | |
1241 | } | |
1242 | ||
1243 | // extra margins around the text label | |
1244 | int text_width = 0; | |
1245 | int text_x = x; | |
1246 | int image_offset = cw - ix - 1; | |
1247 | ||
1248 | switch(column.GetAlignment()) { | |
1249 | case wxALIGN_LEFT: | |
1250 | text_x += EXTRA_WIDTH; | |
1251 | cw -= ix + 2; | |
1252 | break; | |
1253 | case wxALIGN_RIGHT: | |
1254 | dc.GetTextExtent (column.GetText(), &text_width, NULL); | |
1255 | text_x += cw - text_width - EXTRA_WIDTH - MARGIN; | |
1256 | image_offset = 0; | |
1257 | break; | |
1258 | case wxALIGN_CENTER: | |
1259 | dc.GetTextExtent(column.GetText(), &text_width, NULL); | |
1260 | text_x += (cw - text_width)/2 + ix + 2; | |
1261 | image_offset = (cw - text_width - ix - 2)/2 - MARGIN; | |
1262 | break; | |
1263 | } | |
1264 | ||
1265 | // draw the image | |
1266 | if ((image != -1) && imageList) { | |
1267 | imageList->Draw (image, dc, x + image_offset/*cw - ix - 1*/, | |
1268 | HEADER_OFFSET_Y + (h - 4 - iy)/2, | |
1269 | wxIMAGELIST_DRAW_TRANSPARENT); | |
1270 | } | |
1271 | ||
1272 | // draw the text clipping it so that it doesn't overwrite the column boundary | |
1273 | wxDCClipper clipper(dc, x, HEADER_OFFSET_Y, cw, h - 4 ); | |
1274 | dc.DrawText (column.GetText(), text_x, HEADER_OFFSET_Y + EXTRA_HEIGHT ); | |
1275 | ||
1276 | // next column | |
1277 | x += wCol; | |
1278 | } | |
1279 | ||
1280 | int more_w = m_owner->GetSize().x - x - HEADER_OFFSET_X; | |
1281 | if (more_w > 0) { | |
1282 | #if !wxCHECK_VERSION(2, 7, 0) | |
1283 | DoDrawRect (&dc, x, HEADER_OFFSET_Y, more_w, h-2 ); | |
1284 | #else | |
1285 | wxRect rect (x, HEADER_OFFSET_Y, more_w, h-2); | |
1286 | wxRendererNative::GetDefault().DrawHeaderButton (this, dc, rect); | |
1287 | #endif | |
1288 | } | |
1289 | #endif // 2.7.0.1 | |
1290 | } | |
1291 | ||
1292 | void wxTreeListHeaderWindow::DrawCurrent() | |
1293 | { | |
1294 | int x1 = m_currentX; | |
1295 | int y1 = 0; | |
1296 | ClientToScreen (&x1, &y1); | |
1297 | ||
1298 | int x2 = m_currentX-1; | |
1299 | #ifdef __WXMSW__ | |
1300 | ++x2; // but why ???? | |
1301 | #endif | |
1302 | int y2 = 0; | |
1303 | m_owner->GetClientSize( NULL, &y2 ); | |
1304 | m_owner->ClientToScreen( &x2, &y2 ); | |
1305 | ||
1306 | wxScreenDC dc; | |
1307 | dc.SetLogicalFunction (wxINVERT); | |
1308 | dc.SetPen (wxPen (*wxBLACK, 2, wxSOLID)); | |
1309 | dc.SetBrush (*wxTRANSPARENT_BRUSH); | |
1310 | ||
1311 | AdjustDC(dc); | |
1312 | dc.DrawLine (x1, y1, x2, y2); | |
1313 | dc.SetLogicalFunction (wxCOPY); | |
1314 | dc.SetPen (wxNullPen); | |
1315 | dc.SetBrush (wxNullBrush); | |
1316 | } | |
1317 | ||
1318 | #if wxCHECK_VERSION_FULL(2, 7, 0, 1) | |
1319 | int wxTreeListHeaderWindow::XToCol(int x) | |
1320 | { | |
1321 | int colLeft = 0; | |
1322 | int numColumns = GetColumnCount(); | |
1323 | for ( int col = 0; col < numColumns; col++ ) | |
1324 | { | |
1325 | if (!IsColumnShown(col)) continue; | |
1326 | wxTreeListColumnInfo& column = GetColumn(col); | |
1327 | ||
1328 | if ( x < (colLeft + column.GetWidth()) ) | |
1329 | return col; | |
1330 | ||
1331 | colLeft += column.GetWidth(); | |
1332 | } | |
1333 | return -1; | |
1334 | } | |
1335 | ||
1336 | ||
1337 | void wxTreeListHeaderWindow::RefreshColLabel(int col) | |
1338 | { | |
1339 | if ( col > GetColumnCount() ) | |
1340 | return; | |
1341 | ||
1342 | int x = 0; | |
1343 | int width = 0; | |
1344 | int idx = 0; | |
1345 | do { | |
1346 | if (!IsColumnShown(idx)) continue; | |
1347 | wxTreeListColumnInfo& column = GetColumn(idx); | |
1348 | x += width; | |
1349 | width = column.GetWidth(); | |
1350 | } while (++idx <= col); | |
1351 | ||
1352 | m_owner->CalcScrolledPosition(x, 0, &x, NULL); | |
1353 | RefreshRect(wxRect(x, 0, width, GetSize().GetHeight())); | |
1354 | } | |
1355 | #endif | |
1356 | ||
1357 | ||
1358 | void wxTreeListHeaderWindow::OnMouse (wxMouseEvent &event) { | |
1359 | ||
1360 | // we want to work with logical coords | |
1361 | int x; | |
1362 | m_owner->CalcUnscrolledPosition(event.GetX(), 0, &x, NULL); | |
1363 | int y = event.GetY(); | |
1364 | ||
1365 | #if wxCHECK_VERSION_FULL(2, 7, 0, 1) | |
1366 | if ( event.Moving() ) | |
1367 | { | |
1368 | int col = XToCol(x); | |
1369 | if ( col != m_hotTrackCol ) | |
1370 | { | |
1371 | // Refresh the col header so it will be painted with hot tracking | |
1372 | // (if supported by the native renderer.) | |
1373 | RefreshColLabel(col); | |
1374 | ||
1375 | // Also refresh the old hot header | |
1376 | if ( m_hotTrackCol >= 0 ) | |
1377 | RefreshColLabel(m_hotTrackCol); | |
1378 | ||
1379 | m_hotTrackCol = col; | |
1380 | } | |
1381 | } | |
1382 | ||
1383 | if ( event.Leaving() && m_hotTrackCol >= 0 ) | |
1384 | { | |
1385 | // Leaving the window so clear any hot tracking indicator that may be present | |
1386 | RefreshColLabel(m_hotTrackCol); | |
1387 | m_hotTrackCol = -1; | |
1388 | } | |
1389 | #endif | |
1390 | ||
1391 | if (m_isDragging) { | |
1392 | ||
1393 | SendListEvent (wxEVT_COMMAND_LIST_COL_DRAGGING, event.GetPosition()); | |
1394 | ||
1395 | // we don't draw the line beyond our window, but we allow dragging it | |
1396 | // there | |
1397 | int w = 0; | |
1398 | GetClientSize( &w, NULL ); | |
1399 | m_owner->CalcUnscrolledPosition(w, 0, &w, NULL); | |
1400 | w -= 6; | |
1401 | ||
1402 | // erase the line if it was drawn | |
1403 | if (m_currentX < w) DrawCurrent(); | |
1404 | ||
1405 | if (event.ButtonUp()) { | |
1406 | m_isDragging = false; | |
1407 | if (HasCapture()) ReleaseMouse(); | |
1408 | m_dirty = true; | |
1409 | SetColumnWidth (m_column, m_currentX - m_minX); | |
1410 | Refresh(); | |
1411 | SendListEvent (wxEVT_COMMAND_LIST_COL_END_DRAG, event.GetPosition()); | |
1412 | }else{ | |
1413 | m_currentX = wxMax (m_minX + 7, x); | |
1414 | ||
1415 | // draw in the new location | |
1416 | if (m_currentX < w) DrawCurrent(); | |
1417 | } | |
1418 | ||
1419 | }else{ // not dragging | |
1420 | ||
1421 | m_minX = 0; | |
1422 | bool hit_border = false; | |
1423 | ||
1424 | // end of the current column | |
1425 | int xpos = 0; | |
1426 | ||
1427 | // find the column where this event occured | |
1428 | int countCol = GetColumnCount(); | |
1429 | for (int column = 0; column < countCol; column++) { | |
1430 | if (!IsColumnShown (column)) continue; // do next if not shown | |
1431 | ||
1432 | xpos += GetColumnWidth (column); | |
1433 | m_column = column; | |
1434 | if ((abs (x-xpos) < 3) && (y < 22)) { | |
1435 | // near the column border | |
1436 | hit_border = true; | |
1437 | break; | |
1438 | } | |
1439 | ||
1440 | if (x < xpos) { | |
1441 | // inside the column | |
1442 | break; | |
1443 | } | |
1444 | ||
1445 | m_minX = xpos; | |
1446 | } | |
1447 | ||
1448 | if (event.LeftDown() || event.RightUp()) { | |
1449 | if (hit_border && event.LeftDown()) { | |
1450 | m_isDragging = true; | |
1451 | CaptureMouse(); | |
1452 | m_currentX = x; | |
1453 | DrawCurrent(); | |
1454 | SendListEvent (wxEVT_COMMAND_LIST_COL_BEGIN_DRAG, event.GetPosition()); | |
1455 | }else{ // click on a column | |
1456 | wxEventType evt = event.LeftDown()? wxEVT_COMMAND_LIST_COL_CLICK: | |
1457 | wxEVT_COMMAND_LIST_COL_RIGHT_CLICK; | |
1458 | SendListEvent (evt, event.GetPosition()); | |
1459 | } | |
1460 | }else if (event.LeftDClick() && hit_border) { | |
1461 | SetColumnWidth (m_column, m_owner->GetBestColumnWidth (m_column)); | |
1462 | Refresh(); | |
1463 | ||
1464 | }else if (event.Moving()) { | |
1465 | bool setCursor; | |
1466 | if (hit_border) { | |
1467 | setCursor = m_currentCursor == wxSTANDARD_CURSOR; | |
1468 | m_currentCursor = m_resizeCursor; | |
1469 | }else{ | |
1470 | setCursor = m_currentCursor != wxSTANDARD_CURSOR; | |
1471 | m_currentCursor = wxSTANDARD_CURSOR; | |
1472 | } | |
1473 | if (setCursor) SetCursor (*m_currentCursor); | |
1474 | } | |
1475 | ||
1476 | } | |
1477 | } | |
1478 | ||
1479 | void wxTreeListHeaderWindow::OnSetFocus (wxFocusEvent &WXUNUSED(event)) { | |
1480 | m_owner->SetFocus(); | |
1481 | } | |
1482 | ||
1483 | void wxTreeListHeaderWindow::SendListEvent (wxEventType type, wxPoint pos) { | |
1484 | wxWindow *parent = GetParent(); | |
1485 | wxListEvent le (type, parent->GetId()); | |
1486 | le.SetEventObject (parent); | |
1487 | le.m_pointDrag = pos; | |
1488 | ||
1489 | // the position should be relative to the parent window, not | |
1490 | // this one for compatibility with MSW and common sense: the | |
1491 | // user code doesn't know anything at all about this header | |
1492 | // window, so why should it get positions relative to it? | |
1493 | le.m_pointDrag.y -= GetSize().y; | |
1494 | le.m_col = m_column; | |
1495 | parent->GetEventHandler()->ProcessEvent (le); | |
1496 | } | |
1497 | ||
1498 | void wxTreeListHeaderWindow::AddColumn (const wxTreeListColumnInfo& colInfo) { | |
1499 | m_columns.Add (colInfo); | |
1500 | m_total_col_width += colInfo.GetWidth(); | |
1501 | m_owner->AdjustMyScrollbars(); | |
1502 | m_owner->m_dirty = true; | |
1503 | } | |
1504 | ||
1505 | void wxTreeListHeaderWindow::SetColumnWidth (int column, int width) { | |
1506 | wxCHECK_RET ((column >= 0) && (column < GetColumnCount()), _T("Invalid column")); | |
1507 | m_total_col_width -= m_columns[column].GetWidth(); | |
1508 | m_columns[column].SetWidth(width); | |
1509 | m_total_col_width += width; | |
1510 | m_owner->AdjustMyScrollbars(); | |
1511 | m_owner->m_dirty = true; | |
1512 | } | |
1513 | ||
1514 | void wxTreeListHeaderWindow::InsertColumn (int before, const wxTreeListColumnInfo& colInfo) { | |
1515 | wxCHECK_RET ((before >= 0) && (before < GetColumnCount()), _T("Invalid column")); | |
1516 | m_columns.Insert (colInfo, before); | |
1517 | m_total_col_width += colInfo.GetWidth(); | |
1518 | m_owner->AdjustMyScrollbars(); | |
1519 | m_owner->m_dirty = true; | |
1520 | } | |
1521 | ||
1522 | void wxTreeListHeaderWindow::RemoveColumn (int column) { | |
1523 | wxCHECK_RET ((column >= 0) && (column < GetColumnCount()), _T("Invalid column")); | |
1524 | m_total_col_width -= m_columns[column].GetWidth(); | |
1525 | m_columns.RemoveAt (column); | |
1526 | m_owner->AdjustMyScrollbars(); | |
1527 | m_owner->m_dirty = true; | |
1528 | } | |
1529 | ||
1530 | void wxTreeListHeaderWindow::SetColumn (int column, const wxTreeListColumnInfo& info) { | |
1531 | wxCHECK_RET ((column >= 0) && (column < GetColumnCount()), _T("Invalid column")); | |
1532 | int w = m_columns[column].GetWidth(); | |
1533 | m_columns[column] = info; | |
1534 | if (w != info.GetWidth()) { | |
1535 | m_total_col_width += info.GetWidth() - w; | |
1536 | m_owner->AdjustMyScrollbars(); | |
1537 | } | |
1538 | m_owner->m_dirty = true; | |
1539 | } | |
1540 | ||
1541 | // --------------------------------------------------------------------------- | |
1542 | // wxTreeListItem | |
1543 | // --------------------------------------------------------------------------- | |
1544 | ||
1545 | wxTreeListItem::wxTreeListItem (wxTreeListMainWindow *owner, | |
1546 | wxTreeListItem *parent, | |
1547 | const wxArrayString& text, | |
1548 | int image, int selImage, | |
1549 | wxTreeItemData *data) | |
1550 | : m_text (text) { | |
1551 | ||
1552 | m_images[wxTreeItemIcon_Normal] = image; | |
1553 | m_images[wxTreeItemIcon_Selected] = selImage; | |
1554 | m_images[wxTreeItemIcon_Expanded] = NO_IMAGE; | |
1555 | m_images[wxTreeItemIcon_SelectedExpanded] = NO_IMAGE; | |
1556 | ||
1557 | m_data = data; | |
1558 | m_x = 0; | |
1559 | m_y = 0; | |
1560 | m_text_x = 0; | |
1561 | ||
1562 | m_isCollapsed = true; | |
1563 | m_hasHilight = false; | |
1564 | m_hasPlus = false; | |
1565 | m_isBold = false; | |
1566 | ||
1567 | m_owner = owner; | |
1568 | m_parent = parent; | |
1569 | ||
1570 | m_attr = (wxTreeItemAttr *)NULL; | |
1571 | m_ownsAttr = false; | |
1572 | ||
1573 | // We don't know the height here yet. | |
1574 | m_width = 0; | |
1575 | m_height = 0; | |
1576 | } | |
1577 | ||
1578 | wxTreeListItem::~wxTreeListItem() { | |
1579 | delete m_data; | |
1580 | if (m_ownsAttr) delete m_attr; | |
1581 | ||
1582 | wxASSERT_MSG( m_children.IsEmpty(), _T("please call DeleteChildren() before destructor")); | |
1583 | } | |
1584 | ||
1585 | void wxTreeListItem::DeleteChildren (wxTreeListMainWindow *tree) { | |
1586 | size_t count = m_children.Count(); | |
1587 | for (size_t n = 0; n < count; n++) { | |
1588 | wxTreeListItem *child = m_children[n]; | |
1589 | if (tree) { | |
1590 | tree->SendDeleteEvent (child); | |
1591 | if (tree->m_selectItem == child) tree->m_selectItem = (wxTreeListItem*)NULL; | |
1592 | } | |
1593 | child->DeleteChildren (tree); | |
1594 | delete child; | |
1595 | } | |
1596 | m_children.Empty(); | |
1597 | } | |
1598 | ||
1599 | void wxTreeListItem::SetText (const wxString &text) { | |
1600 | if (m_text.GetCount() > 0) { | |
1601 | m_text[0] = text; | |
1602 | }else{ | |
1603 | m_text.Add (text); | |
1604 | } | |
1605 | } | |
1606 | ||
1607 | size_t wxTreeListItem::GetChildrenCount (bool recursively) const { | |
1608 | size_t count = m_children.Count(); | |
1609 | if (!recursively) return count; | |
1610 | ||
1611 | size_t total = count; | |
1612 | for (size_t n = 0; n < count; ++n) { | |
1613 | total += m_children[n]->GetChildrenCount(); | |
1614 | } | |
1615 | return total; | |
1616 | } | |
1617 | ||
1618 | void wxTreeListItem::GetSize (int &x, int &y, const wxTreeListMainWindow *theButton) { | |
1619 | int bottomY = m_y + theButton->GetLineHeight (this); | |
1620 | if (y < bottomY) y = bottomY; | |
1621 | int width = m_x + m_width; | |
1622 | if ( x < width ) x = width; | |
1623 | ||
1624 | if (IsExpanded()) { | |
1625 | size_t count = m_children.Count(); | |
1626 | for (size_t n = 0; n < count; ++n ) { | |
1627 | m_children[n]->GetSize (x, y, theButton); | |
1628 | } | |
1629 | } | |
1630 | } | |
1631 | ||
1632 | wxTreeListItem *wxTreeListItem::HitTest (const wxPoint& point, | |
1633 | const wxTreeListMainWindow *theCtrl, | |
1634 | int &flags, int& column, int level) { | |
1635 | ||
1636 | // for a hidden root node, don't evaluate it, but do evaluate children | |
1637 | if (!theCtrl->HasFlag(wxTR_HIDE_ROOT) || (level > 0)) { | |
1638 | ||
1639 | // reset any previous hit infos | |
1640 | flags = 0; | |
1641 | column = -1; | |
1642 | wxTreeListHeaderWindow* header_win = theCtrl->m_owner->GetHeaderWindow(); | |
1643 | ||
1644 | // check for right of all columns (outside) | |
1645 | if (point.x > header_win->GetWidth()) return (wxTreeListItem*) NULL; | |
1646 | ||
1647 | // evaluate if y-pos is okay | |
1648 | int h = theCtrl->GetLineHeight (this); | |
1649 | if ((point.y >= m_y) && (point.y <= m_y + h)) { | |
1650 | ||
1651 | int maincol = theCtrl->GetMainColumn(); | |
1652 | ||
1653 | // check for above/below middle | |
1654 | int y_mid = m_y + h/2; | |
1655 | if (point.y < y_mid) { | |
1656 | flags |= wxTREE_HITTEST_ONITEMUPPERPART; | |
1657 | }else{ | |
1658 | flags |= wxTREE_HITTEST_ONITEMLOWERPART; | |
1659 | } | |
1660 | ||
1661 | // check for button hit | |
1662 | if (HasPlus() && theCtrl->HasButtons()) { | |
1663 | int bntX = m_x - theCtrl->m_btnWidth2; | |
1664 | int bntY = y_mid - theCtrl->m_btnHeight2; | |
1665 | if ((point.x >= bntX) && (point.x <= (bntX + theCtrl->m_btnWidth)) && | |
1666 | (point.y >= bntY) && (point.y <= (bntY + theCtrl->m_btnHeight))) { | |
1667 | flags |= wxTREE_HITTEST_ONITEMBUTTON; | |
1668 | column = maincol; | |
1669 | return this; | |
1670 | } | |
1671 | } | |
1672 | ||
1673 | // check for image hit | |
1674 | if (theCtrl->m_imgWidth > 0) { | |
1675 | int imgX = m_text_x - theCtrl->m_imgWidth - MARGIN; | |
1676 | int imgY = y_mid - theCtrl->m_imgHeight2; | |
1677 | if ((point.x >= imgX) && (point.x <= (imgX + theCtrl->m_imgWidth)) && | |
1678 | (point.y >= imgY) && (point.y <= (imgY + theCtrl->m_imgHeight))) { | |
1679 | flags |= wxTREE_HITTEST_ONITEMICON; | |
1680 | column = maincol; | |
1681 | return this; | |
1682 | } | |
1683 | } | |
1684 | ||
1685 | // check for label hit | |
1686 | if ((point.x >= m_text_x) && (point.x <= (m_text_x + m_width))) { | |
1687 | flags |= wxTREE_HITTEST_ONITEMLABEL; | |
1688 | column = maincol; | |
1689 | return this; | |
1690 | } | |
1691 | ||
1692 | // check for indent hit after button and image hit | |
1693 | if (point.x < m_x) { | |
1694 | flags |= wxTREE_HITTEST_ONITEMINDENT; | |
1695 | column = -1; // considered not belonging to main column | |
1696 | return this; | |
1697 | } | |
1698 | ||
1699 | // check for right of label | |
1700 | int end = 0; | |
1701 | for (int i = 0; i <= maincol; ++i) end += header_win->GetColumnWidth (i); | |
1702 | if ((point.x > (m_text_x + m_width)) && (point.x <= end)) { | |
1703 | flags |= wxTREE_HITTEST_ONITEMRIGHT; | |
1704 | column = -1; // considered not belonging to main column | |
1705 | return this; | |
1706 | } | |
1707 | ||
1708 | // else check for each column except main | |
1709 | int x = 0; | |
1710 | for (int j = 0; j < theCtrl->GetColumnCount(); ++j) { | |
1711 | if (!header_win->IsColumnShown(j)) continue; | |
1712 | int w = header_win->GetColumnWidth (j); | |
1713 | if ((j != maincol) && (point.x >= x && point.x < x+w)) { | |
1714 | flags |= wxTREE_HITTEST_ONITEMCOLUMN; | |
1715 | column = j; | |
1716 | return this; | |
1717 | } | |
1718 | x += w; | |
1719 | } | |
1720 | ||
1721 | // no special flag or column found | |
1722 | return this; | |
1723 | ||
1724 | } | |
1725 | ||
1726 | // if children not expanded, return no item | |
1727 | if (!IsExpanded()) return (wxTreeListItem*) NULL; | |
1728 | } | |
1729 | ||
1730 | // in any case evaluate children | |
1731 | wxTreeListItem *child; | |
1732 | size_t count = m_children.Count(); | |
1733 | for (size_t n = 0; n < count; n++) { | |
1734 | child = m_children[n]->HitTest (point, theCtrl, flags, column, level+1); | |
1735 | if (child) return child; | |
1736 | } | |
1737 | ||
1738 | // not found | |
1739 | return (wxTreeListItem*) NULL; | |
1740 | } | |
1741 | ||
1742 | int wxTreeListItem::GetCurrentImage() const { | |
1743 | int image = NO_IMAGE; | |
1744 | if (IsExpanded()) { | |
1745 | if (IsSelected()) { | |
1746 | image = GetImage (wxTreeItemIcon_SelectedExpanded); | |
1747 | }else{ | |
1748 | image = GetImage (wxTreeItemIcon_Expanded); | |
1749 | } | |
1750 | }else{ // not expanded | |
1751 | if (IsSelected()) { | |
1752 | image = GetImage (wxTreeItemIcon_Selected); | |
1753 | }else{ | |
1754 | image = GetImage (wxTreeItemIcon_Normal); | |
1755 | } | |
1756 | } | |
1757 | ||
1758 | // maybe it doesn't have the specific image, try the default one instead | |
1759 | if (image == NO_IMAGE) image = GetImage(); | |
1760 | ||
1761 | return image; | |
1762 | } | |
1763 | ||
1764 | // --------------------------------------------------------------------------- | |
1765 | // wxTreeListMainWindow implementation | |
1766 | // --------------------------------------------------------------------------- | |
1767 | ||
1768 | IMPLEMENT_DYNAMIC_CLASS(wxTreeListMainWindow, wxScrolledWindow) | |
1769 | ||
1770 | BEGIN_EVENT_TABLE(wxTreeListMainWindow, wxScrolledWindow) | |
1771 | EVT_PAINT (wxTreeListMainWindow::OnPaint) | |
1772 | EVT_MOUSE_EVENTS (wxTreeListMainWindow::OnMouse) | |
1773 | EVT_CHAR (wxTreeListMainWindow::OnChar) | |
1774 | EVT_SET_FOCUS (wxTreeListMainWindow::OnSetFocus) | |
1775 | EVT_KILL_FOCUS (wxTreeListMainWindow::OnKillFocus) | |
1776 | EVT_IDLE (wxTreeListMainWindow::OnIdle) | |
1777 | EVT_SCROLLWIN (wxTreeListMainWindow::OnScroll) | |
1778 | END_EVENT_TABLE() | |
1779 | ||
1780 | ||
1781 | // --------------------------------------------------------------------------- | |
1782 | // construction/destruction | |
1783 | // --------------------------------------------------------------------------- | |
1784 | ||
1785 | void wxTreeListMainWindow::Init() { | |
1786 | ||
1787 | m_rootItem = (wxTreeListItem*)NULL; | |
1788 | m_curItem = (wxTreeListItem*)NULL; | |
1789 | m_shiftItem = (wxTreeListItem*)NULL; | |
1790 | m_editItem = (wxTreeListItem*)NULL; | |
1791 | m_selectItem = (wxTreeListItem*)NULL; | |
1792 | ||
1793 | m_curColumn = -1; // no current column | |
1794 | ||
1795 | m_hasFocus = false; | |
1796 | m_dirty = false; | |
1797 | ||
1798 | m_lineHeight = LINEHEIGHT; | |
1799 | m_indent = MININDENT; // min. indent | |
1800 | m_linespacing = 4; | |
1801 | ||
1802 | #if !wxCHECK_VERSION(2, 5, 0) | |
1803 | m_hilightBrush = new wxBrush (wxSystemSettings::GetSystemColour (wxSYS_COLOUR_HIGHLIGHT), wxSOLID); | |
1804 | m_hilightUnfocusedBrush = new wxBrush (wxSystemSettings::GetSystemColour (wxSYS_COLOUR_BTNSHADOW), wxSOLID); | |
1805 | #else | |
1806 | m_hilightBrush = new wxBrush (wxSystemSettings::GetColour (wxSYS_COLOUR_HIGHLIGHT), wxSOLID); | |
1807 | m_hilightUnfocusedBrush = new wxBrush (wxSystemSettings::GetColour (wxSYS_COLOUR_BTNSHADOW), wxSOLID); | |
1808 | #endif | |
1809 | ||
1810 | m_imageListNormal = (wxImageList *) NULL; | |
1811 | m_imageListButtons = (wxImageList *) NULL; | |
1812 | m_imageListState = (wxImageList *) NULL; | |
1813 | m_ownsImageListNormal = m_ownsImageListButtons = | |
1814 | m_ownsImageListState = false; | |
1815 | ||
1816 | m_imgWidth = 0, m_imgWidth2 = 0; | |
1817 | m_imgHeight = 0, m_imgHeight2 = 0; | |
1818 | m_btnWidth = 0, m_btnWidth2 = 0; | |
1819 | m_btnHeight = 0, m_btnHeight2 = 0; | |
1820 | ||
1821 | m_dragCount = 0; | |
1822 | m_isDragging = false; | |
1823 | m_dragTimer = new wxTimer (this, -1); | |
1824 | m_dragItem = (wxTreeListItem*)NULL; | |
1825 | ||
1826 | m_renameTimer = new wxTreeListRenameTimer (this); | |
1827 | m_lastOnSame = false; | |
1828 | m_left_down_selection = false; | |
1829 | ||
1830 | m_findTimer = new wxTimer (this, -1); | |
1831 | ||
1832 | #if defined( __WXMAC__ ) && defined(__WXMAC_CARBON__) | |
1833 | m_normalFont.MacCreateThemeFont (kThemeViewsFont); | |
1834 | #else | |
1835 | m_normalFont = wxSystemSettings::GetFont (wxSYS_DEFAULT_GUI_FONT); | |
1836 | #endif | |
1837 | m_boldFont = wxFont( m_normalFont.GetPointSize(), | |
1838 | m_normalFont.GetFamily(), | |
1839 | m_normalFont.GetStyle(), | |
1840 | wxBOLD, | |
1841 | m_normalFont.GetUnderlined(), | |
1842 | m_normalFont.GetFaceName(), | |
1843 | m_normalFont.GetEncoding()); | |
1844 | } | |
1845 | ||
1846 | bool wxTreeListMainWindow::Create (wxTreeListCtrl *parent, | |
1847 | wxWindowID id, | |
1848 | const wxPoint& pos, | |
1849 | const wxSize& size, | |
1850 | long style, | |
1851 | const wxValidator &validator, | |
1852 | const wxString& name) { | |
1853 | ||
1854 | #ifdef __WXMAC__ | |
1855 | style &= ~wxTR_LINES_AT_ROOT; | |
1856 | style |= wxTR_NO_LINES; | |
1857 | ||
1858 | int major,minor; | |
1859 | wxGetOsVersion( &major, &minor ); | |
1860 | if (major < 10) style |= wxTR_ROW_LINES; | |
1861 | #endif | |
1862 | ||
1863 | wxScrolledWindow::Create (parent, id, pos, size, style|wxHSCROLL|wxVSCROLL, name); | |
1864 | ||
1865 | #if wxUSE_VALIDATORS | |
1866 | SetValidator(validator); | |
1867 | #endif | |
1868 | ||
1869 | #if !wxCHECK_VERSION(2, 5, 0) | |
1870 | SetBackgroundColour (wxSystemSettings::GetSystemColour (wxSYS_COLOUR_LISTBOX)); | |
1871 | #else | |
1872 | SetBackgroundColour (wxSystemSettings::GetColour (wxSYS_COLOUR_LISTBOX)); | |
1873 | #endif | |
1874 | ||
1875 | #ifdef __WXMSW__ | |
1876 | { | |
1877 | int i, j; | |
1878 | wxBitmap bmp(8, 8); | |
1879 | wxMemoryDC bdc; | |
1880 | bdc.SelectObject(bmp); | |
1881 | bdc.SetPen(*wxGREY_PEN); | |
1882 | bdc.DrawRectangle(-1, -1, 10, 10); | |
1883 | for (i = 0; i < 8; i++) { | |
1884 | for (j = 0; j < 8; j++) { | |
1885 | if (!((i + j) & 1)) { | |
1886 | bdc.DrawPoint(i, j); | |
1887 | } | |
1888 | } | |
1889 | } | |
1890 | ||
1891 | m_dottedPen = wxPen(bmp, 1); | |
1892 | } | |
1893 | #else | |
1894 | //? m_dottedPen = wxPen( *wxGREY_PEN, 1, wxDOT ); // too slow under XFree86 | |
1895 | m_dottedPen = wxPen( _T("grey"), 0, 0 ); // Bitmap based pen is not supported by GTK! | |
1896 | #endif | |
1897 | ||
1898 | m_owner = parent; | |
1899 | m_main_column = 0; | |
1900 | ||
1901 | return true; | |
1902 | } | |
1903 | ||
1904 | wxTreeListMainWindow::~wxTreeListMainWindow() { | |
1905 | delete m_hilightBrush; | |
1906 | delete m_hilightUnfocusedBrush; | |
1907 | ||
1908 | delete m_dragTimer; | |
1909 | delete m_renameTimer; | |
1910 | delete m_findTimer; | |
1911 | if (m_ownsImageListNormal) delete m_imageListNormal; | |
1912 | if (m_ownsImageListState) delete m_imageListState; | |
1913 | if (m_ownsImageListButtons) delete m_imageListButtons; | |
1914 | ||
1915 | DeleteRoot(); | |
1916 | } | |
1917 | ||
1918 | ||
1919 | //----------------------------------------------------------------------------- | |
1920 | // accessors | |
1921 | //----------------------------------------------------------------------------- | |
1922 | ||
1923 | size_t wxTreeListMainWindow::GetCount() const { | |
1924 | return m_rootItem == NULL? 0: m_rootItem->GetChildrenCount(); | |
1925 | } | |
1926 | ||
1927 | void wxTreeListMainWindow::SetIndent (unsigned int indent) { | |
1928 | m_indent = wxMax ((unsigned)MININDENT, indent); | |
1929 | m_dirty = true; | |
1930 | } | |
1931 | ||
1932 | void wxTreeListMainWindow::SetLineSpacing (unsigned int spacing) { | |
1933 | m_linespacing = spacing; | |
1934 | m_dirty = true; | |
1935 | CalculateLineHeight(); | |
1936 | } | |
1937 | ||
1938 | size_t wxTreeListMainWindow::GetChildrenCount (const wxTreeItemId& item, | |
1939 | bool recursively) { | |
1940 | wxCHECK_MSG (item.IsOk(), 0u, _T("invalid tree item")); | |
1941 | return ((wxTreeListItem*)item.m_pItem)->GetChildrenCount (recursively); | |
1942 | } | |
1943 | ||
1944 | void wxTreeListMainWindow::SetWindowStyle (const long styles) { | |
1945 | // right now, just sets the styles. Eventually, we may | |
1946 | // want to update the inherited styles, but right now | |
1947 | // none of the parents has updatable styles | |
1948 | m_windowStyle = styles; | |
1949 | m_dirty = true; | |
1950 | } | |
1951 | ||
1952 | //----------------------------------------------------------------------------- | |
1953 | // functions to work with tree items | |
1954 | //----------------------------------------------------------------------------- | |
1955 | ||
1956 | int wxTreeListMainWindow::GetItemImage (const wxTreeItemId& item, int column, | |
1957 | wxTreeItemIcon which) const { | |
1958 | wxCHECK_MSG (item.IsOk(), -1, _T("invalid tree item")); | |
1959 | return ((wxTreeListItem*) item.m_pItem)->GetImage (column, which); | |
1960 | } | |
1961 | ||
1962 | wxTreeItemData *wxTreeListMainWindow::GetItemData (const wxTreeItemId& item) const { | |
1963 | wxCHECK_MSG (item.IsOk(), NULL, _T("invalid tree item")); | |
1964 | return ((wxTreeListItem*) item.m_pItem)->GetData(); | |
1965 | } | |
1966 | ||
1967 | bool wxTreeListMainWindow::GetItemBold (const wxTreeItemId& item) const { | |
1968 | wxCHECK_MSG(item.IsOk(), false, _T("invalid tree item")); | |
1969 | return ((wxTreeListItem *)item.m_pItem)->IsBold(); | |
1970 | } | |
1971 | ||
1972 | wxColour wxTreeListMainWindow::GetItemTextColour (const wxTreeItemId& item) const { | |
1973 | wxCHECK_MSG (item.IsOk(), wxNullColour, _T("invalid tree item")); | |
1974 | wxTreeListItem *pItem = (wxTreeListItem*) item.m_pItem; | |
1975 | return pItem->Attr().GetTextColour(); | |
1976 | } | |
1977 | ||
1978 | wxColour wxTreeListMainWindow::GetItemBackgroundColour (const wxTreeItemId& item) const { | |
1979 | wxCHECK_MSG (item.IsOk(), wxNullColour, _T("invalid tree item")); | |
1980 | wxTreeListItem *pItem = (wxTreeListItem*) item.m_pItem; | |
1981 | return pItem->Attr().GetBackgroundColour(); | |
1982 | } | |
1983 | ||
1984 | wxFont wxTreeListMainWindow::GetItemFont (const wxTreeItemId& item) const { | |
1985 | wxCHECK_MSG (item.IsOk(), wxNullFont, _T("invalid tree item")); | |
1986 | wxTreeListItem *pItem = (wxTreeListItem*) item.m_pItem; | |
1987 | return pItem->Attr().GetFont(); | |
1988 | } | |
1989 | ||
1990 | void wxTreeListMainWindow::SetItemImage (const wxTreeItemId& item, int column, | |
1991 | int image, wxTreeItemIcon which) { | |
1992 | wxCHECK_RET (item.IsOk(), _T("invalid tree item")); | |
1993 | wxTreeListItem *pItem = (wxTreeListItem*) item.m_pItem; | |
1994 | pItem->SetImage (column, image, which); | |
1995 | wxClientDC dc (this); | |
1996 | CalculateSize (pItem, dc); | |
1997 | RefreshLine (pItem); | |
1998 | } | |
1999 | ||
2000 | void wxTreeListMainWindow::SetItemData (const wxTreeItemId& item, | |
2001 | wxTreeItemData *data) { | |
2002 | wxCHECK_RET (item.IsOk(), _T("invalid tree item")); | |
2003 | ((wxTreeListItem*) item.m_pItem)->SetData(data); | |
2004 | } | |
2005 | ||
2006 | void wxTreeListMainWindow::SetItemHasChildren (const wxTreeItemId& item, | |
2007 | bool has) { | |
2008 | wxCHECK_RET (item.IsOk(), _T("invalid tree item")); | |
2009 | wxTreeListItem *pItem = (wxTreeListItem*) item.m_pItem; | |
2010 | pItem->SetHasPlus (has); | |
2011 | RefreshLine (pItem); | |
2012 | } | |
2013 | ||
2014 | void wxTreeListMainWindow::SetItemBold (const wxTreeItemId& item, bool bold) { | |
2015 | wxCHECK_RET (item.IsOk(), _T("invalid tree item")); | |
2016 | wxTreeListItem *pItem = (wxTreeListItem*) item.m_pItem; | |
2017 | if (pItem->IsBold() != bold) { // avoid redrawing if no real change | |
2018 | pItem->SetBold (bold); | |
2019 | RefreshLine (pItem); | |
2020 | } | |
2021 | } | |
2022 | ||
2023 | void wxTreeListMainWindow::SetItemTextColour (const wxTreeItemId& item, | |
2024 | const wxColour& colour) { | |
2025 | wxCHECK_RET (item.IsOk(), _T("invalid tree item")); | |
2026 | wxTreeListItem *pItem = (wxTreeListItem*) item.m_pItem; | |
2027 | pItem->Attr().SetTextColour (colour); | |
2028 | RefreshLine (pItem); | |
2029 | } | |
2030 | ||
2031 | void wxTreeListMainWindow::SetItemBackgroundColour (const wxTreeItemId& item, | |
2032 | const wxColour& colour) { | |
2033 | wxCHECK_RET (item.IsOk(), _T("invalid tree item")); | |
2034 | wxTreeListItem *pItem = (wxTreeListItem*) item.m_pItem; | |
2035 | pItem->Attr().SetBackgroundColour (colour); | |
2036 | RefreshLine (pItem); | |
2037 | } | |
2038 | ||
2039 | void wxTreeListMainWindow::SetItemFont (const wxTreeItemId& item, | |
2040 | const wxFont& font) { | |
2041 | wxCHECK_RET (item.IsOk(), _T("invalid tree item")); | |
2042 | wxTreeListItem *pItem = (wxTreeListItem*) item.m_pItem; | |
2043 | pItem->Attr().SetFont (font); | |
2044 | RefreshLine (pItem); | |
2045 | } | |
2046 | ||
2047 | bool wxTreeListMainWindow::SetFont (const wxFont &font) { | |
2048 | wxScrolledWindow::SetFont (font); | |
2049 | m_normalFont = font; | |
2050 | m_boldFont = wxFont (m_normalFont.GetPointSize(), | |
2051 | m_normalFont.GetFamily(), | |
2052 | m_normalFont.GetStyle(), | |
2053 | wxBOLD, | |
2054 | m_normalFont.GetUnderlined(), | |
2055 | m_normalFont.GetFaceName()); | |
2056 | CalculateLineHeight(); | |
2057 | return true; | |
2058 | } | |
2059 | ||
2060 | ||
2061 | // ---------------------------------------------------------------------------- | |
2062 | // item status inquiries | |
2063 | // ---------------------------------------------------------------------------- | |
2064 | ||
2065 | bool wxTreeListMainWindow::IsVisible (const wxTreeItemId& item, bool fullRow) const { | |
2066 | wxCHECK_MSG (item.IsOk(), false, _T("invalid tree item")); | |
2067 | ||
2068 | // An item is only visible if it's not a descendant of a collapsed item | |
2069 | wxTreeListItem *pItem = (wxTreeListItem*) item.m_pItem; | |
2070 | wxTreeListItem* parent = pItem->GetItemParent(); | |
2071 | while (parent) { | |
2072 | if (parent == m_rootItem && HasFlag(wxTR_HIDE_ROOT)) break; | |
2073 | if (!parent->IsExpanded()) return false; | |
2074 | parent = parent->GetItemParent(); | |
2075 | } | |
2076 | ||
2077 | wxSize clientSize = GetClientSize(); | |
2078 | wxRect rect; | |
2079 | if ((!GetBoundingRect (item, rect)) || | |
2080 | ((!fullRow && rect.GetWidth() == 0) || rect.GetHeight() == 0) || | |
2081 | (rect.GetBottom() < 0 || rect.GetTop() > clientSize.y) || | |
2082 | (!fullRow && (rect.GetRight() < 0 || rect.GetLeft() > clientSize.x))) return false; | |
2083 | ||
2084 | return true; | |
2085 | } | |
2086 | ||
2087 | bool wxTreeListMainWindow::HasChildren (const wxTreeItemId& item) const { | |
2088 | wxCHECK_MSG (item.IsOk(), false, _T("invalid tree item")); | |
2089 | ||
2090 | // consider that the item does have children if it has the "+" button: it | |
2091 | // might not have them (if it had never been expanded yet) but then it | |
2092 | // could have them as well and it's better to err on this side rather than | |
2093 | // disabling some operations which are restricted to the items with | |
2094 | // children for an item which does have them | |
2095 | return ((wxTreeListItem*) item.m_pItem)->HasPlus(); | |
2096 | } | |
2097 | ||
2098 | bool wxTreeListMainWindow::IsExpanded (const wxTreeItemId& item) const { | |
2099 | wxCHECK_MSG (item.IsOk(), false, _T("invalid tree item")); | |
2100 | return ((wxTreeListItem*) item.m_pItem)->IsExpanded(); | |
2101 | } | |
2102 | ||
2103 | bool wxTreeListMainWindow::IsSelected (const wxTreeItemId& item) const { | |
2104 | wxCHECK_MSG (item.IsOk(), false, _T("invalid tree item")); | |
2105 | return ((wxTreeListItem*) item.m_pItem)->IsSelected(); | |
2106 | } | |
2107 | ||
2108 | bool wxTreeListMainWindow::IsBold (const wxTreeItemId& item) const { | |
2109 | wxCHECK_MSG (item.IsOk(), false, _T("invalid tree item")); | |
2110 | return ((wxTreeListItem*) item.m_pItem)->IsBold(); | |
2111 | } | |
2112 | ||
2113 | // ---------------------------------------------------------------------------- | |
2114 | // navigation | |
2115 | // ---------------------------------------------------------------------------- | |
2116 | ||
2117 | wxTreeItemId wxTreeListMainWindow::GetItemParent (const wxTreeItemId& item) const { | |
2118 | wxCHECK_MSG (item.IsOk(), wxTreeItemId(), _T("invalid tree item")); | |
2119 | return ((wxTreeListItem*) item.m_pItem)->GetItemParent(); | |
2120 | } | |
2121 | ||
2122 | #if !wxCHECK_VERSION(2, 5, 0) | |
2123 | wxTreeItemId wxTreeListMainWindow::GetFirstChild (const wxTreeItemId& item, | |
2124 | long& cookie) const { | |
2125 | #else | |
2126 | wxTreeItemId wxTreeListMainWindow::GetFirstChild (const wxTreeItemId& item, | |
2127 | wxTreeItemIdValue& cookie) const { | |
2128 | #endif | |
2129 | wxCHECK_MSG (item.IsOk(), wxTreeItemId(), _T("invalid tree item")); | |
2130 | wxArrayTreeListItems& children = ((wxTreeListItem*) item.m_pItem)->GetChildren(); | |
2131 | cookie = 0; | |
2132 | return (!children.IsEmpty())? wxTreeItemId(children.Item(0)): wxTreeItemId(); | |
2133 | } | |
2134 | ||
2135 | #if !wxCHECK_VERSION(2, 5, 0) | |
2136 | wxTreeItemId wxTreeListMainWindow::GetNextChild (const wxTreeItemId& item, | |
2137 | long& cookie) const { | |
2138 | #else | |
2139 | wxTreeItemId wxTreeListMainWindow::GetNextChild (const wxTreeItemId& item, | |
2140 | wxTreeItemIdValue& cookie) const { | |
2141 | #endif | |
2142 | wxCHECK_MSG (item.IsOk(), wxTreeItemId(), _T("invalid tree item")); | |
2143 | wxArrayTreeListItems& children = ((wxTreeListItem*) item.m_pItem)->GetChildren(); | |
2144 | // it's ok to cast cookie to long, we never have indices which overflow "void*" | |
2145 | long *pIndex = ((long*)&cookie); | |
2146 | return ((*pIndex)+1 < (long)children.Count())? wxTreeItemId(children.Item(++(*pIndex))): wxTreeItemId(); | |
2147 | } | |
2148 | ||
2149 | #if !wxCHECK_VERSION(2, 5, 0) | |
2150 | wxTreeItemId wxTreeListMainWindow::GetPrevChild (const wxTreeItemId& item, | |
2151 | long& cookie) const { | |
2152 | #else | |
2153 | wxTreeItemId wxTreeListMainWindow::GetPrevChild (const wxTreeItemId& item, | |
2154 | wxTreeItemIdValue& cookie) const { | |
2155 | #endif | |
2156 | wxCHECK_MSG (item.IsOk(), wxTreeItemId(), _T("invalid tree item")); | |
2157 | wxArrayTreeListItems& children = ((wxTreeListItem*) item.m_pItem)->GetChildren(); | |
2158 | // it's ok to cast cookie to long, we never have indices which overflow "void*" | |
2159 | long *pIndex = (long*)&cookie; | |
2160 | return ((*pIndex)-1 >= 0)? wxTreeItemId(children.Item(--(*pIndex))): wxTreeItemId(); | |
2161 | } | |
2162 | ||
2163 | #if !wxCHECK_VERSION(2, 5, 0) | |
2164 | wxTreeItemId wxTreeListMainWindow::GetLastChild (const wxTreeItemId& item, | |
2165 | long& cookie) const { | |
2166 | #else | |
2167 | wxTreeItemId wxTreeListMainWindow::GetLastChild (const wxTreeItemId& item, | |
2168 | wxTreeItemIdValue& cookie) const { | |
2169 | #endif | |
2170 | wxCHECK_MSG (item.IsOk(), wxTreeItemId(), _T("invalid tree item")); | |
2171 | wxArrayTreeListItems& children = ((wxTreeListItem*) item.m_pItem)->GetChildren(); | |
2172 | // it's ok to cast cookie to long, we never have indices which overflow "void*" | |
2173 | long *pIndex = ((long*)&cookie); | |
2174 | (*pIndex) = children.Count(); | |
2175 | return (!children.IsEmpty())? wxTreeItemId(children.Last()): wxTreeItemId(); | |
2176 | } | |
2177 | ||
2178 | wxTreeItemId wxTreeListMainWindow::GetNextSibling (const wxTreeItemId& item) const { | |
2179 | wxCHECK_MSG (item.IsOk(), wxTreeItemId(), _T("invalid tree item")); | |
2180 | ||
2181 | // get parent | |
2182 | wxTreeListItem *i = (wxTreeListItem*) item.m_pItem; | |
2183 | wxTreeListItem *parent = i->GetItemParent(); | |
2184 | if (!parent) return wxTreeItemId(); // root item doesn't have any siblings | |
2185 | ||
2186 | // get index | |
2187 | wxArrayTreeListItems& siblings = parent->GetChildren(); | |
2188 | size_t index = siblings.Index (i); | |
2189 | wxASSERT (index != (size_t)wxNOT_FOUND); // I'm not a child of my parent? | |
2190 | return (index < siblings.Count()-1)? wxTreeItemId(siblings[index+1]): wxTreeItemId(); | |
2191 | } | |
2192 | ||
2193 | wxTreeItemId wxTreeListMainWindow::GetPrevSibling (const wxTreeItemId& item) const { | |
2194 | wxCHECK_MSG (item.IsOk(), wxTreeItemId(), _T("invalid tree item")); | |
2195 | ||
2196 | // get parent | |
2197 | wxTreeListItem *i = (wxTreeListItem*) item.m_pItem; | |
2198 | wxTreeListItem *parent = i->GetItemParent(); | |
2199 | if (!parent) return wxTreeItemId(); // root item doesn't have any siblings | |
2200 | ||
2201 | // get index | |
2202 | wxArrayTreeListItems& siblings = parent->GetChildren(); | |
2203 | size_t index = siblings.Index(i); | |
2204 | wxASSERT (index != (size_t)wxNOT_FOUND); // I'm not a child of my parent? | |
2205 | return (index >= 1)? wxTreeItemId(siblings[index-1]): wxTreeItemId(); | |
2206 | } | |
2207 | ||
2208 | // Only for internal use right now, but should probably be public | |
2209 | wxTreeItemId wxTreeListMainWindow::GetNext (const wxTreeItemId& item, bool fulltree) const { | |
2210 | wxCHECK_MSG (item.IsOk(), wxTreeItemId(), _T("invalid tree item")); | |
2211 | ||
2212 | // if there are any children, return first child | |
2213 | if (fulltree || ((wxTreeListItem*)item.m_pItem)->IsExpanded()) { | |
2214 | wxArrayTreeListItems& children = ((wxTreeListItem*)item.m_pItem)->GetChildren(); | |
2215 | if (children.GetCount() > 0) return children.Item (0); | |
2216 | } | |
2217 | ||
2218 | // get sibling of this item or of the ancestors instead | |
2219 | wxTreeItemId next; | |
2220 | wxTreeItemId parent = item; | |
2221 | do { | |
2222 | next = GetNextSibling (parent); | |
2223 | parent = GetItemParent (parent); | |
2224 | } while (!next.IsOk() && parent.IsOk()); | |
2225 | return next; | |
2226 | } | |
2227 | ||
2228 | // Only for internal use right now, but should probably be public | |
2229 | wxTreeItemId wxTreeListMainWindow::GetPrev (const wxTreeItemId& item, bool fulltree) const { | |
2230 | wxCHECK_MSG (item.IsOk(), wxTreeItemId(), _T("invalid tree item")); | |
2231 | ||
2232 | // if there are any children, return last child | |
2233 | if (fulltree || ((wxTreeListItem*)item.m_pItem)->IsExpanded()) { | |
2234 | wxArrayTreeListItems& children = ((wxTreeListItem*)item.m_pItem)->GetChildren(); | |
2235 | if (children.GetCount() > 0) return children.Item (children.GetCount()-1); | |
2236 | } | |
2237 | ||
2238 | // get sibling of this item or of the ancestors instead | |
2239 | wxTreeItemId next; | |
2240 | wxTreeItemId parent = item; | |
2241 | do { | |
2242 | next = GetPrevSibling (parent); | |
2243 | parent = GetItemParent (parent); | |
2244 | } while (!next.IsOk() && parent.IsOk()); | |
2245 | return next; | |
2246 | } | |
2247 | ||
2248 | wxTreeItemId wxTreeListMainWindow::GetFirstExpandedItem() const { | |
2249 | return GetNextExpanded (GetRootItem()); | |
2250 | } | |
2251 | ||
2252 | wxTreeItemId wxTreeListMainWindow::GetNextExpanded (const wxTreeItemId& item) const { | |
2253 | wxCHECK_MSG (item.IsOk(), wxTreeItemId(), _T("invalid tree item")); | |
2254 | return GetNext (item, false); | |
2255 | } | |
2256 | ||
2257 | wxTreeItemId wxTreeListMainWindow::GetPrevExpanded (const wxTreeItemId& item) const { | |
2258 | wxCHECK_MSG (item.IsOk(), wxTreeItemId(), _T("invalid tree item")); | |
2259 | return GetPrev (item, false); | |
2260 | } | |
2261 | ||
2262 | wxTreeItemId wxTreeListMainWindow::GetFirstVisibleItem (bool fullRow) const { | |
2263 | return GetNextVisible (GetRootItem(), fullRow); | |
2264 | } | |
2265 | ||
2266 | wxTreeItemId wxTreeListMainWindow::GetNextVisible (const wxTreeItemId& item, bool fullRow) const { | |
2267 | wxCHECK_MSG (item.IsOk(), wxTreeItemId(), _T("invalid tree item")); | |
2268 | wxTreeItemId id = GetNext (item, false); | |
2269 | while (id.IsOk()) { | |
2270 | if (IsVisible (id, fullRow)) return id; | |
2271 | id = GetNext (id, false); | |
2272 | } | |
2273 | return wxTreeItemId(); | |
2274 | } | |
2275 | ||
2276 | wxTreeItemId wxTreeListMainWindow::GetPrevVisible (const wxTreeItemId& item, bool fullRow) const { | |
2277 | wxCHECK_MSG (item.IsOk(), wxTreeItemId(), _T("invalid tree item")); | |
2278 | wxTreeItemId id = GetPrev (item, true); | |
2279 | while (id.IsOk()) { | |
2280 | if (IsVisible (id, fullRow)) return id; | |
2281 | id = GetPrev(id, true); | |
2282 | } | |
2283 | return wxTreeItemId(); | |
2284 | } | |
2285 | ||
2286 | // ---------------------------------------------------------------------------- | |
2287 | // operations | |
2288 | // ---------------------------------------------------------------------------- | |
2289 | ||
2290 | wxTreeItemId wxTreeListMainWindow::DoInsertItem (const wxTreeItemId& parentId, | |
2291 | size_t previous, | |
2292 | const wxString& text, | |
2293 | int image, int selImage, | |
2294 | wxTreeItemData *data) { | |
2295 | wxTreeListItem *parent = (wxTreeListItem*)parentId.m_pItem; | |
2296 | wxCHECK_MSG (parent, wxTreeItemId(), _T("item must have a parent, at least root!") ); | |
2297 | m_dirty = true; // do this first so stuff below doesn't cause flicker | |
2298 | ||
2299 | wxArrayString arr; | |
2300 | arr.Alloc (GetColumnCount()); | |
2301 | for (int i = 0; i < (int)GetColumnCount(); ++i) arr.Add (wxEmptyString); | |
2302 | arr[m_main_column] = text; | |
2303 | wxTreeListItem *item = new wxTreeListItem (this, parent, arr, image, selImage, data); | |
2304 | if (data != NULL) { | |
2305 | #if !wxCHECK_VERSION(2, 5, 0) | |
2306 | data->SetId ((long)item); | |
2307 | #else | |
2308 | data->SetId (item); | |
2309 | #endif | |
2310 | } | |
2311 | parent->Insert (item, previous); | |
2312 | ||
2313 | return item; | |
2314 | } | |
2315 | ||
2316 | wxTreeItemId wxTreeListMainWindow::AddRoot (const wxString& text, | |
2317 | int image, int selImage, | |
2318 | wxTreeItemData *data) { | |
2319 | wxCHECK_MSG(!m_rootItem, wxTreeItemId(), _T("tree can have only one root")); | |
2320 | wxCHECK_MSG(GetColumnCount(), wxTreeItemId(), _T("Add column(s) before adding the root item")); | |
2321 | m_dirty = true; // do this first so stuff below doesn't cause flicker | |
2322 | ||
2323 | wxArrayString arr; | |
2324 | arr.Alloc (GetColumnCount()); | |
2325 | for (int i = 0; i < (int)GetColumnCount(); ++i) arr.Add (wxEmptyString); | |
2326 | arr[m_main_column] = text; | |
2327 | m_rootItem = new wxTreeListItem (this, (wxTreeListItem *)NULL, arr, image, selImage, data); | |
2328 | if (data != NULL) { | |
2329 | #if !wxCHECK_VERSION(2, 5, 0) | |
2330 | data->SetId((long)m_rootItem); | |
2331 | #else | |
2332 | data->SetId(m_rootItem); | |
2333 | #endif | |
2334 | } | |
2335 | if (HasFlag(wxTR_HIDE_ROOT)) { | |
2336 | // if we will hide the root, make sure children are visible | |
2337 | m_rootItem->SetHasPlus(); | |
2338 | m_rootItem->Expand(); | |
2339 | #if !wxCHECK_VERSION(2, 5, 0) | |
2340 | long cookie = 0; | |
2341 | #else | |
2342 | wxTreeItemIdValue cookie = 0; | |
2343 | #endif | |
2344 | m_curItem = (wxTreeListItem*)GetFirstChild (m_rootItem, cookie).m_pItem; | |
2345 | } | |
2346 | return m_rootItem; | |
2347 | } | |
2348 | ||
2349 | wxTreeItemId wxTreeListMainWindow::PrependItem (const wxTreeItemId& parent, | |
2350 | const wxString& text, | |
2351 | int image, int selImage, | |
2352 | wxTreeItemData *data) { | |
2353 | return DoInsertItem (parent, 0u, text, image, selImage, data); | |
2354 | } | |
2355 | ||
2356 | wxTreeItemId wxTreeListMainWindow::InsertItem (const wxTreeItemId& parentId, | |
2357 | const wxTreeItemId& idPrevious, | |
2358 | const wxString& text, | |
2359 | int image, int selImage, | |
2360 | wxTreeItemData *data) { | |
2361 | wxTreeListItem *parent = (wxTreeListItem*)parentId.m_pItem; | |
2362 | wxCHECK_MSG (parent, wxTreeItemId(), _T("item must have a parent, at least root!") ); | |
2363 | ||
2364 | int index = parent->GetChildren().Index((wxTreeListItem*) idPrevious.m_pItem); | |
2365 | wxASSERT_MSG( index != wxNOT_FOUND, | |
2366 | _T("previous item in wxTreeListMainWindow::InsertItem() is not a sibling") ); | |
2367 | ||
2368 | return DoInsertItem (parentId, ++index, text, image, selImage, data); | |
2369 | } | |
2370 | ||
2371 | wxTreeItemId wxTreeListMainWindow::InsertItem (const wxTreeItemId& parentId, | |
2372 | size_t before, | |
2373 | const wxString& text, | |
2374 | int image, int selImage, | |
2375 | wxTreeItemData *data) { | |
2376 | wxTreeListItem *parent = (wxTreeListItem*)parentId.m_pItem; | |
2377 | wxCHECK_MSG (parent, wxTreeItemId(), _T("item must have a parent, at least root!") ); | |
2378 | ||
2379 | return DoInsertItem (parentId, before, text, image, selImage, data); | |
2380 | } | |
2381 | ||
2382 | wxTreeItemId wxTreeListMainWindow::AppendItem (const wxTreeItemId& parentId, | |
2383 | const wxString& text, | |
2384 | int image, int selImage, | |
2385 | wxTreeItemData *data) { | |
2386 | wxTreeListItem *parent = (wxTreeListItem*) parentId.m_pItem; | |
2387 | wxCHECK_MSG (parent, wxTreeItemId(), _T("item must have a parent, at least root!") ); | |
2388 | ||
2389 | return DoInsertItem (parent, parent->GetChildren().Count(), text, image, selImage, data); | |
2390 | } | |
2391 | ||
2392 | void wxTreeListMainWindow::SendDeleteEvent (wxTreeListItem *item) { | |
2393 | // send event to user code | |
2394 | wxTreeEvent event (wxEVT_COMMAND_TREE_DELETE_ITEM, m_owner->GetId()); | |
2395 | #if !wxCHECK_VERSION(2, 5, 0) | |
2396 | event.SetItem ((long)item); | |
2397 | #else | |
2398 | event.SetItem (item); | |
2399 | #endif | |
2400 | event.SetEventObject (m_owner); | |
2401 | m_owner->ProcessEvent (event); | |
2402 | } | |
2403 | ||
2404 | void wxTreeListMainWindow::Delete (const wxTreeItemId& itemId) { | |
2405 | wxTreeListItem *item = (wxTreeListItem*) itemId.m_pItem; | |
2406 | wxCHECK_RET (item != m_rootItem, _T("invalid item, root may not be deleted this way!")); | |
2407 | m_dirty = true; // do this first so stuff below doesn't cause flicker | |
2408 | ||
2409 | // don't stay with invalid m_shiftItem or we will crash in the next call to OnChar() | |
2410 | bool changeKeyCurrent = false; | |
2411 | wxTreeListItem *itemKey = m_shiftItem; | |
2412 | while (itemKey) { | |
2413 | if (itemKey == item) { // m_shiftItem is a descendant of the item being deleted | |
2414 | changeKeyCurrent = true; | |
2415 | break; | |
2416 | } | |
2417 | itemKey = itemKey->GetItemParent(); | |
2418 | } | |
2419 | ||
2420 | wxTreeListItem *parent = item->GetItemParent(); | |
2421 | if (parent) { | |
2422 | parent->GetChildren().Remove (item); // remove by value | |
2423 | } | |
2424 | if (changeKeyCurrent) m_shiftItem = parent; | |
2425 | ||
2426 | SendDeleteEvent (item); | |
2427 | if (m_selectItem == item) m_selectItem = (wxTreeListItem*)NULL; | |
2428 | item->DeleteChildren (this); | |
2429 | delete item; | |
2430 | } | |
2431 | ||
2432 | void wxTreeListMainWindow::DeleteChildren (const wxTreeItemId& itemId) { | |
2433 | wxTreeListItem *item = (wxTreeListItem*) itemId.m_pItem; | |
2434 | m_dirty = true; // do this first so stuff below doesn't cause flicker | |
2435 | ||
2436 | item->DeleteChildren (this); | |
2437 | } | |
2438 | ||
2439 | void wxTreeListMainWindow::DeleteRoot() { | |
2440 | if (m_rootItem) { | |
2441 | m_dirty = true; | |
2442 | SendDeleteEvent (m_rootItem); | |
2443 | m_curItem = (wxTreeListItem*)NULL; | |
2444 | m_selectItem= (wxTreeListItem*)NULL; | |
2445 | m_rootItem->DeleteChildren (this); | |
2446 | delete m_rootItem; | |
2447 | m_rootItem = NULL; | |
2448 | } | |
2449 | } | |
2450 | ||
2451 | void wxTreeListMainWindow::Expand (const wxTreeItemId& itemId) { | |
2452 | wxTreeListItem *item = (wxTreeListItem*) itemId.m_pItem; | |
2453 | wxCHECK_RET (item, _T("invalid item in wxTreeListMainWindow::Expand") ); | |
2454 | ||
2455 | if (!item->HasPlus() || item->IsExpanded()) return; | |
2456 | ||
2457 | // send event to user code | |
2458 | wxTreeEvent event (wxEVT_COMMAND_TREE_ITEM_EXPANDING, m_owner->GetId()); | |
2459 | #if !wxCHECK_VERSION(2, 5, 0) | |
2460 | event.SetItem ((long)item); | |
2461 | #else | |
2462 | event.SetItem (item); | |
2463 | #endif | |
2464 | event.SetEventObject (m_owner); | |
2465 | if (m_owner->ProcessEvent (event) && !event.IsAllowed()) return; // expand canceled | |
2466 | ||
2467 | item->Expand(); | |
2468 | m_dirty = true; | |
2469 | ||
2470 | // send event to user code | |
2471 | event.SetEventType (wxEVT_COMMAND_TREE_ITEM_EXPANDED); | |
2472 | m_owner->ProcessEvent (event); | |
2473 | } | |
2474 | ||
2475 | void wxTreeListMainWindow::ExpandAll (const wxTreeItemId& itemId) { | |
2476 | Expand (itemId); | |
2477 | if (!IsExpanded (itemId)) return; | |
2478 | #if !wxCHECK_VERSION(2, 5, 0) | |
2479 | long cookie; | |
2480 | #else | |
2481 | wxTreeItemIdValue cookie; | |
2482 | #endif | |
2483 | wxTreeItemId child = GetFirstChild (itemId, cookie); | |
2484 | while (child.IsOk()) { | |
2485 | ExpandAll (child); | |
2486 | child = GetNextChild (itemId, cookie); | |
2487 | } | |
2488 | } | |
2489 | ||
2490 | void wxTreeListMainWindow::Collapse (const wxTreeItemId& itemId) { | |
2491 | wxTreeListItem *item = (wxTreeListItem*) itemId.m_pItem; | |
2492 | wxCHECK_RET (item, _T("invalid item in wxTreeListMainWindow::Collapse") ); | |
2493 | ||
2494 | if (!item->HasPlus() || !item->IsExpanded()) return; | |
2495 | ||
2496 | // send event to user code | |
2497 | wxTreeEvent event (wxEVT_COMMAND_TREE_ITEM_COLLAPSING, m_owner->GetId() ); | |
2498 | #if !wxCHECK_VERSION(2, 5, 0) | |
2499 | event.SetItem ((long)item); | |
2500 | #else | |
2501 | event.SetItem (item); | |
2502 | #endif | |
2503 | event.SetEventObject (m_owner); | |
2504 | if (m_owner->ProcessEvent (event) && !event.IsAllowed()) return; // collapse canceled | |
2505 | ||
2506 | item->Collapse(); | |
2507 | m_dirty = true; | |
2508 | ||
2509 | // send event to user code | |
2510 | event.SetEventType (wxEVT_COMMAND_TREE_ITEM_COLLAPSED); | |
2511 | ProcessEvent (event); | |
2512 | } | |
2513 | ||
2514 | void wxTreeListMainWindow::CollapseAndReset (const wxTreeItemId& item) { | |
2515 | Collapse (item); | |
2516 | DeleteChildren (item); | |
2517 | } | |
2518 | ||
2519 | void wxTreeListMainWindow::Toggle (const wxTreeItemId& itemId) { | |
2520 | if (IsExpanded (itemId)) { | |
2521 | Collapse (itemId); | |
2522 | }else{ | |
2523 | Expand (itemId); | |
2524 | } | |
2525 | } | |
2526 | ||
2527 | void wxTreeListMainWindow::Unselect() { | |
2528 | if (m_selectItem) { | |
2529 | m_selectItem->SetHilight (false); | |
2530 | RefreshLine (m_selectItem); | |
2531 | m_selectItem = (wxTreeListItem*)NULL; | |
2532 | } | |
2533 | } | |
2534 | ||
2535 | void wxTreeListMainWindow::UnselectAllChildren (wxTreeListItem *item) { | |
2536 | if (item->IsSelected()) { | |
2537 | item->SetHilight (false); | |
2538 | RefreshLine (item); | |
2539 | if (item == m_selectItem) m_selectItem = (wxTreeListItem*)NULL; | |
2540 | } | |
2541 | if (item->HasChildren()) { | |
2542 | wxArrayTreeListItems& children = item->GetChildren(); | |
2543 | size_t count = children.Count(); | |
2544 | for (size_t n = 0; n < count; ++n) { | |
2545 | UnselectAllChildren (children[n]); | |
2546 | } | |
2547 | } | |
2548 | } | |
2549 | ||
2550 | void wxTreeListMainWindow::UnselectAll() { | |
2551 | UnselectAllChildren ((wxTreeListItem*)GetRootItem().m_pItem); | |
2552 | } | |
2553 | ||
2554 | // Recursive function ! | |
2555 | // To stop we must have crt_item<last_item | |
2556 | // Algorithm : | |
2557 | // Tag all next children, when no more children, | |
2558 | // Move to parent (not to tag) | |
2559 | // Keep going... if we found last_item, we stop. | |
2560 | bool wxTreeListMainWindow::TagNextChildren (wxTreeListItem *crt_item, | |
2561 | wxTreeListItem *last_item) { | |
2562 | wxTreeListItem *parent = crt_item->GetItemParent(); | |
2563 | ||
2564 | if (!parent) {// This is root item | |
2565 | return TagAllChildrenUntilLast (crt_item, last_item); | |
2566 | } | |
2567 | ||
2568 | wxArrayTreeListItems& children = parent->GetChildren(); | |
2569 | int index = children.Index(crt_item); | |
2570 | wxASSERT (index != wxNOT_FOUND); // I'm not a child of my parent? | |
2571 | ||
2572 | if ((parent->HasChildren() && parent->IsExpanded()) || | |
2573 | ((parent == (wxTreeListItem*)GetRootItem().m_pItem) && HasFlag(wxTR_HIDE_ROOT))) { | |
2574 | size_t count = children.Count(); | |
2575 | for (size_t n = (index+1); n < count; ++n) { | |
2576 | if (TagAllChildrenUntilLast (children[n], last_item)) return true; | |
2577 | } | |
2578 | } | |
2579 | ||
2580 | return TagNextChildren (parent, last_item); | |
2581 | } | |
2582 | ||
2583 | bool wxTreeListMainWindow::TagAllChildrenUntilLast (wxTreeListItem *crt_item, | |
2584 | wxTreeListItem *last_item) { | |
2585 | crt_item->SetHilight (true); | |
2586 | RefreshLine(crt_item); | |
2587 | ||
2588 | if (crt_item==last_item) return true; | |
2589 | ||
2590 | if (crt_item->HasChildren() && crt_item->IsExpanded()) { | |
2591 | wxArrayTreeListItems& children = crt_item->GetChildren(); | |
2592 | size_t count = children.Count(); | |
2593 | for (size_t n = 0; n < count; ++n) { | |
2594 | if (TagAllChildrenUntilLast (children[n], last_item)) return true; | |
2595 | } | |
2596 | } | |
2597 | ||
2598 | return false; | |
2599 | } | |
2600 | ||
2601 | void wxTreeListMainWindow::SelectItem (const wxTreeItemId& itemId, | |
2602 | const wxTreeItemId& lastId, | |
2603 | bool unselect_others) { | |
2604 | wxCHECK_RET (itemId.IsOk(), _T("invalid tree item") ); | |
2605 | ||
2606 | bool is_single = !HasFlag(wxTR_MULTIPLE); | |
2607 | wxTreeListItem *item = (wxTreeListItem*) itemId.m_pItem; | |
2608 | ||
2609 | // single selection requires unselect others | |
2610 | if (is_single) unselect_others = true; | |
2611 | ||
2612 | // send event to the user code | |
2613 | wxTreeEvent event( wxEVT_COMMAND_TREE_SEL_CHANGING, m_owner->GetId() ); | |
2614 | #if !wxCHECK_VERSION(2, 5, 0) | |
2615 | event.SetItem ((long)item); | |
2616 | event.SetOldItem ((long)m_curItem); | |
2617 | #else | |
2618 | event.SetItem (item); | |
2619 | event.SetOldItem (m_curItem); | |
2620 | #endif | |
2621 | event.SetEventObject (m_owner); | |
2622 | if (m_owner->GetEventHandler()->ProcessEvent (event) && !event.IsAllowed()) return; | |
2623 | ||
2624 | // unselect all if unselect other items | |
2625 | bool unselected = false; // see that UnselectAll is done only once | |
2626 | if (unselect_others) { | |
2627 | if (is_single) { | |
2628 | Unselect(); // to speed up thing | |
2629 | }else{ | |
2630 | UnselectAll(); | |
2631 | unselected = true; | |
2632 | } | |
2633 | } | |
2634 | ||
2635 | // select item or item range | |
2636 | if (lastId.IsOk() && (itemId != lastId)) { | |
2637 | ||
2638 | if (!unselected) UnselectAll(); | |
2639 | wxTreeListItem *last = (wxTreeListItem*) lastId.m_pItem; | |
2640 | ||
2641 | // ensure that the position of the item it calculated in any case | |
2642 | if (m_dirty) CalculatePositions(); | |
2643 | ||
2644 | // select item range according Y-position | |
2645 | if (last->GetY() < item->GetY()) { | |
2646 | if (!TagAllChildrenUntilLast (last, item)) { | |
2647 | TagNextChildren (last, item); | |
2648 | } | |
2649 | }else{ | |
2650 | if (!TagAllChildrenUntilLast (item, last)) { | |
2651 | TagNextChildren (item, last); | |
2652 | } | |
2653 | } | |
2654 | ||
2655 | }else{ | |
2656 | ||
2657 | // select item according its old selection | |
2658 | item->SetHilight (!item->IsSelected()); | |
2659 | RefreshLine (item); | |
2660 | if (unselect_others) { | |
2661 | m_selectItem = (item->IsSelected())? item: (wxTreeListItem*)NULL; | |
2662 | } | |
2663 | ||
2664 | } | |
2665 | ||
2666 | // send event to user code | |
2667 | event.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED); | |
2668 | m_owner->GetEventHandler()->ProcessEvent (event); | |
2669 | } | |
2670 | ||
2671 | void wxTreeListMainWindow::SelectAll() { | |
2672 | wxCHECK_RET (HasFlag(wxTR_MULTIPLE), _T("invalid tree style, must have wxTR_MULTIPLE style to select all items")); | |
2673 | ||
2674 | // send event to user code | |
2675 | wxTreeEvent event (wxEVT_COMMAND_TREE_SEL_CHANGING, m_owner->GetId()); | |
2676 | event.SetItem (GetRootItem()); | |
2677 | #if !wxCHECK_VERSION(2, 5, 0) | |
2678 | event.SetOldItem ((long)m_curItem); | |
2679 | #else | |
2680 | event.SetOldItem (m_curItem); | |
2681 | #endif | |
2682 | event.SetEventObject (m_owner); | |
2683 | if (m_owner->GetEventHandler()->ProcessEvent (event) && !event.IsAllowed()) return; | |
2684 | ||
2685 | #if !wxCHECK_VERSION(2, 5, 0) | |
2686 | long cookie = 0; | |
2687 | #else | |
2688 | wxTreeItemIdValue cookie = 0; | |
2689 | #endif | |
2690 | wxTreeItemId root = GetRootItem(); | |
2691 | wxTreeListItem *first = (wxTreeListItem *)GetFirstChild (root, cookie).m_pItem; | |
2692 | wxTreeListItem *last = (wxTreeListItem *)GetLastChild (root, cookie).m_pItem; | |
2693 | if (!first || !last) return; | |
2694 | if (!TagAllChildrenUntilLast (first, last)) { | |
2695 | TagNextChildren (first, last); | |
2696 | } | |
2697 | ||
2698 | // send event to user code | |
2699 | event.SetEventType (wxEVT_COMMAND_TREE_SEL_CHANGED); | |
2700 | m_owner->GetEventHandler()->ProcessEvent (event); | |
2701 | } | |
2702 | ||
2703 | void wxTreeListMainWindow::FillArray (wxTreeListItem *item, | |
2704 | wxArrayTreeItemIds &array) const { | |
2705 | if (item->IsSelected()) array.Add (wxTreeItemId(item)); | |
2706 | ||
2707 | if (item->HasChildren()) { | |
2708 | wxArrayTreeListItems& children = item->GetChildren(); | |
2709 | size_t count = children.GetCount(); | |
2710 | for (size_t n = 0; n < count; ++n) FillArray (children[n], array); | |
2711 | } | |
2712 | } | |
2713 | ||
2714 | size_t wxTreeListMainWindow::GetSelections (wxArrayTreeItemIds &array) const { | |
2715 | array.Empty(); | |
2716 | wxTreeItemId idRoot = GetRootItem(); | |
2717 | if (idRoot.IsOk()) FillArray ((wxTreeListItem*) idRoot.m_pItem, array); | |
2718 | return array.Count(); | |
2719 | } | |
2720 | ||
2721 | void wxTreeListMainWindow::EnsureVisible (const wxTreeItemId& item) { | |
2722 | if (!item.IsOk()) return; // do nothing if no item | |
2723 | ||
2724 | // first expand all parent branches | |
2725 | wxTreeListItem *gitem = (wxTreeListItem*) item.m_pItem; | |
2726 | wxTreeListItem *parent = gitem->GetItemParent(); | |
2727 | while (parent) { | |
2728 | Expand (parent); | |
2729 | parent = parent->GetItemParent(); | |
2730 | } | |
2731 | ||
2732 | ScrollTo (item); | |
2733 | RefreshLine (gitem); | |
2734 | } | |
2735 | ||
2736 | void wxTreeListMainWindow::ScrollTo (const wxTreeItemId &item) { | |
2737 | if (!item.IsOk()) return; // do nothing if no item | |
2738 | ||
2739 | // ensure that the position of the item it calculated in any case | |
2740 | if (m_dirty) CalculatePositions(); | |
2741 | ||
2742 | wxTreeListItem *gitem = (wxTreeListItem*) item.m_pItem; | |
2743 | ||
2744 | // now scroll to the item | |
2745 | int item_y = gitem->GetY(); | |
2746 | ||
2747 | int xUnit, yUnit; | |
2748 | GetScrollPixelsPerUnit (&xUnit, &yUnit); | |
2749 | int start_x = 0; | |
2750 | int start_y = 0; | |
2751 | GetViewStart (&start_x, &start_y); | |
2752 | start_y *= yUnit; | |
2753 | ||
2754 | int client_h = 0; | |
2755 | int client_w = 0; | |
2756 | GetClientSize (&client_w, &client_h); | |
2757 | ||
2758 | int x = 0; | |
2759 | int y = 0; | |
2760 | m_rootItem->GetSize (x, y, this); | |
2761 | x = m_owner->GetHeaderWindow()->GetWidth(); | |
2762 | y += yUnit + 2; // one more scrollbar unit + 2 pixels | |
2763 | int x_pos = GetScrollPos( wxHORIZONTAL ); | |
2764 | ||
2765 | if (item_y < start_y+3) { | |
2766 | // going down, item should appear at top | |
2767 | SetScrollbars (xUnit, yUnit, xUnit ? x/xUnit : 0, yUnit ? y/yUnit : 0, x_pos, yUnit ? item_y/yUnit : 0); | |
2768 | }else if (item_y+GetLineHeight(gitem) > start_y+client_h) { | |
2769 | // going up, item should appear at bottom | |
2770 | item_y += yUnit + 2; | |
2771 | SetScrollbars (xUnit, yUnit, xUnit ? x/xUnit : 0, yUnit ? y/yUnit : 0, x_pos, yUnit ? (item_y+GetLineHeight(gitem)-client_h)/yUnit : 0 ); | |
2772 | } | |
2773 | } | |
2774 | ||
2775 | // FIXME: tree sorting functions are not reentrant and not MT-safe! | |
2776 | static wxTreeListMainWindow *s_treeBeingSorted = NULL; | |
2777 | ||
2778 | static int LINKAGEMODE tree_ctrl_compare_func(wxTreeListItem **item1, | |
2779 | wxTreeListItem **item2) | |
2780 | { | |
2781 | wxCHECK_MSG (s_treeBeingSorted, 0, _T("bug in wxTreeListMainWindow::SortChildren()") ); | |
2782 | ||
2783 | return s_treeBeingSorted->OnCompareItems(*item1, *item2); | |
2784 | } | |
2785 | ||
2786 | int wxTreeListMainWindow::OnCompareItems(const wxTreeItemId& item1, | |
2787 | const wxTreeItemId& item2) | |
2788 | { | |
2789 | return m_owner->OnCompareItems (item1, item2); | |
2790 | } | |
2791 | ||
2792 | void wxTreeListMainWindow::SortChildren (const wxTreeItemId& itemId) { | |
2793 | wxCHECK_RET (itemId.IsOk(), _T("invalid tree item")); | |
2794 | ||
2795 | wxTreeListItem *item = (wxTreeListItem*) itemId.m_pItem; | |
2796 | ||
2797 | wxCHECK_RET (!s_treeBeingSorted, | |
2798 | _T("wxTreeListMainWindow::SortChildren is not reentrant") ); | |
2799 | ||
2800 | wxArrayTreeListItems& children = item->GetChildren(); | |
2801 | if ( children.Count() > 1 ) { | |
2802 | m_dirty = true; | |
2803 | s_treeBeingSorted = this; | |
2804 | children.Sort(tree_ctrl_compare_func); | |
2805 | s_treeBeingSorted = NULL; | |
2806 | } | |
2807 | } | |
2808 | ||
2809 | wxTreeItemId wxTreeListMainWindow::FindItem (const wxTreeItemId& item, const wxString& str, int mode) { | |
2810 | wxString itemText; | |
2811 | // determine start item | |
2812 | wxTreeItemId next = item; | |
2813 | if (next.IsOk()) { | |
2814 | if (mode & wxTL_MODE_NAV_LEVEL) { | |
2815 | next = GetNextSibling (next); | |
2816 | }else if (mode & wxTL_MODE_NAV_VISIBLE) { // | |
2817 | next = GetNextVisible (next, false); | |
2818 | }else if (mode & wxTL_MODE_NAV_EXPANDED) { | |
2819 | next = GetNextExpanded (next); | |
2820 | }else{ // (mode & wxTL_MODE_NAV_FULLTREE) default | |
2821 | next = GetNext (next, true); | |
2822 | } | |
2823 | } | |
2824 | ||
2825 | #if !wxCHECK_VERSION(2, 5, 0) | |
2826 | long cookie = 0; | |
2827 | #else | |
2828 | wxTreeItemIdValue cookie = 0; | |
2829 | #endif | |
2830 | if (!next.IsOk()) { | |
2831 | next = (wxTreeListItem*)GetRootItem().m_pItem; | |
2832 | if (HasFlag(wxTR_HIDE_ROOT)) { | |
2833 | next = (wxTreeListItem*)GetFirstChild (GetRootItem().m_pItem, cookie).m_pItem; | |
2834 | } | |
2835 | } | |
2836 | if (!next.IsOk()) return (wxTreeItemId*)NULL; | |
2837 | ||
2838 | // start checking the next items | |
2839 | while (next.IsOk() && (next != item)) { | |
2840 | if (mode & wxTL_MODE_FIND_PARTIAL) { | |
2841 | itemText = GetItemText (next).Mid (0, str.Length()); | |
2842 | }else{ | |
2843 | itemText = GetItemText (next); | |
2844 | } | |
2845 | if (mode & wxTL_MODE_FIND_NOCASE) { | |
2846 | if (itemText.CmpNoCase (str) == 0) return next; | |
2847 | }else{ | |
2848 | if (itemText.Cmp (str) == 0) return next; | |
2849 | } | |
2850 | if (mode & wxTL_MODE_NAV_LEVEL) { | |
2851 | next = GetNextSibling (next); | |
2852 | }else if (mode & wxTL_MODE_NAV_VISIBLE) { // | |
2853 | next = GetNextVisible (next, false); | |
2854 | }else if (mode & wxTL_MODE_NAV_EXPANDED) { | |
2855 | next = GetNextExpanded (next); | |
2856 | }else{ // (mode & wxTL_MODE_NAV_FULLTREE) default | |
2857 | next = GetNext (next, true); | |
2858 | } | |
2859 | if (!next.IsOk() && item.IsOk()) { | |
2860 | next = (wxTreeListItem*)GetRootItem().m_pItem; | |
2861 | if (HasFlag(wxTR_HIDE_ROOT)) { | |
2862 | next = (wxTreeListItem*)GetNextChild (GetRootItem().m_pItem, cookie).m_pItem; | |
2863 | } | |
2864 | } | |
2865 | } | |
2866 | return (wxTreeItemId*)NULL; | |
2867 | } | |
2868 | ||
2869 | void wxTreeListMainWindow::SetDragItem (const wxTreeItemId& item) { | |
2870 | wxTreeListItem *prevItem = m_dragItem; | |
2871 | m_dragItem = (wxTreeListItem*) item.m_pItem; | |
2872 | if (prevItem) RefreshLine (prevItem); | |
2873 | if (m_dragItem) RefreshLine (m_dragItem); | |
2874 | } | |
2875 | ||
2876 | void wxTreeListMainWindow::CalculateLineHeight() { | |
2877 | wxClientDC dc (this); | |
2878 | dc.SetFont (m_normalFont); | |
2879 | m_lineHeight = (int)(dc.GetCharHeight() + m_linespacing); | |
2880 | ||
2881 | if (m_imageListNormal) { | |
2882 | // Calculate a m_lineHeight value from the normal Image sizes. | |
2883 | // May be toggle off. Then wxTreeListMainWindow will spread when | |
2884 | // necessary (which might look ugly). | |
2885 | int n = m_imageListNormal->GetImageCount(); | |
2886 | for (int i = 0; i < n ; i++) { | |
2887 | int width = 0, height = 0; | |
2888 | m_imageListNormal->GetSize(i, width, height); | |
2889 | if (height > m_lineHeight) m_lineHeight = height + m_linespacing; | |
2890 | } | |
2891 | } | |
2892 | ||
2893 | if (m_imageListButtons) { | |
2894 | // Calculate a m_lineHeight value from the Button image sizes. | |
2895 | // May be toggle off. Then wxTreeListMainWindow will spread when | |
2896 | // necessary (which might look ugly). | |
2897 | int n = m_imageListButtons->GetImageCount(); | |
2898 | for (int i = 0; i < n ; i++) { | |
2899 | int width = 0, height = 0; | |
2900 | m_imageListButtons->GetSize(i, width, height); | |
2901 | if (height > m_lineHeight) m_lineHeight = height + m_linespacing; | |
2902 | } | |
2903 | } | |
2904 | ||
2905 | if (m_lineHeight < 30) { // add 10% space if greater than 30 pixels | |
2906 | m_lineHeight += 2; // minimal 2 pixel space | |
2907 | }else{ | |
2908 | m_lineHeight += m_lineHeight / 10; // otherwise 10% space | |
2909 | } | |
2910 | } | |
2911 | ||
2912 | void wxTreeListMainWindow::SetImageList (wxImageList *imageList) { | |
2913 | if (m_ownsImageListNormal) delete m_imageListNormal; | |
2914 | m_imageListNormal = imageList; | |
2915 | m_ownsImageListNormal = false; | |
2916 | m_dirty = true; | |
2917 | CalculateLineHeight(); | |
2918 | } | |
2919 | ||
2920 | void wxTreeListMainWindow::SetStateImageList (wxImageList *imageList) { | |
2921 | if (m_ownsImageListState) delete m_imageListState; | |
2922 | m_imageListState = imageList; | |
2923 | m_ownsImageListState = false; | |
2924 | } | |
2925 | ||
2926 | void wxTreeListMainWindow::SetButtonsImageList (wxImageList *imageList) { | |
2927 | if (m_ownsImageListButtons) delete m_imageListButtons; | |
2928 | m_imageListButtons = imageList; | |
2929 | m_ownsImageListButtons = false; | |
2930 | m_dirty = true; | |
2931 | CalculateLineHeight(); | |
2932 | } | |
2933 | ||
2934 | void wxTreeListMainWindow::AssignImageList (wxImageList *imageList) { | |
2935 | SetImageList(imageList); | |
2936 | m_ownsImageListNormal = true; | |
2937 | } | |
2938 | ||
2939 | void wxTreeListMainWindow::AssignStateImageList (wxImageList *imageList) { | |
2940 | SetStateImageList(imageList); | |
2941 | m_ownsImageListState = true; | |
2942 | } | |
2943 | ||
2944 | void wxTreeListMainWindow::AssignButtonsImageList (wxImageList *imageList) { | |
2945 | SetButtonsImageList(imageList); | |
2946 | m_ownsImageListButtons = true; | |
2947 | } | |
2948 | ||
2949 | // ---------------------------------------------------------------------------- | |
2950 | // helpers | |
2951 | // ---------------------------------------------------------------------------- | |
2952 | ||
2953 | void wxTreeListMainWindow::AdjustMyScrollbars() { | |
2954 | if (m_rootItem) { | |
2955 | int xUnit, yUnit; | |
2956 | GetScrollPixelsPerUnit (&xUnit, &yUnit); | |
2957 | if (xUnit == 0) xUnit = GetCharWidth(); | |
2958 | if (yUnit == 0) yUnit = m_lineHeight; | |
2959 | int x = 0, y = 0; | |
2960 | m_rootItem->GetSize (x, y, this); | |
2961 | y += yUnit + 2; // one more scrollbar unit + 2 pixels | |
2962 | int x_pos = GetScrollPos (wxHORIZONTAL); | |
2963 | int y_pos = GetScrollPos (wxVERTICAL); | |
2964 | x = m_owner->GetHeaderWindow()->GetWidth() + 2; | |
2965 | if (x < GetClientSize().GetWidth()) x_pos = 0; | |
2966 | SetScrollbars (xUnit, yUnit, x/xUnit, y/yUnit, x_pos, y_pos); | |
2967 | }else{ | |
2968 | SetScrollbars (0, 0, 0, 0); | |
2969 | } | |
2970 | } | |
2971 | ||
2972 | int wxTreeListMainWindow::GetLineHeight (wxTreeListItem *item) const { | |
2973 | if (GetWindowStyleFlag() & wxTR_HAS_VARIABLE_ROW_HEIGHT) { | |
2974 | return item->GetHeight(); | |
2975 | }else{ | |
2976 | return m_lineHeight; | |
2977 | } | |
2978 | } | |
2979 | ||
2980 | void wxTreeListMainWindow::PaintItem (wxTreeListItem *item, wxDC& dc) { | |
2981 | ||
2982 | wxTreeItemAttr *attr = item->GetAttributes(); | |
2983 | ||
2984 | dc.SetFont (GetItemFont (item)); | |
2985 | ||
2986 | wxColour colText; | |
2987 | if (attr && attr->HasTextColour()) { | |
2988 | colText = attr->GetTextColour(); | |
2989 | }else{ | |
2990 | colText = GetForegroundColour(); | |
2991 | } | |
2992 | #if !wxCHECK_VERSION(2, 5, 0) | |
2993 | wxColour colTextHilight = wxSystemSettings::GetSystemColour (wxSYS_COLOUR_HIGHLIGHTTEXT); | |
2994 | #else | |
2995 | wxColour colTextHilight = wxSystemSettings::GetColour (wxSYS_COLOUR_HIGHLIGHTTEXT); | |
2996 | #endif | |
2997 | ||
2998 | int total_w = m_owner->GetHeaderWindow()->GetWidth(); | |
2999 | int total_h = GetLineHeight(item); | |
3000 | int off_h = HasFlag(wxTR_ROW_LINES) ? 1 : 0; | |
3001 | int off_w = HasFlag(wxTR_COLUMN_LINES) ? 1 : 0; | |
3002 | wxDCClipper clipper (dc, 0, item->GetY(), total_w, total_h); // only within line | |
3003 | ||
3004 | int text_w = 0, text_h = 0; | |
3005 | dc.GetTextExtent( item->GetText(GetMainColumn()), &text_w, &text_h ); | |
3006 | ||
3007 | // determine background and show it | |
3008 | wxColour colBg; | |
3009 | if (attr && attr->HasBackgroundColour()) { | |
3010 | colBg = attr->GetBackgroundColour(); | |
3011 | }else{ | |
3012 | colBg = m_backgroundColour; | |
3013 | } | |
3014 | dc.SetBrush (wxBrush (colBg, wxSOLID)); | |
3015 | dc.SetPen (*wxTRANSPARENT_PEN); | |
3016 | if (HasFlag (wxTR_FULL_ROW_HIGHLIGHT)) { | |
3017 | if (item == m_dragItem) { | |
3018 | dc.SetBrush (*m_hilightBrush); | |
3019 | #ifndef __WXMAC__ // don't draw rect outline if we already have the background color | |
3020 | dc.SetPen ((item == m_dragItem)? *wxBLACK_PEN: *wxTRANSPARENT_PEN); | |
3021 | #endif // !__WXMAC__ | |
3022 | dc.SetTextForeground (colTextHilight); | |
3023 | }else if (item->IsSelected()) { | |
3024 | if (!m_isDragging && m_hasFocus) { | |
3025 | dc.SetBrush (*m_hilightBrush); | |
3026 | #ifndef __WXMAC__ // don't draw rect outline if we already have the background color | |
3027 | dc.SetPen (*wxBLACK_PEN); | |
3028 | #endif // !__WXMAC__ | |
3029 | }else{ | |
3030 | dc.SetBrush (*m_hilightUnfocusedBrush); | |
3031 | #ifndef __WXMAC__ // don't draw rect outline if we already have the background color | |
3032 | dc.SetPen (*wxTRANSPARENT_PEN); | |
3033 | #endif // !__WXMAC__ | |
3034 | } | |
3035 | dc.SetTextForeground (colTextHilight); | |
3036 | }else if (item == m_curItem) { | |
3037 | dc.SetPen (m_hasFocus? *wxBLACK_PEN: *wxTRANSPARENT_PEN); | |
3038 | }else{ | |
3039 | dc.SetTextForeground (colText); | |
3040 | } | |
3041 | dc.DrawRectangle (0, item->GetY() + off_h, total_w, total_h - off_h); | |
3042 | }else{ | |
3043 | dc.SetTextForeground (colText); | |
3044 | } | |
3045 | ||
3046 | int text_extraH = (total_h > text_h) ? (total_h - text_h)/2 : 0; | |
3047 | int img_extraH = (total_h > m_imgHeight)? (total_h-m_imgHeight)/2: 0; | |
3048 | int x_colstart = 0; | |
3049 | for (int i = 0; i < GetColumnCount(); ++i ) { | |
3050 | if (!m_owner->GetHeaderWindow()->IsColumnShown(i)) continue; | |
3051 | ||
3052 | int col_w = m_owner->GetHeaderWindow()->GetColumnWidth(i); | |
3053 | wxDCClipper clipper (dc, x_colstart, item->GetY(), col_w, total_h); // only within column | |
3054 | ||
3055 | int x = 0; | |
3056 | int image = NO_IMAGE; | |
3057 | int image_w = 0; | |
3058 | if(i == GetMainColumn()) { | |
3059 | x = item->GetX() + MARGIN; | |
3060 | if (HasButtons()) { | |
3061 | x += (m_btnWidth-m_btnWidth2) + LINEATROOT; | |
3062 | }else{ | |
3063 | x -= m_indent/2; | |
3064 | } | |
3065 | if (m_imageListNormal) image = item->GetCurrentImage(); | |
3066 | }else{ | |
3067 | x = x_colstart + MARGIN; | |
3068 | image = item->GetImage(i); | |
3069 | } | |
3070 | if (image != NO_IMAGE) image_w = m_imgWidth + MARGIN; | |
3071 | ||
3072 | // honor text alignment | |
3073 | wxString text = item->GetText(i); | |
3074 | int w = 0; | |
3075 | switch ( m_owner->GetHeaderWindow()->GetColumn(i).GetAlignment() ) { | |
3076 | case wxALIGN_LEFT: | |
3077 | // nothing to do, already left aligned | |
3078 | break; | |
3079 | case wxALIGN_RIGHT: | |
3080 | dc.GetTextExtent (text, &text_w, NULL); | |
3081 | w = col_w - (image_w + text_w + off_w + MARGIN); | |
3082 | x += (w > 0)? w: 0; | |
3083 | break; | |
3084 | case wxALIGN_CENTER: | |
3085 | dc.GetTextExtent(text, &text_w, NULL); | |
3086 | w = (col_w - (image_w + text_w + off_w + MARGIN))/2; | |
3087 | x += (w > 0)? w: 0; | |
3088 | break; | |
3089 | } | |
3090 | int text_x = x + image_w; | |
3091 | if (i == GetMainColumn()) item->SetTextX (text_x); | |
3092 | ||
3093 | if (!HasFlag (wxTR_FULL_ROW_HIGHLIGHT)) { | |
3094 | if (i == GetMainColumn()) { | |
3095 | if (item == m_dragItem) { | |
3096 | dc.SetBrush (*m_hilightBrush); | |
3097 | #ifndef __WXMAC__ // don't draw rect outline if we already have the background color | |
3098 | dc.SetPen ((item == m_dragItem)? *wxBLACK_PEN: *wxTRANSPARENT_PEN); | |
3099 | #endif // !__WXMAC__ | |
3100 | dc.SetTextForeground (colTextHilight); | |
3101 | }else if (item->IsSelected()) { | |
3102 | if (!m_isDragging && m_hasFocus) { | |
3103 | dc.SetBrush (*m_hilightBrush); | |
3104 | #ifndef __WXMAC__ // don't draw rect outline if we already have the background color | |
3105 | dc.SetPen (*wxBLACK_PEN); | |
3106 | #endif // !__WXMAC__ | |
3107 | }else{ | |
3108 | dc.SetBrush (*m_hilightUnfocusedBrush); | |
3109 | #ifndef __WXMAC__ // don't draw rect outline if we already have the background color | |
3110 | dc.SetPen (*wxTRANSPARENT_PEN); | |
3111 | #endif // !__WXMAC__ | |
3112 | } | |
3113 | dc.SetTextForeground (colTextHilight); | |
3114 | }else if (item == m_curItem) { | |
3115 | dc.SetPen (m_hasFocus? *wxBLACK_PEN: *wxTRANSPARENT_PEN); | |
3116 | }else{ | |
3117 | dc.SetTextForeground (colText); | |
3118 | } | |
3119 | dc.DrawRectangle (text_x, item->GetY() + off_h, text_w, total_h - off_h); | |
3120 | }else{ | |
3121 | dc.SetTextForeground (colText); | |
3122 | } | |
3123 | } | |
3124 | ||
3125 | if (HasFlag(wxTR_COLUMN_LINES)) { // vertical lines between columns | |
3126 | #if !wxCHECK_VERSION(2, 5, 0) | |
3127 | wxPen pen (wxSystemSettings::GetSystemColour (wxSYS_COLOUR_3DLIGHT ), 1, wxSOLID); | |
3128 | #else | |
3129 | wxPen pen (wxSystemSettings::GetColour (wxSYS_COLOUR_3DLIGHT ), 1, wxSOLID); | |
3130 | #endif | |
3131 | dc.SetPen ((GetBackgroundColour() == *wxWHITE)? pen: *wxWHITE_PEN); | |
3132 | dc.DrawLine (x_colstart+col_w-1, item->GetY(), x_colstart+col_w-1, item->GetY()+total_h); | |
3133 | } | |
3134 | ||
3135 | dc.SetBackgroundMode (wxTRANSPARENT); | |
3136 | ||
3137 | if (image != NO_IMAGE) { | |
3138 | int y = item->GetY() + img_extraH; | |
3139 | m_imageListNormal->Draw (image, dc, x, y, wxIMAGELIST_DRAW_TRANSPARENT ); | |
3140 | } | |
3141 | int text_y = item->GetY() + text_extraH; | |
3142 | dc.DrawText (text, (wxCoord)text_x, (wxCoord)text_y); | |
3143 | ||
3144 | x_colstart += col_w; | |
3145 | } | |
3146 | ||
3147 | // restore normal font | |
3148 | dc.SetFont( m_normalFont ); | |
3149 | } | |
3150 | ||
3151 | // Now y stands for the top of the item, whereas it used to stand for middle ! | |
3152 | void wxTreeListMainWindow::PaintLevel (wxTreeListItem *item, wxDC &dc, | |
3153 | int level, int &y, int x_maincol) { | |
3154 | ||
3155 | // Handle hide root (only level 0) | |
3156 | if (HasFlag(wxTR_HIDE_ROOT) && (level == 0)) { | |
3157 | wxArrayTreeListItems& children = item->GetChildren(); | |
3158 | for (size_t n = 0; n < children.Count(); n++) { | |
3159 | PaintLevel (children[n], dc, 1, y, x_maincol); | |
3160 | } | |
3161 | // end after expanding root | |
3162 | return; | |
3163 | } | |
3164 | ||
3165 | // calculate position of vertical lines | |
3166 | int x = x_maincol + MARGIN; // start of column | |
3167 | if (HasFlag(wxTR_LINES_AT_ROOT)) x += LINEATROOT; // space for lines at root | |
3168 | if (HasButtons()) { | |
3169 | x += (m_btnWidth-m_btnWidth2); // half button space | |
3170 | }else{ | |
3171 | x += (m_indent-m_indent/2); | |
3172 | } | |
3173 | if (HasFlag(wxTR_HIDE_ROOT)) { | |
3174 | x += m_indent * (level-1); // indent but not level 1 | |
3175 | }else{ | |
3176 | x += m_indent * level; // indent according to level | |
3177 | } | |
3178 | ||
3179 | // set position of vertical line | |
3180 | item->SetX (x); | |
3181 | item->SetY (y); | |
3182 | ||
3183 | int h = GetLineHeight (item); | |
3184 | int y_top = y; | |
3185 | int y_mid = y_top + (h/2); | |
3186 | y += h; | |
3187 | ||
3188 | int exposed_x = dc.LogicalToDeviceX(0); | |
3189 | int exposed_y = dc.LogicalToDeviceY(y_top); | |
3190 | ||
3191 | if (IsExposed(exposed_x, exposed_y, 10000, h)) { // 10000 = very much | |
3192 | ||
3193 | if (HasFlag(wxTR_ROW_LINES)) { // horizontal lines between rows | |
3194 | //dc.DestroyClippingRegion(); | |
3195 | int total_width = m_owner->GetHeaderWindow()->GetWidth(); | |
3196 | // if the background colour is white, choose a | |
3197 | // contrasting color for the lines | |
3198 | #if !wxCHECK_VERSION(2, 5, 0) | |
3199 | wxPen pen (wxSystemSettings::GetSystemColour (wxSYS_COLOUR_3DLIGHT ), 1, wxSOLID); | |
3200 | #else | |
3201 | wxPen pen (wxSystemSettings::GetColour (wxSYS_COLOUR_3DLIGHT ), 1, wxSOLID); | |
3202 | #endif | |
3203 | dc.SetPen ((GetBackgroundColour() == *wxWHITE)? pen: *wxWHITE_PEN); | |
3204 | dc.DrawLine (0, y_top, total_width, y_top); | |
3205 | dc.DrawLine (0, y_top+h, total_width, y_top+h); | |
3206 | } | |
3207 | ||
3208 | // draw item | |
3209 | PaintItem (item, dc); | |
3210 | ||
3211 | // restore DC objects | |
3212 | dc.SetBrush(*wxWHITE_BRUSH); | |
3213 | dc.SetPen(m_dottedPen); | |
3214 | ||
3215 | // clip to the column width | |
3216 | int clip_width = m_owner->GetHeaderWindow()-> | |
3217 | GetColumn(m_main_column).GetWidth(); | |
3218 | wxDCClipper clipper(dc, x_maincol, y_top, clip_width, 10000); | |
3219 | ||
3220 | if (!HasFlag(wxTR_NO_LINES)) { // connection lines | |
3221 | ||
3222 | // draw the horizontal line here | |
3223 | dc.SetPen(m_dottedPen); | |
3224 | int x2 = x - m_indent; | |
3225 | if (x2 < (x_maincol + MARGIN)) x2 = x_maincol + MARGIN; | |
3226 | int x3 = x + (m_btnWidth-m_btnWidth2); | |
3227 | if (HasButtons()) { | |
3228 | if (item->HasPlus()) { | |
3229 | dc.DrawLine (x2, y_mid, x - m_btnWidth2, y_mid); | |
3230 | dc.DrawLine (x3, y_mid, x3 + LINEATROOT, y_mid); | |
3231 | }else{ | |
3232 | dc.DrawLine (x2, y_mid, x3 + LINEATROOT, y_mid); | |
3233 | } | |
3234 | }else{ | |
3235 | dc.DrawLine (x2, y_mid, x - m_indent/2, y_mid); | |
3236 | } | |
3237 | } | |
3238 | ||
3239 | if (item->HasPlus() && HasButtons()) { // should the item show a button? | |
3240 | ||
3241 | if (m_imageListButtons) { | |
3242 | ||
3243 | // draw the image button here | |
3244 | int image = wxTreeItemIcon_Normal; | |
3245 | if (item->IsExpanded()) image = wxTreeItemIcon_Expanded; | |
3246 | if (item->IsSelected()) image += wxTreeItemIcon_Selected - wxTreeItemIcon_Normal; | |
3247 | int xx = x - m_btnWidth2 + MARGIN; | |
3248 | int yy = y_mid - m_btnHeight2; | |
3249 | dc.SetClippingRegion(xx, yy, m_btnWidth, m_btnHeight); | |
3250 | m_imageListButtons->Draw (image, dc, xx, yy, wxIMAGELIST_DRAW_TRANSPARENT); | |
3251 | dc.DestroyClippingRegion(); | |
3252 | ||
3253 | }else if (HasFlag (wxTR_TWIST_BUTTONS)) { | |
3254 | ||
3255 | // draw the twisty button here | |
3256 | dc.SetPen(*wxBLACK_PEN); | |
3257 | dc.SetBrush(*m_hilightBrush); | |
3258 | wxPoint button[3]; | |
3259 | if (item->IsExpanded()) { | |
3260 | button[0].x = x - (m_btnWidth2+1); | |
3261 | button[0].y = y_mid - (m_btnHeight/3); | |
3262 | button[1].x = x + (m_btnWidth2+1); | |
3263 | button[1].y = button[0].y; | |
3264 | button[2].x = x; | |
3265 | button[2].y = button[0].y + (m_btnHeight2+1); | |
3266 | }else{ | |
3267 | button[0].x = x - (m_btnWidth/3); | |
3268 | button[0].y = y_mid - (m_btnHeight2+1); | |
3269 | button[1].x = button[0].x; | |
3270 | button[1].y = y_mid + (m_btnHeight2+1); | |
3271 | button[2].x = button[0].x + (m_btnWidth2+1); | |
3272 | button[2].y = y_mid; | |
3273 | } | |
3274 | dc.DrawPolygon(3, button); | |
3275 | ||
3276 | }else{ // if (HasFlag(wxTR_HAS_BUTTONS)) | |
3277 | ||
3278 | // draw the plus sign here | |
3279 | #if !wxCHECK_VERSION(2, 7, 0) | |
3280 | dc.SetPen(*wxGREY_PEN); | |
3281 | dc.SetBrush(*wxWHITE_BRUSH); | |
3282 | dc.DrawRectangle (x-m_btnWidth2, y_mid-m_btnHeight2, m_btnWidth, m_btnHeight); | |
3283 | dc.SetPen(*wxBLACK_PEN); | |
3284 | dc.DrawLine (x-(m_btnWidth2-2), y_mid, x+(m_btnWidth2-1), y_mid); | |
3285 | if (!item->IsExpanded()) { // change "-" to "+" | |
3286 | dc.DrawLine (x, y_mid-(m_btnHeight2-2), x, y_mid+(m_btnHeight2-1)); | |
3287 | } | |
3288 | #else | |
3289 | wxRect rect (x-m_btnWidth2, y_mid-m_btnHeight2, m_btnWidth, m_btnHeight); | |
3290 | int flag = item->IsExpanded()? wxCONTROL_EXPANDED: 0; | |
3291 | wxRendererNative::GetDefault().DrawTreeItemButton (this, dc, rect, flag); | |
3292 | #endif | |
3293 | ||
3294 | } | |
3295 | ||
3296 | } | |
3297 | ||
3298 | } | |
3299 | ||
3300 | // restore DC objects | |
3301 | dc.SetBrush(*wxWHITE_BRUSH); | |
3302 | dc.SetPen(m_dottedPen); | |
3303 | dc.SetTextForeground(*wxBLACK); | |
3304 | ||
3305 | if (item->IsExpanded()) | |
3306 | { | |
3307 | wxArrayTreeListItems& children = item->GetChildren(); | |
3308 | ||
3309 | // clip to the column width | |
3310 | int clip_width = m_owner->GetHeaderWindow()-> | |
3311 | GetColumn(m_main_column).GetWidth(); | |
3312 | ||
3313 | // process lower levels | |
3314 | int oldY; | |
3315 | if (m_imgWidth > 0) { | |
3316 | oldY = y_mid + m_imgHeight2; | |
3317 | }else{ | |
3318 | oldY = y_mid + h/2; | |
3319 | } | |
3320 | int y2; | |
3321 | for (size_t n = 0; n < children.Count(); ++n) { | |
3322 | ||
3323 | y2 = y + h/2; | |
3324 | PaintLevel (children[n], dc, level+1, y, x_maincol); | |
3325 | ||
3326 | // draw vertical line | |
3327 | wxDCClipper clipper(dc, x_maincol, y_top, clip_width, 10000); | |
3328 | if (!HasFlag (wxTR_NO_LINES)) { | |
3329 | x = item->GetX(); | |
3330 | dc.DrawLine (x, oldY, x, y2); | |
3331 | oldY = y2; | |
3332 | } | |
3333 | } | |
3334 | } | |
3335 | } | |
3336 | ||
3337 | ||
3338 | // ---------------------------------------------------------------------------- | |
3339 | // wxWindows callbacks | |
3340 | // ---------------------------------------------------------------------------- | |
3341 | ||
3342 | void wxTreeListMainWindow::OnPaint (wxPaintEvent &WXUNUSED(event)) { | |
3343 | ||
3344 | wxPaintDC dc (this); | |
3345 | PrepareDC (dc); | |
3346 | ||
3347 | if (!m_rootItem || (GetColumnCount() <= 0)) return; | |
3348 | ||
3349 | // calculate button size | |
3350 | if (m_imageListButtons) { | |
3351 | m_imageListButtons->GetSize (0, m_btnWidth, m_btnHeight); | |
3352 | }else if (HasButtons()) { | |
3353 | m_btnWidth = BTNWIDTH; | |
3354 | m_btnHeight = BTNHEIGHT; | |
3355 | } | |
3356 | m_btnWidth2 = m_btnWidth/2; | |
3357 | m_btnHeight2 = m_btnHeight/2; | |
3358 | ||
3359 | // calculate image size | |
3360 | if (m_imageListNormal) { | |
3361 | m_imageListNormal->GetSize (0, m_imgWidth, m_imgHeight); | |
3362 | } | |
3363 | m_imgWidth2 = m_imgWidth/2; | |
3364 | m_imgHeight2 = m_imgHeight/2; | |
3365 | ||
3366 | // calculate indent size | |
3367 | if (m_imageListButtons) { | |
3368 | m_indent = wxMax (MININDENT, m_btnWidth + MARGIN); | |
3369 | }else if (HasButtons()) { | |
3370 | m_indent = wxMax (MININDENT, m_btnWidth + LINEATROOT); | |
3371 | } | |
3372 | ||
3373 | // set default values | |
3374 | dc.SetFont( m_normalFont ); | |
3375 | dc.SetPen( m_dottedPen ); | |
3376 | ||
3377 | // calculate column start and paint | |
3378 | int x_maincol = 0; | |
3379 | int i = 0; | |
3380 | for (i = 0; i < (int)GetMainColumn(); ++i) { | |
3381 | if (!m_owner->GetHeaderWindow()->IsColumnShown(i)) continue; | |
3382 | x_maincol += m_owner->GetHeaderWindow()->GetColumnWidth (i); | |
3383 | } | |
3384 | int y = 0; | |
3385 | PaintLevel (m_rootItem, dc, 0, y, x_maincol); | |
3386 | } | |
3387 | ||
3388 | void wxTreeListMainWindow::OnSetFocus (wxFocusEvent &event) { | |
3389 | ||
3390 | m_hasFocus = true; | |
3391 | RefreshSelected(); | |
3392 | if (m_curItem) RefreshLine (m_curItem); | |
3393 | event.Skip(); | |
3394 | } | |
3395 | ||
3396 | void wxTreeListMainWindow::OnKillFocus( wxFocusEvent &event ) | |
3397 | { | |
3398 | m_hasFocus = false; | |
3399 | RefreshSelected(); | |
3400 | if (m_curItem) RefreshLine (m_curItem); | |
3401 | event.Skip(); | |
3402 | } | |
3403 | ||
3404 | void wxTreeListMainWindow::OnChar (wxKeyEvent &event) { | |
3405 | // send event to user code | |
3406 | wxTreeEvent nevent (wxEVT_COMMAND_TREE_KEY_DOWN, m_owner->GetId()); | |
3407 | nevent.SetKeyEvent (event); | |
3408 | nevent.SetEventObject (m_owner); | |
3409 | if (m_owner->GetEventHandler()->ProcessEvent (nevent)) return; // handled in user code | |
3410 | ||
3411 | // determine first current if none | |
3412 | bool curItemSet = false; | |
3413 | if (!m_curItem) { | |
3414 | m_curItem = (wxTreeListItem*)GetRootItem().m_pItem; | |
3415 | if (HasFlag(wxTR_HIDE_ROOT)) { | |
3416 | #if !wxCHECK_VERSION(2, 5, 0) | |
3417 | long cookie = 0; | |
3418 | #else | |
3419 | wxTreeItemIdValue cookie = 0; | |
3420 | #endif | |
3421 | m_curItem = (wxTreeListItem*)GetFirstChild (m_curItem, cookie).m_pItem; | |
3422 | } | |
3423 | curItemSet = true; | |
3424 | } | |
3425 | if (!m_curItem) return; // do nothing if empty tree | |
3426 | ||
3427 | // remember item at shift down | |
3428 | if (HasFlag(wxTR_MULTIPLE) && event.ShiftDown()) { | |
3429 | if (!m_shiftItem) m_shiftItem = m_curItem; | |
3430 | }else{ | |
3431 | m_shiftItem = (wxTreeListItem*)NULL; | |
3432 | } | |
3433 | ||
3434 | // process all cases | |
3435 | wxTreeItemId newItem = (wxTreeItemId*)NULL; | |
3436 | switch (event.GetKeyCode()) { | |
3437 | ||
3438 | // '+': Expand subtree | |
3439 | case '+': | |
3440 | case WXK_ADD: { | |
3441 | if (m_curItem->HasPlus() && !IsExpanded (m_curItem)) Expand (m_curItem); | |
3442 | }break; | |
3443 | ||
3444 | // '-': collapse subtree | |
3445 | case '-': | |
3446 | case WXK_SUBTRACT: { | |
3447 | if (m_curItem->HasPlus() && IsExpanded (m_curItem)) Collapse (m_curItem); | |
3448 | }break; | |
3449 | ||
3450 | // '*': expand/collapse all subtrees // TODO: Mak it more useful | |
3451 | case '*': | |
3452 | case WXK_MULTIPLY: { | |
3453 | if (m_curItem->HasPlus() && !IsExpanded (m_curItem)) { | |
3454 | ExpandAll (m_curItem); | |
3455 | }else if (m_curItem->HasPlus()) { | |
3456 | Collapse (m_curItem); // TODO: CollapseAll | |
3457 | } | |
3458 | }break; | |
3459 | ||
3460 | // ' ': toggle current item | |
3461 | case ' ': { | |
3462 | SelectItem (m_curItem, (wxTreeListItem*)NULL, false); | |
3463 | }break; | |
3464 | ||
3465 | // <RETURN>: activate current item | |
3466 | case WXK_RETURN: { | |
3467 | wxTreeEvent aevent (wxEVT_COMMAND_TREE_ITEM_ACTIVATED, m_owner->GetId()); | |
3468 | #if !wxCHECK_VERSION(2, 5, 0) | |
3469 | aevent.SetItem ((long)m_curItem); | |
3470 | #else | |
3471 | aevent.SetItem (m_curItem); | |
3472 | #endif | |
3473 | aevent.SetEventObject (m_owner); | |
3474 | m_owner->GetEventHandler()->ProcessEvent (aevent); | |
3475 | }break; | |
3476 | ||
3477 | // <BKSP>: go to the parent without collapsing | |
3478 | case WXK_BACK: { | |
3479 | newItem = GetItemParent (m_curItem); | |
3480 | if ((newItem == GetRootItem()) && HasFlag(wxTR_HIDE_ROOT)) { | |
3481 | newItem = GetPrevSibling (m_curItem); // get sibling instead of root | |
3482 | } | |
3483 | }break; | |
3484 | ||
3485 | // <UP>: go to the previous sibling or to the last of its children, to the parent | |
3486 | case WXK_UP: { | |
3487 | newItem = GetPrevSibling (m_curItem); | |
3488 | if (newItem) { | |
3489 | #if !wxCHECK_VERSION(2, 5, 0) | |
3490 | long cookie = 0; | |
3491 | #else | |
3492 | wxTreeItemIdValue cookie = 0; | |
3493 | #endif | |
3494 | while (IsExpanded (newItem) && HasChildren (newItem)) { | |
3495 | newItem = GetLastChild (newItem, cookie); | |
3496 | } | |
3497 | }else { | |
3498 | newItem = GetItemParent (m_curItem); | |
3499 | if ((newItem == GetRootItem()) && HasFlag(wxTR_HIDE_ROOT)) { | |
3500 | newItem = (wxTreeItemId*)NULL; // don't go to root if it is hidden | |
3501 | } | |
3502 | } | |
3503 | }break; | |
3504 | ||
3505 | // <LEFT>: if expanded collapse subtree, else go to the parent | |
3506 | case WXK_LEFT: { | |
3507 | if (IsExpanded (m_curItem)) { | |
3508 | Collapse (m_curItem); | |
3509 | }else{ | |
3510 | newItem = GetItemParent (m_curItem); | |
3511 | if ((newItem == GetRootItem()) && HasFlag(wxTR_HIDE_ROOT)) { | |
3512 | newItem = GetPrevSibling (m_curItem); // go to sibling if it is hidden | |
3513 | } | |
3514 | } | |
3515 | }break; | |
3516 | ||
3517 | // <RIGHT>: if possible expand subtree, else go go to the first child | |
3518 | case WXK_RIGHT: { | |
3519 | if (m_curItem->HasPlus() && !IsExpanded (m_curItem)) { | |
3520 | Expand (m_curItem); | |
3521 | }else{ | |
3522 | if (IsExpanded (m_curItem) && HasChildren (m_curItem)) { | |
3523 | #if !wxCHECK_VERSION(2, 5, 0) | |
3524 | long cookie = 0; | |
3525 | #else | |
3526 | wxTreeItemIdValue cookie = 0; | |
3527 | #endif | |
3528 | newItem = GetFirstChild (m_curItem, cookie); | |
3529 | } | |
3530 | } | |
3531 | }break; | |
3532 | ||
3533 | // <DOWN>: if expanded go to the first child, else to the next sibling, ect | |
3534 | case WXK_DOWN: { | |
3535 | if (curItemSet) { | |
3536 | newItem = m_curItem; | |
3537 | }else{ | |
3538 | if (IsExpanded (m_curItem) && HasChildren (m_curItem)) { | |
3539 | #if !wxCHECK_VERSION(2, 5, 0) | |
3540 | long cookie = 0; | |
3541 | #else | |
3542 | wxTreeItemIdValue cookie = 0; | |
3543 | #endif | |
3544 | newItem = GetFirstChild( m_curItem, cookie ); | |
3545 | } | |
3546 | if (!newItem) { | |
3547 | wxTreeItemId parent = m_curItem; | |
3548 | do { | |
3549 | newItem = GetNextSibling (parent); | |
3550 | parent = GetItemParent (parent); | |
3551 | } while (!newItem && parent); | |
3552 | } | |
3553 | } | |
3554 | }break; | |
3555 | ||
3556 | // <END>: go to last item of the root | |
3557 | case WXK_END: { | |
3558 | #if !wxCHECK_VERSION(2, 5, 0) | |
3559 | long cookie = 0; | |
3560 | #else | |
3561 | wxTreeItemIdValue cookie = 0; | |
3562 | #endif | |
3563 | newItem = GetLastChild (GetRootItem(), cookie); | |
3564 | }break; | |
3565 | ||
3566 | // <HOME>: go to root | |
3567 | case WXK_HOME: { | |
3568 | newItem = GetRootItem(); | |
3569 | if (HasFlag(wxTR_HIDE_ROOT)) { | |
3570 | #if !wxCHECK_VERSION(2, 5, 0) | |
3571 | long cookie = 0; | |
3572 | #else | |
3573 | wxTreeItemIdValue cookie = 0; | |
3574 | #endif | |
3575 | newItem = GetFirstChild (newItem, cookie); | |
3576 | } | |
3577 | }break; | |
3578 | ||
3579 | // any char: go to the next matching string | |
3580 | default: | |
3581 | if (event.GetKeyCode() >= (int)' ') { | |
3582 | if (!m_findTimer->IsRunning()) m_findStr.Clear(); | |
3583 | m_findStr.Append (event.GetKeyCode()); | |
3584 | m_findTimer->Start (FIND_TIMER_TICKS, wxTIMER_ONE_SHOT); | |
3585 | wxTreeItemId prev = m_curItem? (wxTreeItemId*)m_curItem: (wxTreeItemId*)NULL; | |
3586 | while (true) { | |
3587 | newItem = FindItem (prev, m_findStr, wxTL_MODE_NAV_EXPANDED | | |
3588 | wxTL_MODE_FIND_PARTIAL | | |
3589 | wxTL_MODE_FIND_NOCASE); | |
3590 | if (newItem || (m_findStr.Length() <= 1)) break; | |
3591 | m_findStr.RemoveLast(); | |
3592 | }; | |
3593 | } | |
3594 | event.Skip(); | |
3595 | ||
3596 | } | |
3597 | ||
3598 | // select and show the new item | |
3599 | if (newItem) { | |
3600 | if (!event.ControlDown()) { | |
3601 | bool unselect_others = !((event.ShiftDown() || event.ControlDown()) && | |
3602 | HasFlag(wxTR_MULTIPLE)); | |
3603 | SelectItem (newItem, m_shiftItem, unselect_others); | |
3604 | } | |
3605 | EnsureVisible (newItem); | |
3606 | wxTreeListItem *oldItem = m_curItem; | |
3607 | m_curItem = (wxTreeListItem*)newItem.m_pItem; // make the new item the current item | |
3608 | RefreshLine (oldItem); | |
3609 | } | |
3610 | ||
3611 | } | |
3612 | ||
3613 | wxTreeItemId wxTreeListMainWindow::HitTest (const wxPoint& point, int& flags, int& column) { | |
3614 | ||
3615 | int w, h; | |
3616 | GetSize(&w, &h); | |
3617 | flags=0; | |
3618 | column = -1; | |
3619 | if (point.x<0) flags |= wxTREE_HITTEST_TOLEFT; | |
3620 | if (point.x>w) flags |= wxTREE_HITTEST_TORIGHT; | |
3621 | if (point.y<0) flags |= wxTREE_HITTEST_ABOVE; | |
3622 | if (point.y>h) flags |= wxTREE_HITTEST_BELOW; | |
3623 | if (flags) return wxTreeItemId(); | |
3624 | ||
3625 | if (!m_rootItem) { | |
3626 | flags = wxTREE_HITTEST_NOWHERE; | |
3627 | column = -1; | |
3628 | return wxTreeItemId(); | |
3629 | } | |
3630 | ||
3631 | wxTreeListItem *hit = m_rootItem->HitTest (CalcUnscrolledPosition(point), | |
3632 | this, flags, column, 0); | |
3633 | if (!hit) { | |
3634 | flags = wxTREE_HITTEST_NOWHERE; | |
3635 | column = -1; | |
3636 | return wxTreeItemId(); | |
3637 | } | |
3638 | return hit; | |
3639 | } | |
3640 | ||
3641 | // get the bounding rectangle of the item (or of its label only) | |
3642 | bool wxTreeListMainWindow::GetBoundingRect (const wxTreeItemId& itemId, wxRect& rect, | |
3643 | bool WXUNUSED(textOnly)) const { | |
3644 | wxCHECK_MSG (itemId.IsOk(), false, _T("invalid item in wxTreeListMainWindow::GetBoundingRect") ); | |
3645 | ||
3646 | wxTreeListItem *item = (wxTreeListItem*) itemId.m_pItem; | |
3647 | ||
3648 | int xUnit, yUnit; | |
3649 | GetScrollPixelsPerUnit (&xUnit, &yUnit); | |
3650 | int startX, startY; | |
3651 | GetViewStart(& startX, & startY); | |
3652 | ||
3653 | rect.x = item->GetX() - startX * xUnit; | |
3654 | rect.y = item->GetY() - startY * yUnit; | |
3655 | rect.width = item->GetWidth(); | |
3656 | rect.height = GetLineHeight (item); | |
3657 | ||
3658 | return true; | |
3659 | } | |
3660 | ||
3661 | /* **** */ | |
3662 | ||
3663 | void wxTreeListMainWindow::EditLabel (const wxTreeItemId& item, int column) { | |
3664 | if (!item.IsOk()) return; | |
3665 | if (!((column >= 0) && (column < GetColumnCount()))) return; | |
3666 | ||
3667 | m_editItem = (wxTreeListItem*) item.m_pItem; | |
3668 | ||
3669 | wxTreeEvent te( wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT, m_owner->GetId() ); | |
3670 | #if !wxCHECK_VERSION(2, 5, 0) | |
3671 | te.SetItem ((long)m_editItem); | |
3672 | #else | |
3673 | te.SetItem (m_editItem); | |
3674 | #endif | |
3675 | te.SetInt (column); | |
3676 | te.SetEventObject (m_owner ); | |
3677 | m_owner->GetEventHandler()->ProcessEvent (te); | |
3678 | ||
3679 | if (!te.IsAllowed()) return; | |
3680 | ||
3681 | // ensure that the position of the item it calculated in any case | |
3682 | if (m_dirty) CalculatePositions(); | |
3683 | ||
3684 | wxTreeListHeaderWindow* header_win = m_owner->GetHeaderWindow(); | |
3685 | int x = 0; | |
3686 | int y = m_editItem->GetY() + 1; // wxTextCtrl needs 1 pixels above the text | |
3687 | int w = 0; | |
3688 | int h = m_editItem->GetHeight(); | |
3689 | long style = 0; | |
3690 | if (column == GetMainColumn()) { | |
3691 | x += m_editItem->GetTextX() - 2; // wxTextCtrl needs 2 pixels before the text | |
3692 | w = wxMin (m_editItem->GetWidth(), m_owner->GetHeaderWindow()->GetWidth() - x); | |
3693 | }else{ | |
3694 | for (int i = 0; i < column; ++i) x += header_win->GetColumnWidth (i); // start of column | |
3695 | switch (header_win->GetColumnAlignment (column)) { | |
3696 | case wxALIGN_LEFT: {style = wxTE_LEFT; break;} | |
3697 | case wxALIGN_RIGHT: {style = wxTE_RIGHT; break;} | |
3698 | case wxALIGN_CENTER: {style = wxTE_CENTER; break;} | |
3699 | } | |
3700 | w = header_win->GetColumnWidth (column); // width of column | |
3701 | } | |
3702 | ||
3703 | wxClientDC dc (this); | |
3704 | PrepareDC (dc); | |
3705 | x = dc.LogicalToDeviceX (x); | |
3706 | y = dc.LogicalToDeviceY (y); | |
3707 | ||
3708 | wxEditTextCtrl *text = new wxEditTextCtrl (this, -1, &m_renameAccept, &m_renameRes, | |
3709 | this, m_editItem->GetText (column), | |
3710 | wxPoint (x, y), wxSize (w, h), style); | |
3711 | text->SetFocus(); | |
3712 | } | |
3713 | ||
3714 | void wxTreeListMainWindow::OnRenameTimer() { | |
3715 | EditLabel (m_curItem, m_curColumn); | |
3716 | } | |
3717 | ||
3718 | void wxTreeListMainWindow::OnRenameAccept() { | |
3719 | ||
3720 | // TODO if the validator fails this causes a crash | |
3721 | wxTreeEvent le( wxEVT_COMMAND_TREE_END_LABEL_EDIT, m_owner->GetId() ); | |
3722 | #if !wxCHECK_VERSION(2, 5, 0) | |
3723 | le.SetItem((long)m_editItem); | |
3724 | #else | |
3725 | le.SetItem(m_editItem); | |
3726 | #endif | |
3727 | le.SetEventObject( /*this*/m_owner ); | |
3728 | le.SetLabel( m_renameRes ); | |
3729 | m_owner->GetEventHandler()->ProcessEvent( le ); | |
3730 | ||
3731 | if (!le.IsAllowed()) return; | |
3732 | ||
3733 | SetItemText (m_editItem, m_curColumn, m_renameRes); | |
3734 | } | |
3735 | ||
3736 | void wxTreeListMainWindow::OnMouse (wxMouseEvent &event) { | |
3737 | if (!m_rootItem) return; | |
3738 | ||
3739 | // we process left mouse up event (enables in-place edit), right down | |
3740 | // (pass to the user code), left dbl click (activate item) and | |
3741 | // dragging/moving events for items drag-and-drop | |
3742 | if (!(event.LeftDown() || | |
3743 | event.LeftUp() || | |
3744 | event.RightDown() || | |
3745 | event.RightUp() || | |
3746 | event.LeftDClick() || | |
3747 | event.Dragging() || | |
3748 | (event.GetWheelRotation() != 0 )/*? TODO || | |
3749 | event.Moving()?*/)) { | |
3750 | m_owner->GetEventHandler()->ProcessEvent (event); | |
3751 | return; | |
3752 | } | |
3753 | ||
3754 | // set focus if window clicked | |
3755 | if (event.LeftDown() || event.RightDown()) SetFocus(); | |
3756 | ||
3757 | // determine event | |
3758 | wxPoint p = wxPoint (event.GetX(), event.GetY()); | |
3759 | int flags = 0; | |
3760 | wxTreeListItem *item = m_rootItem->HitTest (CalcUnscrolledPosition (p), | |
3761 | this, flags, m_curColumn, 0); | |
3762 | ||
3763 | // we only process dragging here | |
3764 | if (event.Dragging()){ | |
3765 | if (m_isDragging) return; // nothing to do, already done | |
3766 | if (item == NULL) return; // we need an item to dragging | |
3767 | ||
3768 | // determine drag start | |
3769 | if (m_dragCount == 0) { | |
3770 | m_dragTimer->Start (DRAG_TIMER_TICKS, wxTIMER_ONE_SHOT); | |
3771 | } | |
3772 | m_dragCount++; | |
3773 | if (m_dragCount < 3) return; // minimum drag 3 pixel | |
3774 | if (m_dragTimer->IsRunning()) return; | |
3775 | ||
3776 | // we're going to drag | |
3777 | m_dragCount = 0; | |
3778 | m_isDragging = true; | |
3779 | CaptureMouse(); | |
3780 | RefreshSelected(); | |
3781 | ||
3782 | // send drag start event | |
3783 | wxEventType command = event.LeftIsDown() | |
3784 | ? wxEVT_COMMAND_TREE_BEGIN_DRAG | |
3785 | : wxEVT_COMMAND_TREE_BEGIN_RDRAG; | |
3786 | wxTreeEvent nevent (command, m_owner->GetId()); | |
3787 | nevent.SetEventObject (m_owner); | |
3788 | #if !wxCHECK_VERSION(2, 5, 0) | |
3789 | nevent.SetItem ((long)item); // the item the drag is ended | |
3790 | #else | |
3791 | nevent.SetItem (item); // the item the drag is ended | |
3792 | #endif | |
3793 | nevent.SetPoint (p); | |
3794 | nevent.Veto(); // dragging must be explicit allowed! | |
3795 | m_owner->GetEventHandler()->ProcessEvent (nevent); | |
3796 | ||
3797 | }else if (m_isDragging) { // any other event but not event.Dragging() | |
3798 | ||
3799 | // end dragging | |
3800 | m_dragCount = 0; | |
3801 | m_isDragging = false; | |
3802 | if (HasCapture()) ReleaseMouse(); | |
3803 | RefreshSelected(); | |
3804 | ||
3805 | // send drag end event event | |
3806 | wxTreeEvent nevent (wxEVT_COMMAND_TREE_END_DRAG, m_owner->GetId()); | |
3807 | nevent.SetEventObject (m_owner); | |
3808 | #if !wxCHECK_VERSION(2, 5, 0) | |
3809 | nevent.SetItem ((long)item); // the item the drag is started | |
3810 | #else | |
3811 | nevent.SetItem (item); // the item the drag is started | |
3812 | #endif | |
3813 | nevent.SetPoint (p); | |
3814 | m_owner->GetEventHandler()->ProcessEvent (nevent); | |
3815 | ||
3816 | }else if (m_dragCount > 0) { // just in case dragging is initiated | |
3817 | ||
3818 | // end dragging | |
3819 | m_dragCount = 0; | |
3820 | ||
3821 | } | |
3822 | ||
3823 | // we process only the messages which happen on tree items | |
3824 | if (item == NULL) { | |
3825 | m_owner->GetEventHandler()->ProcessEvent (event); | |
3826 | return; | |
3827 | } | |
3828 | ||
3829 | // remember item at shift down | |
3830 | if (event.ShiftDown()) { | |
3831 | if (!m_shiftItem) m_shiftItem = m_curItem; | |
3832 | }else{ | |
3833 | m_shiftItem = (wxTreeListItem*)NULL; | |
3834 | } | |
3835 | ||
3836 | if (event.RightUp()) { | |
3837 | ||
3838 | SetFocus(); | |
3839 | wxTreeEvent nevent (wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK, m_owner->GetId()); | |
3840 | nevent.SetEventObject (m_owner); | |
3841 | #if !wxCHECK_VERSION(2, 5, 0) | |
3842 | nevent.SetItem ((long)item); // the item clicked | |
3843 | #else | |
3844 | nevent.SetItem (item); // the item clicked | |
3845 | #endif | |
3846 | nevent.SetInt (m_curColumn); // the colum clicked | |
3847 | nevent.SetPoint (p); | |
3848 | m_owner->GetEventHandler()->ProcessEvent (nevent); | |
3849 | ||
3850 | }else if (event.LeftUp()) { | |
3851 | ||
3852 | if (m_lastOnSame) { | |
3853 | if ((item == m_curItem) && (m_curColumn != -1) && | |
3854 | (m_owner->GetHeaderWindow()->IsColumnEditable (m_curColumn)) && | |
3855 | (flags & (wxTREE_HITTEST_ONITEMLABEL | wxTREE_HITTEST_ONITEMCOLUMN))){ | |
3856 | m_renameTimer->Start (RENAME_TIMER_TICKS, wxTIMER_ONE_SHOT); | |
3857 | } | |
3858 | m_lastOnSame = false; | |
3859 | } | |
3860 | ||
3861 | if (((flags & wxTREE_HITTEST_ONITEMBUTTON) || | |
3862 | (flags & wxTREE_HITTEST_ONITEMICON)) && | |
3863 | HasButtons() && item->HasPlus()) { | |
3864 | ||
3865 | // only toggle the item for a single click, double click on | |
3866 | // the button doesn't do anything (it toggles the item twice) | |
3867 | if (event.LeftDown()) Toggle (item); | |
3868 | ||
3869 | // don't select the item if the button was clicked | |
3870 | return; | |
3871 | } | |
3872 | ||
3873 | // determine the selection if not done by left down | |
3874 | if (!m_left_down_selection) { | |
3875 | bool unselect_others = !((event.ShiftDown() || event.ControlDown()) && | |
3876 | HasFlag(wxTR_MULTIPLE)); | |
3877 | SelectItem (item, m_shiftItem, unselect_others); | |
3878 | EnsureVisible (item); | |
3879 | m_curItem = item; // make the new item the current item | |
3880 | }else{ | |
3881 | m_left_down_selection = false; | |
3882 | } | |
3883 | ||
3884 | }else if (event.LeftDown() || event.RightDown() || event.LeftDClick()) { | |
3885 | ||
3886 | if (event.LeftDown() || event.RightDown()) { | |
3887 | SetFocus(); | |
3888 | m_lastOnSame = item == m_curItem; | |
3889 | } | |
3890 | ||
3891 | if (((flags & wxTREE_HITTEST_ONITEMBUTTON) || | |
3892 | (flags & wxTREE_HITTEST_ONITEMICON)) && | |
3893 | item->HasPlus()) { | |
3894 | ||
3895 | // only toggle the item for a single click, double click on | |
3896 | // the button doesn't do anything (it toggles the item twice) | |
3897 | if (event.LeftDown()) Toggle (item); | |
3898 | ||
3899 | // don't select the item if the button was clicked | |
3900 | return; | |
3901 | } | |
3902 | ||
3903 | // determine the selection if the current item is not selected | |
3904 | if (!item->IsSelected()) { | |
3905 | bool unselect_others = !((event.ShiftDown() || event.ControlDown()) && | |
3906 | HasFlag(wxTR_MULTIPLE)); | |
3907 | SelectItem (item, m_shiftItem, unselect_others); | |
3908 | EnsureVisible (item); | |
3909 | m_curItem = item; // make the new item the current item | |
3910 | m_left_down_selection = true; | |
3911 | } | |
3912 | ||
3913 | // For some reason, Windows isn't recognizing a left double-click, | |
3914 | // so we need to simulate it here. Allow 200 milliseconds for now. | |
3915 | if (event.LeftDClick()) { | |
3916 | ||
3917 | // double clicking should not start editing the item label | |
3918 | m_renameTimer->Stop(); | |
3919 | m_lastOnSame = false; | |
3920 | ||
3921 | // send activate event first | |
3922 | wxTreeEvent nevent (wxEVT_COMMAND_TREE_ITEM_ACTIVATED, m_owner->GetId()); | |
3923 | nevent.SetEventObject (m_owner); | |
3924 | #if !wxCHECK_VERSION(2, 5, 0) | |
3925 | nevent.SetItem ((long)item); // the item clicked | |
3926 | #else | |
3927 | nevent.SetItem (item); // the item clicked | |
3928 | #endif | |
3929 | nevent.SetInt (m_curColumn); // the colum clicked | |
3930 | nevent.SetPoint (p); | |
3931 | if (!m_owner->GetEventHandler()->ProcessEvent (nevent)) { | |
3932 | ||
3933 | // if the user code didn't process the activate event, | |
3934 | // handle it ourselves by toggling the item when it is | |
3935 | // double clicked | |
3936 | if (item->HasPlus()) Toggle(item); | |
3937 | } | |
3938 | } | |
3939 | ||
3940 | }else{ // any other event skip just in case | |
3941 | ||
3942 | event.Skip(); | |
3943 | ||
3944 | } | |
3945 | } | |
3946 | ||
3947 | void wxTreeListMainWindow::OnIdle (wxIdleEvent &WXUNUSED(event)) { | |
3948 | /* after all changes have been done to the tree control, | |
3949 | * we actually redraw the tree when everything is over */ | |
3950 | ||
3951 | if (!m_dirty) return; | |
3952 | ||
3953 | m_dirty = false; | |
3954 | ||
3955 | CalculatePositions(); | |
3956 | Refresh(); | |
3957 | AdjustMyScrollbars(); | |
3958 | } | |
3959 | ||
3960 | void wxTreeListMainWindow::OnScroll (wxScrollWinEvent& event) { | |
3961 | // FIXME | |
3962 | #if defined(__WXGTK__) && !defined(__WXUNIVERSAL__) | |
3963 | wxScrolledWindow::OnScroll(event); | |
3964 | #else | |
3965 | HandleOnScroll( event ); | |
3966 | #endif | |
3967 | ||
3968 | if(event.GetOrientation() == wxHORIZONTAL) { | |
3969 | m_owner->GetHeaderWindow()->Refresh(); | |
3970 | m_owner->GetHeaderWindow()->Update(); | |
3971 | } | |
3972 | } | |
3973 | ||
3974 | void wxTreeListMainWindow::CalculateSize (wxTreeListItem *item, wxDC &dc) { | |
3975 | wxCoord text_w = 0; | |
3976 | wxCoord text_h = 0; | |
3977 | ||
3978 | dc.SetFont (GetItemFont (item)); | |
3979 | ||
3980 | dc.GetTextExtent (item->GetText (m_main_column), &text_w, &text_h); | |
3981 | ||
3982 | // restore normal font | |
3983 | dc.SetFont (m_normalFont); | |
3984 | ||
3985 | int total_h = (m_imgHeight > text_h) ? m_imgHeight : text_h; | |
3986 | if (total_h < 30) { // add 10% space if greater than 30 pixels | |
3987 | total_h += 2; // minimal 2 pixel space | |
3988 | }else{ | |
3989 | total_h += total_h / 10; // otherwise 10% space | |
3990 | } | |
3991 | ||
3992 | item->SetHeight (total_h); | |
3993 | if (total_h > m_lineHeight) m_lineHeight = total_h; | |
3994 | item->SetWidth(m_imgWidth + text_w+2); | |
3995 | } | |
3996 | ||
3997 | // ----------------------------------------------------------------------------- | |
3998 | void wxTreeListMainWindow::CalculateLevel (wxTreeListItem *item, wxDC &dc, | |
3999 | int level, int &y, int x_colstart) { | |
4000 | ||
4001 | // calculate position of vertical lines | |
4002 | int x = x_colstart + MARGIN; // start of column | |
4003 | if (HasFlag(wxTR_LINES_AT_ROOT)) x += LINEATROOT; // space for lines at root | |
4004 | if (HasButtons()) { | |
4005 | x += (m_btnWidth-m_btnWidth2); // half button space | |
4006 | }else{ | |
4007 | x += (m_indent-m_indent/2); | |
4008 | } | |
4009 | if (HasFlag(wxTR_HIDE_ROOT)) { | |
4010 | x += m_indent * (level-1); // indent but not level 1 | |
4011 | }else{ | |
4012 | x += m_indent * level; // indent according to level | |
4013 | } | |
4014 | ||
4015 | // a hidden root is not evaluated, but its children are always | |
4016 | if (HasFlag(wxTR_HIDE_ROOT) && (level == 0)) goto Recurse; | |
4017 | ||
4018 | CalculateSize( item, dc ); | |
4019 | ||
4020 | // set its position | |
4021 | item->SetX (x); | |
4022 | item->SetY (y); | |
4023 | y += GetLineHeight(item); | |
4024 | ||
4025 | // we don't need to calculate collapsed branches | |
4026 | if ( !item->IsExpanded() ) return; | |
4027 | ||
4028 | Recurse: | |
4029 | wxArrayTreeListItems& children = item->GetChildren(); | |
4030 | long n, count = (long)children.Count(); | |
4031 | ++level; | |
4032 | for (n = 0; n < count; ++n) { | |
4033 | CalculateLevel( children[n], dc, level, y, x_colstart ); // recurse | |
4034 | } | |
4035 | } | |
4036 | ||
4037 | void wxTreeListMainWindow::CalculatePositions() { | |
4038 | if ( !m_rootItem ) return; | |
4039 | ||
4040 | wxClientDC dc(this); | |
4041 | PrepareDC( dc ); | |
4042 | ||
4043 | dc.SetFont( m_normalFont ); | |
4044 | ||
4045 | dc.SetPen( m_dottedPen ); | |
4046 | //if(GetImageList() == NULL) | |
4047 | // m_lineHeight = (int)(dc.GetCharHeight() + 4); | |
4048 | ||
4049 | int y = 2; | |
4050 | int x_colstart = 0; | |
4051 | for (int i = 0; i < (int)GetMainColumn(); ++i) { | |
4052 | if (!m_owner->GetHeaderWindow()->IsColumnShown(i)) continue; | |
4053 | x_colstart += m_owner->GetHeaderWindow()->GetColumnWidth(i); | |
4054 | } | |
4055 | CalculateLevel( m_rootItem, dc, 0, y, x_colstart ); // start recursion | |
4056 | } | |
4057 | ||
4058 | void wxTreeListMainWindow::RefreshSubtree (wxTreeListItem *item) { | |
4059 | if (m_dirty) return; | |
4060 | ||
4061 | wxClientDC dc(this); | |
4062 | PrepareDC(dc); | |
4063 | ||
4064 | int cw = 0; | |
4065 | int ch = 0; | |
4066 | GetVirtualSize( &cw, &ch ); | |
4067 | ||
4068 | wxRect rect; | |
4069 | rect.x = dc.LogicalToDeviceX( 0 ); | |
4070 | rect.width = cw; | |
4071 | rect.y = dc.LogicalToDeviceY( item->GetY() - 2 ); | |
4072 | rect.height = ch; | |
4073 | ||
4074 | Refresh (true, &rect ); | |
4075 | AdjustMyScrollbars(); | |
4076 | } | |
4077 | ||
4078 | void wxTreeListMainWindow::RefreshLine (wxTreeListItem *item) { | |
4079 | if (m_dirty) return; | |
4080 | ||
4081 | wxClientDC dc(this); | |
4082 | PrepareDC( dc ); | |
4083 | ||
4084 | int cw = 0; | |
4085 | int ch = 0; | |
4086 | GetVirtualSize( &cw, &ch ); | |
4087 | ||
4088 | wxRect rect; | |
4089 | rect.x = dc.LogicalToDeviceX( 0 ); | |
4090 | rect.y = dc.LogicalToDeviceY( item->GetY() ); | |
4091 | rect.width = cw; | |
4092 | rect.height = GetLineHeight(item); //dc.GetCharHeight() + 6; | |
4093 | ||
4094 | Refresh (true, &rect); | |
4095 | } | |
4096 | ||
4097 | void wxTreeListMainWindow::RefreshSelected() { | |
4098 | // TODO: this is awfully inefficient, we should keep the list of all | |
4099 | // selected items internally, should be much faster | |
4100 | if (m_rootItem) { | |
4101 | RefreshSelectedUnder (m_rootItem); | |
4102 | } | |
4103 | } | |
4104 | ||
4105 | void wxTreeListMainWindow::RefreshSelectedUnder (wxTreeListItem *item) { | |
4106 | if (item->IsSelected()) { | |
4107 | RefreshLine (item); | |
4108 | } | |
4109 | ||
4110 | const wxArrayTreeListItems& children = item->GetChildren(); | |
4111 | long count = children.GetCount(); | |
4112 | for (long n = 0; n < count; n++ ) { | |
4113 | RefreshSelectedUnder (children[n]); | |
4114 | } | |
4115 | } | |
4116 | ||
4117 | // ---------------------------------------------------------------------------- | |
4118 | // changing colours: we need to refresh the tree control | |
4119 | // ---------------------------------------------------------------------------- | |
4120 | ||
4121 | bool wxTreeListMainWindow::SetBackgroundColour (const wxColour& colour) { | |
4122 | if (!wxWindow::SetBackgroundColour(colour)) return false; | |
4123 | ||
4124 | Refresh(); | |
4125 | return true; | |
4126 | } | |
4127 | ||
4128 | bool wxTreeListMainWindow::SetForegroundColour (const wxColour& colour) { | |
4129 | if (!wxWindow::SetForegroundColour(colour)) return false; | |
4130 | ||
4131 | Refresh(); | |
4132 | return true; | |
4133 | } | |
4134 | ||
4135 | void wxTreeListMainWindow::SetItemText (const wxTreeItemId& itemId, int column, | |
4136 | const wxString& text) { | |
4137 | wxCHECK_RET (itemId.IsOk(), _T("invalid tree item")); | |
4138 | ||
4139 | wxClientDC dc (this); | |
4140 | wxTreeListItem *item = (wxTreeListItem*) itemId.m_pItem; | |
4141 | item->SetText (column, text); | |
4142 | CalculateSize (item, dc); | |
4143 | RefreshLine (item); | |
4144 | } | |
4145 | ||
4146 | wxString wxTreeListMainWindow::GetItemText (const wxTreeItemId& itemId, | |
4147 | int column) const { | |
4148 | wxCHECK_MSG (itemId.IsOk(), _T(""), _T("invalid tree item") ); | |
4149 | ||
4150 | if( IsVirtual() ) return m_owner->OnGetItemText(((wxTreeListItem*) itemId.m_pItem)->GetData(),column); | |
4151 | else return ((wxTreeListItem*) itemId.m_pItem)->GetText (column); | |
4152 | } | |
4153 | ||
4154 | wxString wxTreeListMainWindow::GetItemText (wxTreeItemData* item, | |
4155 | int column) const { | |
4156 | wxASSERT_MSG( IsVirtual(), _T("can be used only with virtual control") ); | |
4157 | return m_owner->OnGetItemText(item,column); | |
4158 | } | |
4159 | ||
4160 | void wxTreeListMainWindow::SetFocus() { | |
4161 | wxWindow::SetFocus(); | |
4162 | } | |
4163 | ||
4164 | wxFont wxTreeListMainWindow::GetItemFont (wxTreeListItem *item) { | |
4165 | wxTreeItemAttr *attr = item->GetAttributes(); | |
4166 | ||
4167 | if (attr && attr->HasFont()) { | |
4168 | return attr->GetFont(); | |
4169 | }else if (item->IsBold()) { | |
4170 | return m_boldFont; | |
4171 | }else{ | |
4172 | return m_normalFont; | |
4173 | } | |
4174 | } | |
4175 | ||
4176 | int wxTreeListMainWindow::GetItemWidth (int column, wxTreeListItem *item) { | |
4177 | if (!item) return 0; | |
4178 | ||
4179 | // determine item width | |
4180 | int w = 0, h = 0; | |
4181 | wxFont font = GetItemFont (item); | |
4182 | GetTextExtent (item->GetText (column), &w, &h, NULL, NULL, font.Ok()? &font: NULL); | |
4183 | w += 2*MARGIN; | |
4184 | ||
4185 | // calculate width | |
4186 | int width = w + 2*MARGIN; | |
4187 | if (column == GetMainColumn()) { | |
4188 | width += MARGIN; | |
4189 | if (HasFlag(wxTR_LINES_AT_ROOT)) width += LINEATROOT; | |
4190 | if (HasButtons()) width += m_btnWidth + LINEATROOT; | |
4191 | if (item->GetCurrentImage() != NO_IMAGE) width += m_imgWidth; | |
4192 | ||
4193 | // count indent level | |
4194 | int level = 0; | |
4195 | wxTreeListItem *parent = item->GetItemParent(); | |
4196 | wxTreeListItem *root = (wxTreeListItem*)GetRootItem().m_pItem; | |
4197 | while (parent && (!HasFlag(wxTR_HIDE_ROOT) || (parent != root))) { | |
4198 | level++; | |
4199 | parent = parent->GetItemParent(); | |
4200 | } | |
4201 | if (level) width += level * GetIndent(); | |
4202 | } | |
4203 | ||
4204 | return width; | |
4205 | } | |
4206 | ||
4207 | int wxTreeListMainWindow::GetBestColumnWidth (int column, wxTreeItemId parent) { | |
4208 | int maxWidth, h; | |
4209 | GetClientSize (&maxWidth, &h); | |
4210 | int width = 0; | |
4211 | ||
4212 | // get root if on item | |
4213 | if (!parent.IsOk()) parent = GetRootItem(); | |
4214 | ||
4215 | // add root width | |
4216 | if (!HasFlag(wxTR_HIDE_ROOT)) { | |
4217 | int w = GetItemWidth (column, (wxTreeListItem*)parent.m_pItem); | |
4218 | if (width < w) width = w; | |
4219 | if (width > maxWidth) return maxWidth; | |
4220 | } | |
4221 | ||
4222 | wxTreeItemIdValue cookie = 0; | |
4223 | wxTreeItemId item = GetFirstChild (parent, cookie); | |
4224 | while (item.IsOk()) { | |
4225 | int w = GetItemWidth (column, (wxTreeListItem*)item.m_pItem); | |
4226 | if (width < w) width = w; | |
4227 | if (width > maxWidth) return maxWidth; | |
4228 | ||
4229 | // check the children of this item | |
4230 | if (((wxTreeListItem*)item.m_pItem)->IsExpanded()) { | |
4231 | int w = GetBestColumnWidth (column, item); | |
4232 | if (width < w) width = w; | |
4233 | if (width > maxWidth) return maxWidth; | |
4234 | } | |
4235 | ||
4236 | // next sibling | |
4237 | item = GetNextChild (parent, cookie); | |
4238 | } | |
4239 | ||
4240 | return width; | |
4241 | } | |
4242 | ||
4243 | ||
4244 | //----------------------------------------------------------------------------- | |
4245 | // wxTreeListCtrl | |
4246 | //----------------------------------------------------------------------------- | |
4247 | ||
4248 | IMPLEMENT_DYNAMIC_CLASS(wxTreeListCtrl, wxControl); | |
4249 | ||
4250 | BEGIN_EVENT_TABLE(wxTreeListCtrl, wxControl) | |
4251 | EVT_SIZE(wxTreeListCtrl::OnSize) | |
4252 | END_EVENT_TABLE(); | |
4253 | ||
4254 | bool wxTreeListCtrl::Create(wxWindow *parent, wxWindowID id, | |
4255 | const wxPoint& pos, | |
4256 | const wxSize& size, | |
4257 | long style, const wxValidator &validator, | |
4258 | const wxString& name) | |
4259 | { | |
4260 | long main_style = style & ~(wxSIMPLE_BORDER|wxSUNKEN_BORDER|wxDOUBLE_BORDER| | |
4261 | wxRAISED_BORDER|wxSTATIC_BORDER); | |
4262 | long ctrl_style = style & ~(wxVSCROLL|wxHSCROLL); | |
4263 | ||
4264 | if (!wxControl::Create(parent, id, pos, size, ctrl_style, validator, name)) { | |
4265 | return false; | |
4266 | } | |
4267 | m_main_win = new wxTreeListMainWindow (this, -1, wxPoint(0, 0), size, | |
4268 | main_style, validator); | |
4269 | m_header_win = new wxTreeListHeaderWindow (this, -1, m_main_win, | |
4270 | wxPoint(0, 0), wxDefaultSize, | |
4271 | wxTAB_TRAVERSAL); | |
4272 | CalculateAndSetHeaderHeight(); | |
4273 | return true; | |
4274 | } | |
4275 | ||
4276 | void wxTreeListCtrl::CalculateAndSetHeaderHeight() | |
4277 | { | |
4278 | if (m_header_win) { | |
4279 | int h; | |
4280 | #if wxCHECK_VERSION_FULL(2, 7, 0, 1) | |
4281 | h = wxRendererNative::Get().GetHeaderButtonHeight(m_header_win); | |
4282 | #else | |
4283 | // we use 'g' to get the descent, too | |
4284 | int w, d; | |
4285 | m_header_win->GetTextExtent(_T("Hg"), &w, &h, &d); | |
4286 | h += d + 2 * HEADER_OFFSET_Y + EXTRA_HEIGHT; | |
4287 | #endif | |
4288 | // only update if changed | |
4289 | if (h != m_headerHeight) { | |
4290 | m_headerHeight = h; | |
4291 | DoHeaderLayout(); | |
4292 | } | |
4293 | } | |
4294 | } | |
4295 | ||
4296 | void wxTreeListCtrl::DoHeaderLayout() | |
4297 | { | |
4298 | int w, h; | |
4299 | GetClientSize(&w, &h); | |
4300 | if (m_header_win) { | |
4301 | m_header_win->SetSize (0, 0, w, m_headerHeight); | |
4302 | m_header_win->Refresh(); | |
4303 | } | |
4304 | if (m_main_win) { | |
4305 | m_main_win->SetSize (0, m_headerHeight + 1, w, h - m_headerHeight - 1); | |
4306 | } | |
4307 | } | |
4308 | ||
4309 | void wxTreeListCtrl::OnSize(wxSizeEvent& WXUNUSED(event)) | |
4310 | { | |
4311 | DoHeaderLayout(); | |
4312 | } | |
4313 | ||
4314 | size_t wxTreeListCtrl::GetCount() const { return m_main_win->GetCount(); } | |
4315 | ||
4316 | unsigned int wxTreeListCtrl::GetIndent() const | |
4317 | { return m_main_win->GetIndent(); } | |
4318 | ||
4319 | void wxTreeListCtrl::SetIndent(unsigned int indent) | |
4320 | { m_main_win->SetIndent(indent); } | |
4321 | ||
4322 | unsigned int wxTreeListCtrl::GetLineSpacing() const | |
4323 | { return m_main_win->GetLineSpacing(); } | |
4324 | ||
4325 | void wxTreeListCtrl::SetLineSpacing(unsigned int spacing) | |
4326 | { m_main_win->SetLineSpacing(spacing); } | |
4327 | ||
4328 | wxImageList* wxTreeListCtrl::GetImageList() const | |
4329 | { return m_main_win->GetImageList(); } | |
4330 | ||
4331 | wxImageList* wxTreeListCtrl::GetStateImageList() const | |
4332 | { return m_main_win->GetStateImageList(); } | |
4333 | ||
4334 | wxImageList* wxTreeListCtrl::GetButtonsImageList() const | |
4335 | { return m_main_win->GetButtonsImageList(); } | |
4336 | ||
4337 | void wxTreeListCtrl::SetImageList(wxImageList* imageList) | |
4338 | { m_main_win->SetImageList(imageList); } | |
4339 | ||
4340 | void wxTreeListCtrl::SetStateImageList(wxImageList* imageList) | |
4341 | { m_main_win->SetStateImageList(imageList); } | |
4342 | ||
4343 | void wxTreeListCtrl::SetButtonsImageList(wxImageList* imageList) | |
4344 | { m_main_win->SetButtonsImageList(imageList); } | |
4345 | ||
4346 | void wxTreeListCtrl::AssignImageList(wxImageList* imageList) | |
4347 | { m_main_win->AssignImageList(imageList); } | |
4348 | ||
4349 | void wxTreeListCtrl::AssignStateImageList(wxImageList* imageList) | |
4350 | { m_main_win->AssignStateImageList(imageList); } | |
4351 | ||
4352 | void wxTreeListCtrl::AssignButtonsImageList(wxImageList* imageList) | |
4353 | { m_main_win->AssignButtonsImageList(imageList); } | |
4354 | ||
4355 | wxString wxTreeListCtrl::GetItemText(const wxTreeItemId& item, int column) const | |
4356 | { return m_main_win->GetItemText (item, column); } | |
4357 | ||
4358 | int wxTreeListCtrl::GetItemImage(const wxTreeItemId& item, int column, | |
4359 | wxTreeItemIcon which) const | |
4360 | { return m_main_win->GetItemImage(item, column, which); } | |
4361 | ||
4362 | wxTreeItemData* wxTreeListCtrl::GetItemData(const wxTreeItemId& item) const | |
4363 | { return m_main_win->GetItemData(item); } | |
4364 | ||
4365 | bool wxTreeListCtrl::GetItemBold(const wxTreeItemId& item) const | |
4366 | { return m_main_win->GetItemBold(item); } | |
4367 | ||
4368 | wxColour wxTreeListCtrl::GetItemTextColour(const wxTreeItemId& item) const | |
4369 | { return m_main_win->GetItemTextColour(item); } | |
4370 | ||
4371 | wxColour wxTreeListCtrl::GetItemBackgroundColour(const wxTreeItemId& item) | |
4372 | const | |
4373 | { return m_main_win->GetItemBackgroundColour(item); } | |
4374 | ||
4375 | wxFont wxTreeListCtrl::GetItemFont(const wxTreeItemId& item) const | |
4376 | { return m_main_win->GetItemFont(item); } | |
4377 | ||
4378 | ||
4379 | void wxTreeListCtrl::SetItemText(const wxTreeItemId& item, int column, | |
4380 | const wxString& text) | |
4381 | { m_main_win->SetItemText (item, column, text); } | |
4382 | ||
4383 | void wxTreeListCtrl::SetItemImage(const wxTreeItemId& item, | |
4384 | int column, | |
4385 | int image, | |
4386 | wxTreeItemIcon which) | |
4387 | { m_main_win->SetItemImage(item, column, image, which); } | |
4388 | ||
4389 | void wxTreeListCtrl::SetItemData(const wxTreeItemId& item, | |
4390 | wxTreeItemData* data) | |
4391 | { m_main_win->SetItemData(item, data); } | |
4392 | ||
4393 | void wxTreeListCtrl::SetItemHasChildren(const wxTreeItemId& item, bool has) | |
4394 | { m_main_win->SetItemHasChildren(item, has); } | |
4395 | ||
4396 | void wxTreeListCtrl::SetItemBold(const wxTreeItemId& item, bool bold) | |
4397 | { m_main_win->SetItemBold(item, bold); } | |
4398 | ||
4399 | void wxTreeListCtrl::SetItemTextColour(const wxTreeItemId& item, | |
4400 | const wxColour& colour) | |
4401 | { m_main_win->SetItemTextColour(item, colour); } | |
4402 | ||
4403 | void wxTreeListCtrl::SetItemBackgroundColour(const wxTreeItemId& item, | |
4404 | const wxColour& colour) | |
4405 | { m_main_win->SetItemBackgroundColour(item, colour); } | |
4406 | ||
4407 | void wxTreeListCtrl::SetItemFont(const wxTreeItemId& item, | |
4408 | const wxFont& font) | |
4409 | { m_main_win->SetItemFont(item, font); } | |
4410 | ||
4411 | bool wxTreeListCtrl::SetFont(const wxFont& font) | |
4412 | { | |
4413 | if (m_header_win) { | |
4414 | m_header_win->SetFont(font); | |
4415 | CalculateAndSetHeaderHeight(); | |
4416 | m_header_win->Refresh(); | |
4417 | } | |
4418 | if (m_main_win) { | |
4419 | return m_main_win->SetFont(font); | |
4420 | }else{ | |
4421 | return false; | |
4422 | } | |
4423 | } | |
4424 | ||
4425 | void wxTreeListCtrl::SetWindowStyle(const long style) | |
4426 | { | |
4427 | if(m_main_win) | |
4428 | m_main_win->SetWindowStyle(style); | |
4429 | m_windowStyle = style; | |
4430 | // TODO: provide something like wxTL_NO_HEADERS to hide m_header_win | |
4431 | } | |
4432 | ||
4433 | long wxTreeListCtrl::GetWindowStyle() const | |
4434 | { | |
4435 | long style = m_windowStyle; | |
4436 | if(m_main_win) | |
4437 | style |= m_main_win->GetWindowStyle(); | |
4438 | return style; | |
4439 | } | |
4440 | ||
4441 | bool wxTreeListCtrl::IsVisible(const wxTreeItemId& item, bool fullRow) const | |
4442 | { return m_main_win->IsVisible(item, fullRow); } | |
4443 | ||
4444 | bool wxTreeListCtrl::HasChildren(const wxTreeItemId& item) const | |
4445 | { return m_main_win->HasChildren(item); } | |
4446 | ||
4447 | bool wxTreeListCtrl::IsExpanded(const wxTreeItemId& item) const | |
4448 | { return m_main_win->IsExpanded(item); } | |
4449 | ||
4450 | bool wxTreeListCtrl::IsSelected(const wxTreeItemId& item) const | |
4451 | { return m_main_win->IsSelected(item); } | |
4452 | ||
4453 | bool wxTreeListCtrl::IsBold(const wxTreeItemId& item) const | |
4454 | { return m_main_win->IsBold(item); } | |
4455 | ||
4456 | size_t wxTreeListCtrl::GetChildrenCount(const wxTreeItemId& item, bool rec) | |
4457 | { return m_main_win->GetChildrenCount(item, rec); } | |
4458 | ||
4459 | wxTreeItemId wxTreeListCtrl::GetRootItem() const | |
4460 | { return m_main_win->GetRootItem(); } | |
4461 | ||
4462 | wxTreeItemId wxTreeListCtrl::GetSelection() const | |
4463 | { return m_main_win->GetSelection(); } | |
4464 | ||
4465 | size_t wxTreeListCtrl::GetSelections(wxArrayTreeItemIds& arr) const | |
4466 | { return m_main_win->GetSelections(arr); } | |
4467 | ||
4468 | wxTreeItemId wxTreeListCtrl::GetItemParent(const wxTreeItemId& item) const | |
4469 | { return m_main_win->GetItemParent(item); } | |
4470 | ||
4471 | #if !wxCHECK_VERSION(2, 5, 0) | |
4472 | wxTreeItemId wxTreeListCtrl::GetFirstChild (const wxTreeItemId& item, | |
4473 | long& cookie) const | |
4474 | #else | |
4475 | wxTreeItemId wxTreeListCtrl::GetFirstChild (const wxTreeItemId& item, | |
4476 | wxTreeItemIdValue& cookie) const | |
4477 | #endif | |
4478 | { return m_main_win->GetFirstChild(item, cookie); } | |
4479 | ||
4480 | #if !wxCHECK_VERSION(2, 5, 0) | |
4481 | wxTreeItemId wxTreeListCtrl::GetNextChild (const wxTreeItemId& item, | |
4482 | long& cookie) const | |
4483 | #else | |
4484 | wxTreeItemId wxTreeListCtrl::GetNextChild (const wxTreeItemId& item, | |
4485 | wxTreeItemIdValue& cookie) const | |
4486 | #endif | |
4487 | { return m_main_win->GetNextChild(item, cookie); } | |
4488 | ||
4489 | #if !wxCHECK_VERSION(2, 5, 0) | |
4490 | wxTreeItemId wxTreeListCtrl::GetPrevChild (const wxTreeItemId& item, | |
4491 | long& cookie) const | |
4492 | #else | |
4493 | wxTreeItemId wxTreeListCtrl::GetPrevChild (const wxTreeItemId& item, | |
4494 | wxTreeItemIdValue& cookie) const | |
4495 | #endif | |
4496 | { return m_main_win->GetPrevChild(item, cookie); } | |
4497 | ||
4498 | #if !wxCHECK_VERSION(2, 5, 0) | |
4499 | wxTreeItemId wxTreeListCtrl::GetLastChild (const wxTreeItemId& item, | |
4500 | long& cookie) const | |
4501 | #else | |
4502 | wxTreeItemId wxTreeListCtrl::GetLastChild (const wxTreeItemId& item, | |
4503 | wxTreeItemIdValue& cookie) const | |
4504 | #endif | |
4505 | { return m_main_win->GetLastChild(item, cookie); } | |
4506 | ||
4507 | ||
4508 | wxTreeItemId wxTreeListCtrl::GetNextSibling(const wxTreeItemId& item) const | |
4509 | { return m_main_win->GetNextSibling(item); } | |
4510 | ||
4511 | wxTreeItemId wxTreeListCtrl::GetPrevSibling(const wxTreeItemId& item) const | |
4512 | { return m_main_win->GetPrevSibling(item); } | |
4513 | ||
4514 | wxTreeItemId wxTreeListCtrl::GetNext(const wxTreeItemId& item) const | |
4515 | { return m_main_win->GetNext(item, true); } | |
4516 | ||
4517 | wxTreeItemId wxTreeListCtrl::GetPrev(const wxTreeItemId& item) const | |
4518 | { return m_main_win->GetPrev(item, true); } | |
4519 | ||
4520 | wxTreeItemId wxTreeListCtrl::GetFirstExpandedItem() const | |
4521 | { return m_main_win->GetFirstExpandedItem(); } | |
4522 | ||
4523 | wxTreeItemId wxTreeListCtrl::GetNextExpanded(const wxTreeItemId& item) const | |
4524 | { return m_main_win->GetNextExpanded(item); } | |
4525 | ||
4526 | wxTreeItemId wxTreeListCtrl::GetPrevExpanded(const wxTreeItemId& item) const | |
4527 | { return m_main_win->GetPrevExpanded(item); } | |
4528 | ||
4529 | wxTreeItemId wxTreeListCtrl::GetFirstVisibleItem(bool fullRow) const | |
4530 | { return m_main_win->GetFirstVisibleItem(fullRow); } | |
4531 | ||
4532 | wxTreeItemId wxTreeListCtrl::GetNextVisible(const wxTreeItemId& item, bool fullRow) const | |
4533 | { return m_main_win->GetNextVisible(item, fullRow); } | |
4534 | ||
4535 | wxTreeItemId wxTreeListCtrl::GetPrevVisible(const wxTreeItemId& item, bool fullRow) const | |
4536 | { return m_main_win->GetPrevVisible(item, fullRow); } | |
4537 | ||
4538 | wxTreeItemId wxTreeListCtrl::AddRoot (const wxString& text, int image, | |
4539 | int selectedImage, wxTreeItemData* data) | |
4540 | { return m_main_win->AddRoot (text, image, selectedImage, data); } | |
4541 | ||
4542 | wxTreeItemId wxTreeListCtrl::PrependItem(const wxTreeItemId& parent, | |
4543 | const wxString& text, int image, | |
4544 | int selectedImage, | |
4545 | wxTreeItemData* data) | |
4546 | { return m_main_win->PrependItem(parent, text, image, selectedImage, data); } | |
4547 | ||
4548 | wxTreeItemId wxTreeListCtrl::InsertItem(const wxTreeItemId& parent, | |
4549 | const wxTreeItemId& previous, | |
4550 | const wxString& text, int image, | |
4551 | int selectedImage, | |
4552 | wxTreeItemData* data) | |
4553 | { | |
4554 | return m_main_win->InsertItem(parent, previous, text, image, | |
4555 | selectedImage, data); | |
4556 | } | |
4557 | ||
4558 | wxTreeItemId wxTreeListCtrl::InsertItem(const wxTreeItemId& parent, | |
4559 | size_t index, | |
4560 | const wxString& text, int image, | |
4561 | int selectedImage, | |
4562 | wxTreeItemData* data) | |
4563 | { | |
4564 | return m_main_win->InsertItem(parent, index, text, image, | |
4565 | selectedImage, data); | |
4566 | } | |
4567 | ||
4568 | wxTreeItemId wxTreeListCtrl::AppendItem(const wxTreeItemId& parent, | |
4569 | const wxString& text, int image, | |
4570 | int selectedImage, | |
4571 | wxTreeItemData* data) | |
4572 | { return m_main_win->AppendItem(parent, text, image, selectedImage, data); } | |
4573 | ||
4574 | void wxTreeListCtrl::Delete(const wxTreeItemId& item) | |
4575 | { m_main_win->Delete(item); } | |
4576 | ||
4577 | void wxTreeListCtrl::DeleteChildren(const wxTreeItemId& item) | |
4578 | { m_main_win->DeleteChildren(item); } | |
4579 | ||
4580 | void wxTreeListCtrl::DeleteRoot() | |
4581 | { m_main_win->DeleteRoot(); } | |
4582 | ||
4583 | void wxTreeListCtrl::Expand(const wxTreeItemId& item) | |
4584 | { m_main_win->Expand(item); } | |
4585 | ||
4586 | void wxTreeListCtrl::ExpandAll(const wxTreeItemId& item) | |
4587 | { m_main_win->ExpandAll(item); } | |
4588 | ||
4589 | void wxTreeListCtrl::Collapse(const wxTreeItemId& item) | |
4590 | { m_main_win->Collapse(item); } | |
4591 | ||
4592 | void wxTreeListCtrl::CollapseAndReset(const wxTreeItemId& item) | |
4593 | { m_main_win->CollapseAndReset(item); } | |
4594 | ||
4595 | void wxTreeListCtrl::Toggle(const wxTreeItemId& item) | |
4596 | { m_main_win->Toggle(item); } | |
4597 | ||
4598 | void wxTreeListCtrl::Unselect() | |
4599 | { m_main_win->Unselect(); } | |
4600 | ||
4601 | void wxTreeListCtrl::UnselectAll() | |
4602 | { m_main_win->UnselectAll(); } | |
4603 | ||
4604 | void wxTreeListCtrl::SelectItem(const wxTreeItemId& item, const wxTreeItemId& last, | |
4605 | bool unselect_others) | |
4606 | { m_main_win->SelectItem (item, last, unselect_others); } | |
4607 | ||
4608 | void wxTreeListCtrl::SelectAll() | |
4609 | { m_main_win->SelectAll(); } | |
4610 | ||
4611 | void wxTreeListCtrl::EnsureVisible(const wxTreeItemId& item) | |
4612 | { m_main_win->EnsureVisible(item); } | |
4613 | ||
4614 | void wxTreeListCtrl::ScrollTo(const wxTreeItemId& item) | |
4615 | { m_main_win->ScrollTo(item); } | |
4616 | ||
4617 | wxTreeItemId wxTreeListCtrl::HitTest(const wxPoint& pos, int& flags, int& column) | |
4618 | { | |
4619 | return m_main_win->HitTest (pos, flags, column); | |
4620 | } | |
4621 | ||
4622 | bool wxTreeListCtrl::GetBoundingRect(const wxTreeItemId& item, wxRect& rect, | |
4623 | bool textOnly) const | |
4624 | { return m_main_win->GetBoundingRect(item, rect, textOnly); } | |
4625 | ||
4626 | void wxTreeListCtrl::EditLabel (const wxTreeItemId& item, int column) | |
4627 | { m_main_win->EditLabel (item, column); } | |
4628 | ||
4629 | int wxTreeListCtrl::OnCompareItems(const wxTreeItemId& item1, | |
4630 | const wxTreeItemId& item2) | |
4631 | { | |
4632 | // do the comparison here, and not delegate to m_main_win, in order | |
4633 | // to let the user override it | |
4634 | //return m_main_win->OnCompareItems(item1, item2); | |
4635 | return wxStrcmp(GetItemText(item1), GetItemText(item2)); | |
4636 | } | |
4637 | ||
4638 | void wxTreeListCtrl::SortChildren(const wxTreeItemId& item) | |
4639 | { m_main_win->SortChildren(item); } | |
4640 | ||
4641 | wxTreeItemId wxTreeListCtrl::FindItem (const wxTreeItemId& item, const wxString& str, int mode) | |
4642 | { return m_main_win->FindItem (item, str, mode); } | |
4643 | ||
4644 | void wxTreeListCtrl::SetDragItem (const wxTreeItemId& item) | |
4645 | { m_main_win->SetDragItem (item); } | |
4646 | ||
4647 | bool wxTreeListCtrl::SetBackgroundColour(const wxColour& colour) | |
4648 | { | |
4649 | if (!m_main_win) return false; | |
4650 | return m_main_win->SetBackgroundColour(colour); | |
4651 | } | |
4652 | ||
4653 | bool wxTreeListCtrl::SetForegroundColour(const wxColour& colour) | |
4654 | { | |
4655 | if (!m_main_win) return false; | |
4656 | return m_main_win->SetForegroundColour(colour); | |
4657 | } | |
4658 | ||
4659 | int wxTreeListCtrl::GetColumnCount() const | |
4660 | { return m_main_win->GetColumnCount(); } | |
4661 | ||
4662 | void wxTreeListCtrl::SetColumnWidth(int column, int width) | |
4663 | { | |
4664 | m_header_win->SetColumnWidth (column, width); | |
4665 | m_header_win->Refresh(); | |
4666 | } | |
4667 | ||
4668 | int wxTreeListCtrl::GetColumnWidth(int column) const | |
4669 | { return m_header_win->GetColumnWidth(column); } | |
4670 | ||
4671 | void wxTreeListCtrl::SetMainColumn(int column) | |
4672 | { m_main_win->SetMainColumn(column); } | |
4673 | ||
4674 | int wxTreeListCtrl::GetMainColumn() const | |
4675 | { return m_main_win->GetMainColumn(); } | |
4676 | ||
4677 | void wxTreeListCtrl::SetColumnText(int column, const wxString& text) | |
4678 | { | |
4679 | m_header_win->SetColumnText (column, text); | |
4680 | m_header_win->Refresh(); | |
4681 | } | |
4682 | ||
4683 | wxString wxTreeListCtrl::GetColumnText(int column) const | |
4684 | { return m_header_win->GetColumnText(column); } | |
4685 | ||
4686 | void wxTreeListCtrl::AddColumn(const wxTreeListColumnInfo& colInfo) | |
4687 | { | |
4688 | m_header_win->AddColumn (colInfo); | |
4689 | DoHeaderLayout(); | |
4690 | } | |
4691 | ||
4692 | void wxTreeListCtrl::InsertColumn(int before, const wxTreeListColumnInfo& colInfo) | |
4693 | { | |
4694 | m_header_win->InsertColumn (before, colInfo); | |
4695 | m_header_win->Refresh(); | |
4696 | } | |
4697 | ||
4698 | void wxTreeListCtrl::RemoveColumn(int column) | |
4699 | { | |
4700 | m_header_win->RemoveColumn (column); | |
4701 | m_header_win->Refresh(); | |
4702 | } | |
4703 | ||
4704 | void wxTreeListCtrl::SetColumn(int column, const wxTreeListColumnInfo& colInfo) | |
4705 | { | |
4706 | m_header_win->SetColumn (column, colInfo); | |
4707 | m_header_win->Refresh(); | |
4708 | } | |
4709 | ||
4710 | const wxTreeListColumnInfo& wxTreeListCtrl::GetColumn(int column) const | |
4711 | { return m_header_win->GetColumn(column); } | |
4712 | ||
4713 | wxTreeListColumnInfo& wxTreeListCtrl::GetColumn(int column) | |
4714 | { return m_header_win->GetColumn(column); } | |
4715 | ||
4716 | void wxTreeListCtrl::SetColumnImage(int column, int image) | |
4717 | { | |
4718 | m_header_win->SetColumn (column, GetColumn(column).SetImage(image)); | |
4719 | m_header_win->Refresh(); | |
4720 | } | |
4721 | ||
4722 | int wxTreeListCtrl::GetColumnImage(int column) const | |
4723 | { | |
4724 | return m_header_win->GetColumn(column).GetImage(); | |
4725 | } | |
4726 | ||
4727 | void wxTreeListCtrl::SetColumnEditable(int column, bool shown) | |
4728 | { | |
4729 | m_header_win->SetColumn (column, GetColumn(column).SetEditable(shown)); | |
4730 | } | |
4731 | ||
4732 | void wxTreeListCtrl::SetColumnShown(int column, bool shown) | |
4733 | { | |
4734 | wxASSERT_MSG (column != GetMainColumn(), _T("The main column may not be hidden") ); | |
4735 | m_header_win->SetColumn (column, GetColumn(column).SetShown(GetMainColumn()==column? true: shown)); | |
4736 | m_header_win->Refresh(); | |
4737 | } | |
4738 | ||
4739 | bool wxTreeListCtrl::IsColumnEditable(int column) const | |
4740 | { | |
4741 | return m_header_win->GetColumn(column).IsEditable(); | |
4742 | } | |
4743 | ||
4744 | bool wxTreeListCtrl::IsColumnShown(int column) const | |
4745 | { | |
4746 | return m_header_win->GetColumn(column).IsShown(); | |
4747 | } | |
4748 | ||
4749 | void wxTreeListCtrl::SetColumnAlignment (int column, int flag) | |
4750 | { | |
4751 | m_header_win->SetColumn(column, GetColumn(column).SetAlignment(flag)); | |
4752 | m_header_win->Refresh(); | |
4753 | } | |
4754 | ||
4755 | int wxTreeListCtrl::GetColumnAlignment(int column) const | |
4756 | { | |
4757 | return m_header_win->GetColumn(column).GetAlignment(); | |
4758 | } | |
4759 | ||
4760 | void wxTreeListCtrl::Refresh(bool erase, const wxRect* rect) | |
4761 | { | |
4762 | m_main_win->Refresh (erase, rect); | |
4763 | m_header_win->Refresh (erase, rect); | |
4764 | } | |
4765 | ||
4766 | void wxTreeListCtrl::SetFocus() | |
4767 | { m_main_win->SetFocus(); } | |
4768 | ||
4769 | wxSize wxTreeListCtrl::DoGetBestSize() const | |
4770 | { | |
4771 | // something is better than nothing... | |
4772 | return wxSize (200,200); // but it should be specified values! FIXME | |
4773 | } | |
4774 | ||
4775 | wxString wxTreeListCtrl::OnGetItemText( wxTreeItemData* WXUNUSED(item), long WXUNUSED(column)) const | |
4776 | { | |
4777 | return wxEmptyString; | |
4778 | } |