1 /////////////////////////////////////////////////////////////////////////////
2 // Name: treelistctrl.cpp (derived by treectlg.h)
3 // Purpose: multi column tree control implementation
4 // Author: Robert Roebling
6 // Modified: Alberto Griggio, 2002
7 // 22/10/98 - almost total rewrite, simpler interface (VZ)
9 // Copyright: (c) Robert Roebling, Julian Smart, Alberto Griggio,
10 // Vadim Zeitlin, Otto Wyss
11 // Licence: wxWindows licence
12 /////////////////////////////////////////////////////////////////////////////
14 // ===========================================================================
16 // ===========================================================================
18 // ---------------------------------------------------------------------------
20 // ---------------------------------------------------------------------------
22 #if defined(__GNUG__) && !defined(__APPLE__)
23 #pragma implementation "treelistctrl.h"
26 // For compilers that support precompilation, includes "wx.h".
27 #include "wx/wxprec.h"
34 #include <wx/treebase.h>
36 #include <wx/textctrl.h>
37 #include <wx/imaglist.h>
38 #include <wx/settings.h>
39 #include <wx/dcclient.h>
40 #include <wx/dcscreen.h>
41 #include <wx/scrolwin.h>
43 #include "wx/gizmos/treelistctrl.h"
44 //#include "treelistctrl.h"
49 #include <wx/gtk/win_gtk.h>
52 // ---------------------------------------------------------------------------
54 // ---------------------------------------------------------------------------
58 WX_DEFINE_ARRAY(wxTreeListItem
*, wxArrayTreeListItems
);
60 #include <wx/dynarray.h>
61 WX_DECLARE_OBJARRAY(wxTreeListColumnInfo
, wxArrayTreeListColumnInfo
);
62 #include <wx/arrimpl.cpp>
63 WX_DEFINE_OBJARRAY(wxArrayTreeListColumnInfo
);
65 #if !wxCHECK_VERSION(2, 3, 3)
66 WX_DEFINE_ARRAY(short, wxArrayShort
);
70 // --------------------------------------------------------------------------
72 // --------------------------------------------------------------------------
74 static const int NO_IMAGE
= -1;
76 const int LINEHEIGHT
= 10;
77 const int PIXELS_PER_UNIT
= 10;
78 const int LINEATROOT
= 5;
80 const int MININDENT
= 10;
81 const int BTNWIDTH
= 11;
82 const int BTNHEIGHT
= 11;
84 const wxChar
* wxTreeListCtrlNameStr
= wxT("treelistctrl");
86 static wxTreeListColumnInfo wxInvalidTreeListColumnInfo
;
89 // ---------------------------------------------------------------------------
91 // ---------------------------------------------------------------------------
92 //-----------------------------------------------------------------------------
93 // wxTreeListHeaderWindow (internal)
94 //-----------------------------------------------------------------------------
96 class wxTreeListHeaderWindow
: public wxWindow
99 wxTreeListMainWindow
*m_owner
;
100 wxCursor
*m_currentCursor
;
101 wxCursor
*m_resizeCursor
;
104 // column being resized
107 // divider line position in logical (unscrolled) coords
110 // minimal position beyond which the divider line can't be dragged in
114 wxArrayTreeListColumnInfo m_columns
;
116 // total width of the columns
117 int m_total_col_width
;
121 wxTreeListHeaderWindow();
123 wxTreeListHeaderWindow( wxWindow
*win
,
125 wxTreeListMainWindow
*owner
,
126 const wxPoint
&pos
= wxDefaultPosition
,
127 const wxSize
&size
= wxDefaultSize
,
129 const wxString
&name
= wxT("wxtreelistctrlcolumntitles") );
131 virtual ~wxTreeListHeaderWindow();
133 void DoDrawRect( wxDC
*dc
, int x
, int y
, int w
, int h
);
135 void AdjustDC(wxDC
& dc
);
137 void OnPaint( wxPaintEvent
&event
);
138 void OnMouse( wxMouseEvent
&event
);
139 void OnSetFocus( wxFocusEvent
&event
);
142 // columns manipulation
144 size_t GetColumnCount() const { return m_columns
.GetCount(); }
146 void AddColumn(const wxTreeListColumnInfo
& col
);
148 void InsertColumn(size_t before
, const wxTreeListColumnInfo
& col
);
150 void RemoveColumn(size_t column
);
152 void SetColumn(size_t column
, const wxTreeListColumnInfo
& info
);
153 const wxTreeListColumnInfo
& GetColumn(size_t column
) const
155 wxCHECK_MSG(column
< GetColumnCount(), wxInvalidTreeListColumnInfo
, wxT("Invalid column"));
156 return m_columns
[column
];
158 wxTreeListColumnInfo
& GetColumn(size_t column
)
160 wxCHECK_MSG(column
< GetColumnCount(), wxInvalidTreeListColumnInfo
, wxT("Invalid column"));
161 return m_columns
[column
];
164 void SetColumnWidth(size_t column
, size_t width
);
166 void SetColumnText(size_t column
, const wxString
& text
)
168 wxCHECK_RET(column
< GetColumnCount(), wxT("Invalid column"));
169 m_columns
[column
].SetText(text
);
172 void SetColumnShown(size_t column
, bool shown
)
174 wxCHECK_RET(column
< GetColumnCount(), wxT("Invalid column"));
175 m_columns
[column
].SetShown(shown
);
178 wxString
GetColumnText(size_t column
) const
180 wxCHECK_MSG(column
< GetColumnCount(), wxEmptyString
, wxT("Invalid column"));
181 return m_columns
[column
].GetText();
184 int GetColumnWidth(size_t column
) const
186 wxCHECK_MSG(column
< GetColumnCount(), -1, wxT("Invalid column"));
187 return m_columns
[column
].GetWidth();
190 int GetWidth() const { return m_total_col_width
; }
192 int GetColumnShown(size_t column
) const
194 wxCHECK_MSG(column
< GetColumnCount(), -1, wxT("Invalid column"));
195 return m_columns
[column
].GetShown();
202 // common part of all ctors
205 void SendListEvent(wxEventType type
, wxPoint pos
);
207 DECLARE_DYNAMIC_CLASS(wxTreeListHeaderWindow
)
208 DECLARE_EVENT_TABLE()
212 // this is the "true" control
213 class wxTreeListMainWindow
: public wxScrolledWindow
218 wxTreeListMainWindow() { Init(); }
220 wxTreeListMainWindow(wxTreeListCtrl
*parent
, wxWindowID id
= -1,
221 const wxPoint
& pos
= wxDefaultPosition
,
222 const wxSize
& size
= wxDefaultSize
,
223 long style
= wxTR_DEFAULT_STYLE
,
224 const wxValidator
&validator
= wxDefaultValidator
,
225 const wxString
& name
= wxT("wxtreelistmainwindow"))
228 Create(parent
, id
, pos
, size
, style
, validator
, name
);
231 virtual ~wxTreeListMainWindow();
233 bool Create(wxTreeListCtrl
*parent
, wxWindowID id
= -1,
234 const wxPoint
& pos
= wxDefaultPosition
,
235 const wxSize
& size
= wxDefaultSize
,
236 long style
= wxTR_DEFAULT_STYLE
,
237 const wxValidator
&validator
= wxDefaultValidator
,
238 const wxString
& name
= wxT("wxtreelistctrl"));
243 // get the total number of items in the control
244 size_t GetCount() const;
246 // indent is the number of pixels the children are indented relative to
247 // the parents position. SetIndent() also redraws the control
249 unsigned int GetIndent() const { return m_indent
; }
250 void SetIndent(unsigned int indent
);
252 // see wxTreeListCtrl for the meaning
253 unsigned int GetLineSpacing() const { return m_linespacing
; }
254 void SetLineSpacing(unsigned int spacing
);
256 // image list: these functions allow to associate an image list with
257 // the control and retrieve it. Note that when assigned with
258 // SetImageList, the control does _not_ delete
259 // the associated image list when it's deleted in order to allow image
260 // lists to be shared between different controls. If you use
261 // AssignImageList, the control _does_ delete the image list.
263 // The normal image list is for the icons which correspond to the
264 // normal tree item state (whether it is selected or not).
265 // Additionally, the application might choose to show a state icon
266 // which corresponds to an app-defined item state (for example,
267 // checked/unchecked) which are taken from the state image list.
268 wxImageList
*GetImageList() const;
269 wxImageList
*GetStateImageList() const;
270 wxImageList
*GetButtonsImageList() const;
272 void SetImageList(wxImageList
*imageList
);
273 void SetStateImageList(wxImageList
*imageList
);
274 void SetButtonsImageList(wxImageList
*imageList
);
275 void AssignImageList(wxImageList
*imageList
);
276 void AssignStateImageList(wxImageList
*imageList
);
277 void AssignButtonsImageList(wxImageList
*imageList
);
279 // Functions to work with tree ctrl items.
284 // retrieve item's label
285 wxString
GetItemText(const wxTreeItemId
& item
) const
286 { return GetItemText(item
, GetMainColumn()); }
287 // get one of the images associated with the item (normal by default)
288 int GetItemImage(const wxTreeItemId
& item
,
289 wxTreeItemIcon which
= wxTreeItemIcon_Normal
) const
290 { return GetItemImage(item
, GetMainColumn(), which
); }
292 // get the data associated with the item
293 wxTreeItemData
*GetItemData(const wxTreeItemId
& item
) const;
295 bool GetItemBold(const wxTreeItemId
& item
) const;
296 wxColour
GetItemTextColour(const wxTreeItemId
& item
) const;
297 wxColour
GetItemBackgroundColour(const wxTreeItemId
& item
) const;
298 wxFont
GetItemFont(const wxTreeItemId
& item
) const;
304 void SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
305 { SetItemText(item
, GetMainColumn(), text
); }
307 // get one of the images associated with the item (normal by default)
308 void SetItemImage(const wxTreeItemId
& item
, int image
,
309 wxTreeItemIcon which
= wxTreeItemIcon_Normal
)
310 { SetItemImage(item
, GetMainColumn(), image
, which
); }
312 // associate some data with the item
313 void SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
);
315 // force appearance of [+] button near the item. This is useful to
316 // allow the user to expand the items which don't have any children now
317 // - but instead add them only when needed, thus minimizing memory
318 // usage and loading time.
319 void SetItemHasChildren(const wxTreeItemId
& item
, bool has
= TRUE
);
321 // the item will be shown in bold
322 void SetItemBold(const wxTreeItemId
& item
, bool bold
= TRUE
);
324 // set the item's text colour
325 void SetItemTextColour(const wxTreeItemId
& item
, const wxColour
& colour
);
327 // set the item's background colour
328 void SetItemBackgroundColour(const wxTreeItemId
& item
, const wxColour
& colour
);
330 // set the item's font (should be of the same height for all items)
331 void SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
);
333 // set the window font
334 virtual bool SetFont( const wxFont
&font
);
336 // set the styles. No need to specify a GetWindowStyle here since
337 // the base wxWindow member function will do it for us
338 void SetWindowStyle(const long styles
);
340 // item status inquiries
341 // ---------------------
343 // is the item visible (it might be outside the view or not expanded)?
344 bool IsVisible(const wxTreeItemId
& item
) const;
345 // does the item has any children?
346 bool HasChildren(const wxTreeItemId
& item
) const
347 { return ItemHasChildren(item
); }
348 bool ItemHasChildren(const wxTreeItemId
& item
) const;
349 // is the item expanded (only makes sense if HasChildren())?
350 bool IsExpanded(const wxTreeItemId
& item
) const;
351 // is this item currently selected (the same as has focus)?
352 bool IsSelected(const wxTreeItemId
& item
) const;
353 // is item text in bold font?
354 bool IsBold(const wxTreeItemId
& item
) const;
355 // does the layout include space for a button?
357 // number of children
358 // ------------------
360 // if 'recursively' is FALSE, only immediate children count, otherwise
361 // the returned number is the number of all items in this branch
362 size_t GetChildrenCount(const wxTreeItemId
& item
, bool recursively
= TRUE
);
367 // wxTreeItemId.IsOk() will return FALSE if there is no such item
369 // get the root tree item
370 wxTreeItemId
GetRootItem() const { return m_anchor
; }
372 // get the item currently selected (may return NULL if no selection)
373 wxTreeItemId
GetSelection() const { return m_current
; }
375 // get the items currently selected, return the number of such item
376 size_t GetSelections(wxArrayTreeItemIds
&) const;
378 // get the parent of this item (may return NULL if root)
379 wxTreeItemId
GetItemParent(const wxTreeItemId
& item
) const;
381 // for this enumeration function you must pass in a "cookie" parameter
382 // which is opaque for the application but is necessary for the library
383 // to make these functions reentrant (i.e. allow more than one
384 // enumeration on one and the same object simultaneously). Of course,
385 // the "cookie" passed to GetFirstChild() and GetNextChild() should be
388 // get the first child of this item
389 wxTreeItemId
GetFirstChild(const wxTreeItemId
& item
, long& cookie
) const;
390 // get the next child
391 wxTreeItemId
GetNextChild(const wxTreeItemId
& item
, long& cookie
) const;
392 // get the last child of this item - this method doesn't use cookies
393 wxTreeItemId
GetLastChild(const wxTreeItemId
& item
) const;
395 // get the next sibling of this item
396 wxTreeItemId
GetNextSibling(const wxTreeItemId
& item
) const;
397 // get the previous sibling
398 wxTreeItemId
GetPrevSibling(const wxTreeItemId
& item
) const;
400 // get first visible item
401 wxTreeItemId
GetFirstVisibleItem() const;
402 // get the next visible item: item must be visible itself!
403 // see IsVisible() and wxTreeCtrl::GetFirstVisibleItem()
404 wxTreeItemId
GetNextVisible(const wxTreeItemId
& item
) const;
405 // get the previous visible item: item must be visible itself!
406 wxTreeItemId
GetPrevVisible(const wxTreeItemId
& item
) const;
408 // Only for internal use right now, but should probably be public
409 wxTreeItemId
GetNext(const wxTreeItemId
& item
) const;
414 // add the root node to the tree
415 wxTreeItemId
AddRoot(const wxString
& text
,
416 int image
= -1, int selectedImage
= -1,
417 wxTreeItemData
*data
= NULL
);
419 // insert a new item in as the first child of the parent
420 wxTreeItemId
PrependItem(const wxTreeItemId
& parent
,
421 const wxString
& text
,
422 int image
= -1, int selectedImage
= -1,
423 wxTreeItemData
*data
= NULL
);
425 // insert a new item after a given one
426 wxTreeItemId
InsertItem(const wxTreeItemId
& parent
,
427 const wxTreeItemId
& idPrevious
,
428 const wxString
& text
,
429 int image
= -1, int selectedImage
= -1,
430 wxTreeItemData
*data
= NULL
);
432 // insert a new item before the one with the given index
433 wxTreeItemId
InsertItem(const wxTreeItemId
& parent
,
435 const wxString
& text
,
436 int image
= -1, int selectedImage
= -1,
437 wxTreeItemData
*data
= NULL
);
439 // insert a new item in as the last child of the parent
440 wxTreeItemId
AppendItem(const wxTreeItemId
& parent
,
441 const wxString
& text
,
442 int image
= -1, int selectedImage
= -1,
443 wxTreeItemData
*data
= NULL
);
445 // delete this item and associated data if any
446 void Delete(const wxTreeItemId
& item
);
447 // delete all children (but don't delete the item itself)
448 // NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events
449 void DeleteChildren(const wxTreeItemId
& item
);
450 // delete all items from the tree
451 // NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events
452 void DeleteAllItems();
455 void Expand(const wxTreeItemId
& item
);
456 // expand this item and all subitems recursively
457 void ExpandAll(const wxTreeItemId
& item
);
458 // collapse the item without removing its children
459 void Collapse(const wxTreeItemId
& item
);
460 // collapse the item and remove all children
461 void CollapseAndReset(const wxTreeItemId
& item
);
462 // toggles the current state
463 void Toggle(const wxTreeItemId
& item
);
465 // remove the selection from currently selected item (if any)
469 void SelectItem(const wxTreeItemId
& item
, bool unselect_others
=TRUE
,
470 bool extended_select
=FALSE
);
471 // make sure this item is visible (expanding the parent item and/or
472 // scrolling to this item if necessary)
473 void EnsureVisible(const wxTreeItemId
& item
);
474 // scroll to this item (but don't expand its parent)
475 void ScrollTo(const wxTreeItemId
& item
);
476 void AdjustMyScrollbars();
478 // The first function is more portable (because easier to implement
479 // on other platforms), but the second one returns some extra info.
480 wxTreeItemId
HitTest(const wxPoint
& point
)
481 { int dummy
; return HitTest(point
, dummy
); }
482 wxTreeItemId
HitTest(const wxPoint
& point
, int& flags
)
483 { int col
; return HitTest(point
, flags
, col
); }
485 wxTreeItemId
HitTest(const wxPoint
& point
, int& flags
, int& column
);
488 // get the bounding rectangle of the item (or of its label only)
489 bool GetBoundingRect(const wxTreeItemId
& item
,
491 bool textOnly
= FALSE
) const;
493 // Start editing the item label: this (temporarily) replaces the item
494 // with a one line edit control. The item will be selected if it hadn't
496 void EditLabel( const wxTreeItemId
& item
) { Edit( item
); }
497 void Edit( const wxTreeItemId
& item
);
500 // this function is called to compare 2 items and should return -1, 0
501 // or +1 if the first item is less than, equal to or greater than the
502 // second one. The base class version performs alphabetic comparaison
503 // of item labels (GetText)
504 virtual int OnCompareItems(const wxTreeItemId
& item1
,
505 const wxTreeItemId
& item2
);
506 // sort the children of this item using OnCompareItems
508 // NB: this function is not reentrant and not MT-safe (FIXME)!
509 void SortChildren(const wxTreeItemId
& item
);
511 // deprecated functions: use Set/GetItemImage directly
512 // get the selected item image
513 int GetItemSelectedImage(const wxTreeItemId
& item
) const
514 { return GetItemImage(item
, wxTreeItemIcon_Selected
); }
515 // set the selected item image
516 void SetItemSelectedImage(const wxTreeItemId
& item
, int image
)
517 { SetItemImage(item
, image
, wxTreeItemIcon_Selected
); }
519 // implementation only from now on
521 // overridden base class virtuals
522 virtual bool SetBackgroundColour(const wxColour
& colour
);
523 virtual bool SetForegroundColour(const wxColour
& colour
);
526 void OnPaint( wxPaintEvent
&event
);
527 void OnSetFocus( wxFocusEvent
&event
);
528 void OnKillFocus( wxFocusEvent
&event
);
529 void OnChar( wxKeyEvent
&event
);
530 void OnMouse( wxMouseEvent
&event
);
531 void OnIdle( wxIdleEvent
&event
);
532 void OnSize(wxSizeEvent
& event
); // ALB
533 void OnScroll(wxScrollWinEvent
& event
); // ALB
535 // implementation helpers
536 void SendDeleteEvent(wxTreeListItem
*itemBeingDeleted
);
538 void DrawBorder(const wxTreeItemId
& item
);
539 void DrawLine(const wxTreeItemId
& item
, bool below
);
541 size_t GetColumnCount() const
542 { return m_owner
->GetHeaderWindow()->GetColumnCount(); }
544 void SetMainColumn(size_t column
)
546 if(column
< GetColumnCount())
547 m_main_column
= column
;
549 size_t GetMainColumn() const { return m_main_column
; }
551 void SetItemText(const wxTreeItemId
& item
, size_t column
,
552 const wxString
& text
);
553 wxString
GetItemText(const wxTreeItemId
& item
, size_t column
) const;
555 void SetItemImage(const wxTreeItemId
& item
, size_t column
, int image
,
556 wxTreeItemIcon which
= wxTreeItemIcon_Normal
);
557 int GetItemImage(const wxTreeItemId
& item
, size_t column
,
558 wxTreeItemIcon which
= wxTreeItemIcon_Normal
) const;
560 wxTreeListCtrl
* m_owner
; // ALB
562 size_t m_main_column
; // ALB
564 friend class wxTreeListItem
;
565 friend class wxTreeListRenameTimer
;
566 friend class wxTreeListTextCtrl
;
571 wxTreeListItem
*m_anchor
;
572 wxTreeListItem
*m_current
, *m_key_current
, *m_currentEdit
;
573 int m_btnWidth
, m_btnWidth2
;
574 int m_btnHeight
, m_btnHeight2
;
575 int m_imgWidth
, m_imgWidth2
;
576 int m_imgHeight
, m_imgHeight2
;
577 unsigned short m_indent
;
579 unsigned short m_linespacing
;
581 wxBrush
*m_hilightBrush
,
582 *m_hilightUnfocusedBrush
;
587 bool m_ownsImageListNormal
,
588 m_ownsImageListState
,
589 m_ownsImageListButtons
;
590 bool m_isDragging
; // true between BEGIN/END drag events
592 bool m_lastOnSame
; // last click on the same item as prev
593 wxImageList
*m_imageListNormal
,
599 wxTreeListItem
*m_dropTarget
;
600 wxCursor m_oldCursor
; // cursor is changed while dragging
601 wxTreeListItem
*m_oldSelection
;
603 wxTimer
*m_renameTimer
;
604 wxString m_renameRes
;
606 // the common part of all ctors
610 wxTreeItemId
DoInsertItem(const wxTreeItemId
& parent
,
612 const wxString
& text
,
613 int image
, int selectedImage
,
614 wxTreeItemData
*data
);
615 bool HasButtons(void) const
616 { return (m_imageListButtons
!= NULL
) ||
617 HasFlag (wxTR_TWIST_BUTTONS
|wxTR_HAS_BUTTONS
); }
620 void CalculateLineHeight();
621 int GetLineHeight(wxTreeListItem
*item
) const;
622 void PaintLevel( wxTreeListItem
*item
, wxDC
& dc
, int level
, int &y
,
624 void PaintItem( wxTreeListItem
*item
, wxDC
& dc
);
626 void CalculateLevel( wxTreeListItem
*item
, wxDC
&dc
, int level
, int &y
,
628 void CalculatePositions();
629 void CalculateSize( wxTreeListItem
*item
, wxDC
&dc
);
631 void RefreshSubtree( wxTreeListItem
*item
);
632 void RefreshLine( wxTreeListItem
*item
);
634 // redraw all selected items
635 void RefreshSelected();
637 // RefreshSelected() recursive helper
638 void RefreshSelectedUnder(wxTreeListItem
*item
);
640 void OnRenameTimer();
641 void OnRenameAccept();
643 void FillArray(wxTreeListItem
*, wxArrayTreeItemIds
&) const;
644 void SelectItemRange( wxTreeListItem
*item1
, wxTreeListItem
*item2
);
645 bool TagAllChildrenUntilLast(wxTreeListItem
*crt_item
,
646 wxTreeListItem
*last_item
, bool select
);
647 bool TagNextChildren(wxTreeListItem
*crt_item
, wxTreeListItem
*last_item
,
649 void UnselectAllChildren( wxTreeListItem
*item
);
651 void DrawDropEffect(wxTreeListItem
*item
);
654 DECLARE_EVENT_TABLE()
655 DECLARE_DYNAMIC_CLASS(wxTreeListMainWindow
)
659 // timer used for enabling in-place edit
660 class wxTreeListRenameTimer
: public wxTimer
663 wxTreeListRenameTimer( wxTreeListMainWindow
*owner
);
668 wxTreeListMainWindow
*m_owner
;
671 // control used for in-place edit
672 class wxTreeListTextCtrl
: public wxTextCtrl
675 wxTreeListTextCtrl( wxWindow
*parent
,
679 wxTreeListMainWindow
*owner
,
680 const wxString
&value
= wxEmptyString
,
681 const wxPoint
&pos
= wxDefaultPosition
,
682 const wxSize
&size
= wxDefaultSize
,
683 int style
= wxSIMPLE_BORDER
,
684 const wxValidator
& validator
= wxDefaultValidator
,
685 const wxString
&name
= wxTextCtrlNameStr
);
687 void OnChar( wxKeyEvent
&event
);
688 void OnKeyUp( wxKeyEvent
&event
);
689 void OnKillFocus( wxFocusEvent
&event
);
694 wxTreeListMainWindow
*m_owner
;
695 wxString m_startValue
;
698 DECLARE_EVENT_TABLE()
706 wxTreeListItem() { m_data
= NULL
; }
707 wxTreeListItem( wxTreeListMainWindow
*owner
,
708 wxTreeListItem
*parent
,
709 const wxArrayString
& text
,
712 wxTreeItemData
*data
);
717 wxArrayTreeListItems
& GetChildren() { return m_children
; }
719 const wxString
GetText() const
721 if(m_text
.GetCount() > 0) return m_text
[0];
722 return wxEmptyString
;
724 const wxString
GetText(size_t col
) const
726 if(m_text
.GetCount() > col
) return m_text
[col
];
727 return wxEmptyString
;
729 int GetImage(wxTreeItemIcon which
= wxTreeItemIcon_Normal
) const
730 { return m_images
[which
]; }
731 int GetImage(size_t col
, wxTreeItemIcon which
=wxTreeItemIcon_Normal
) const
733 if(col
== m_owner
->GetMainColumn()) return m_images
[which
];
734 if(col
< m_col_images
.GetCount()) return m_col_images
[col
];
737 wxTreeItemData
*GetData() const { return m_data
; }
739 // returns the current image for the item (depending on its
740 // selected/expanded/whatever state)
741 int GetCurrentImage() const;
743 void SetText( const wxString
&text
);
744 void SetText(size_t col
, const wxString
& text
) // ALB
746 if(col
< m_text
.GetCount())
748 else if(col
< m_owner
->GetColumnCount()) {
749 int howmany
= m_owner
->GetColumnCount();
750 for(int i
= m_text
.GetCount(); i
< howmany
; ++i
)
751 m_text
.Add(wxEmptyString
);
755 void SetImage(int image
, wxTreeItemIcon which
) { m_images
[which
] = image
; }
756 void SetImage(size_t col
, int image
, wxTreeItemIcon which
)
758 if(col
== m_owner
->GetMainColumn()) m_images
[which
] = image
;
759 else if(col
< m_col_images
.GetCount())
760 m_col_images
[col
] = image
;
761 else if(col
< m_owner
->GetColumnCount()) {
762 int howmany
= m_owner
->GetColumnCount();
763 for(int i
= m_col_images
.GetCount(); i
< howmany
; ++i
)
764 m_col_images
.Add(NO_IMAGE
);
765 m_col_images
[col
] = image
;
769 void SetData(wxTreeItemData
*data
) { m_data
= data
; }
771 void SetHasPlus(bool has
= TRUE
) { m_hasPlus
= has
; }
773 void SetBold(bool bold
) { m_isBold
= bold
; }
775 int GetX() const { return m_x
; }
776 int GetY() const { return m_y
; }
778 void SetX(int x
) { m_x
= x
; }
779 void SetY(int y
) { m_y
= y
; }
781 int GetHeight() const { return m_height
; }
782 int GetWidth() const { return m_width
; }
784 void SetHeight(int h
) { m_height
= h
; }
785 void SetWidth(int w
) { m_width
= w
; }
787 wxTreeListItem
*GetItemParent() const { return m_parent
; }
790 // deletes all children notifying the treectrl about it if !NULL
792 void DeleteChildren(wxTreeListMainWindow
*tree
= NULL
);
794 // get count of all children (and grand children if 'recursively')
795 size_t GetChildrenCount(bool recursively
= TRUE
) const;
797 void Insert(wxTreeListItem
*child
, size_t index
)
798 { m_children
.Insert(child
, index
); }
800 void GetSize( int &x
, int &y
, const wxTreeListMainWindow
* );
802 // return the item at given position (or NULL if no item), onButton is
803 // TRUE if the point belongs to the item's button, otherwise it lies
804 // on the button's label
805 wxTreeListItem
*HitTest( const wxPoint
& point
,
806 const wxTreeListMainWindow
*,
809 wxTreeListItem
*HitTest( const wxPoint
& point
,
810 const wxTreeListMainWindow
*,
811 int &flags
, int& column
/*ALB*/,
814 void Expand() { m_isCollapsed
= FALSE
; }
815 void Collapse() { m_isCollapsed
= TRUE
; }
817 void SetHilight( bool set
= TRUE
) { m_hasHilight
= set
; }
820 bool HasChildren() const { return !m_children
.IsEmpty(); }
821 bool IsSelected() const { return m_hasHilight
!= 0; }
822 bool IsExpanded() const { return !m_isCollapsed
; }
823 bool HasPlus() const { return m_hasPlus
|| HasChildren(); }
824 bool IsBold() const { return m_isBold
!= 0; }
827 // get them - may be NULL
828 wxTreeItemAttr
*GetAttributes() const { return m_attr
; }
829 // get them ensuring that the pointer is not NULL
830 wxTreeItemAttr
& Attr()
834 m_attr
= new wxTreeItemAttr
;
840 void SetAttributes(wxTreeItemAttr
*attr
)
842 if ( m_ownsAttr
) delete m_attr
;
846 // set them and delete when done
847 void AssignAttributes(wxTreeItemAttr
*attr
)
854 wxTreeListMainWindow
*m_owner
; // control the item belongs to
856 // since there can be very many of these, we save size by chosing
857 // the smallest representation for the elements and by ordering
858 // the members to avoid padding.
859 wxArrayString m_text
; // labels to be rendered for item
861 wxTreeItemData
*m_data
; // user-provided data
863 wxArrayTreeListItems m_children
; // list of children
864 wxTreeListItem
*m_parent
; // parent of this item
866 wxTreeItemAttr
*m_attr
; // attributes???
868 // tree ctrl images for the normal, selected, expanded and
869 // expanded+selected states
870 short m_images
[wxTreeItemIcon_Max
];
871 wxArrayShort m_col_images
; // images for the various columns (!= main)
873 wxCoord m_x
; // (virtual) offset from top
874 wxCoord m_y
; // (virtual) offset from left
875 short m_width
; // width of this item
876 unsigned char m_height
; // height of this item
878 // use bitfields to save size
879 int m_isCollapsed
:1;
880 int m_hasHilight
:1; // same as focused
881 int m_hasPlus
:1; // used for item which doesn't have
882 // children but has a [+] button
883 int m_isBold
:1; // render the label in bold font
884 int m_ownsAttr
:1; // delete attribute when done
887 // ===========================================================================
889 // ===========================================================================
891 // ----------------------------------------------------------------------------
893 // ----------------------------------------------------------------------------
895 // translate the key or mouse event flags to the type of selection we're
897 static void EventFlagsToSelType(long style
,
901 bool &extended_select
,
902 bool &unselect_others
)
904 is_multiple
= (style
& wxTR_MULTIPLE
) != 0;
905 extended_select
= shiftDown
&& is_multiple
;
906 unselect_others
= !(extended_select
|| (ctrlDown
&& is_multiple
));
909 // ---------------------------------------------------------------------------
910 // wxTreeListRenameTimer (internal)
911 // ---------------------------------------------------------------------------
913 wxTreeListRenameTimer::wxTreeListRenameTimer( wxTreeListMainWindow
*owner
)
918 void wxTreeListRenameTimer::Notify()
920 m_owner
->OnRenameTimer();
923 //-----------------------------------------------------------------------------
924 // wxTreeListTextCtrl (internal)
925 //-----------------------------------------------------------------------------
927 BEGIN_EVENT_TABLE(wxTreeListTextCtrl
,wxTextCtrl
)
928 EVT_CHAR (wxTreeListTextCtrl::OnChar
)
929 EVT_KEY_UP (wxTreeListTextCtrl::OnKeyUp
)
930 EVT_KILL_FOCUS (wxTreeListTextCtrl::OnKillFocus
)
933 wxTreeListTextCtrl::wxTreeListTextCtrl( wxWindow
*parent
,
937 wxTreeListMainWindow
*owner
,
938 const wxString
&value
,
942 const wxValidator
& validator
,
943 const wxString
&name
)
944 : wxTextCtrl( parent
, id
, value
, pos
, size
, style
, validator
, name
)
950 (*m_res
) = wxEmptyString
;
951 m_startValue
= value
;
955 void wxTreeListTextCtrl::OnChar( wxKeyEvent
&event
)
957 if (event
.m_keyCode
== WXK_RETURN
)
960 (*m_res
) = GetValue();
962 if ((*m_res
) != m_startValue
)
963 m_owner
->OnRenameAccept();
965 if (!wxPendingDelete
.Member(this))
966 wxPendingDelete
.Append(this);
969 m_owner
->SetFocus(); // This doesn't work. TODO.
973 if (event
.m_keyCode
== WXK_ESCAPE
)
976 (*m_res
) = wxEmptyString
;
978 if (!wxPendingDelete
.Member(this))
979 wxPendingDelete
.Append(this);
982 m_owner
->SetFocus(); // This doesn't work. TODO.
989 void wxTreeListTextCtrl::OnKeyUp( wxKeyEvent
&event
)
997 // auto-grow the textctrl:
998 wxSize parentSize
= m_owner
->GetSize();
999 wxPoint myPos
= GetPosition();
1000 wxSize mySize
= GetSize();
1002 GetTextExtent(GetValue() + _T("M"), &sx
, &sy
);
1003 if (myPos
.x
+ sx
> parentSize
.x
) sx
= parentSize
.x
- myPos
.x
;
1004 if (mySize
.x
> sx
) sx
= mySize
.x
;
1010 void wxTreeListTextCtrl::OnKillFocus( wxFocusEvent
&event
)
1018 if (!wxPendingDelete
.Member(this))
1019 wxPendingDelete
.Append(this);
1022 (*m_res
) = GetValue();
1024 if ((*m_res
) != m_startValue
)
1025 m_owner
->OnRenameAccept();
1028 //-----------------------------------------------------------------------------
1029 // wxTreeListHeaderWindow
1030 //-----------------------------------------------------------------------------
1032 IMPLEMENT_DYNAMIC_CLASS(wxTreeListHeaderWindow
,wxWindow
);
1034 BEGIN_EVENT_TABLE(wxTreeListHeaderWindow
,wxWindow
)
1035 EVT_PAINT (wxTreeListHeaderWindow::OnPaint
)
1036 EVT_MOUSE_EVENTS (wxTreeListHeaderWindow::OnMouse
)
1037 EVT_SET_FOCUS (wxTreeListHeaderWindow::OnSetFocus
)
1040 void wxTreeListHeaderWindow::Init()
1042 m_currentCursor
= (wxCursor
*) NULL
;
1043 m_isDragging
= FALSE
;
1045 m_total_col_width
= 0;
1048 wxTreeListHeaderWindow::wxTreeListHeaderWindow()
1052 m_owner
= (wxTreeListMainWindow
*) NULL
;
1053 m_resizeCursor
= (wxCursor
*) NULL
;
1056 wxTreeListHeaderWindow::wxTreeListHeaderWindow( wxWindow
*win
,
1058 wxTreeListMainWindow
*owner
,
1062 const wxString
&name
)
1063 : wxWindow( win
, id
, pos
, size
, style
, name
)
1068 m_resizeCursor
= new wxCursor(wxCURSOR_SIZEWE
);
1070 SetBackgroundColour(wxSystemSettings::GetSystemColour(
1071 wxSYS_COLOUR_BTNFACE
));
1074 wxTreeListHeaderWindow::~wxTreeListHeaderWindow()
1076 delete m_resizeCursor
;
1079 void wxTreeListHeaderWindow::DoDrawRect( wxDC
*dc
, int x
, int y
, int w
, int h
)
1082 GtkStateType state
= m_parent
->IsEnabled() ? GTK_STATE_NORMAL
1083 : GTK_STATE_INSENSITIVE
;
1085 x
= dc
->XLOG2DEV( x
);
1087 gtk_paint_box (m_wxwindow
->style
, GTK_PIZZA(m_wxwindow
)->bin_window
,
1088 state
, GTK_SHADOW_OUT
,
1089 (GdkRectangle
*) NULL
, m_wxwindow
, "button",
1090 x
-1, y
-1, w
+2, h
+2);
1091 #elif defined( __WXMAC__ )
1092 const int m_corner
= 1;
1094 dc
->SetBrush( *wxTRANSPARENT_BRUSH
);
1096 dc
->SetPen( wxPen(wxSystemSettings::GetSystemColour(
1097 wxSYS_COLOUR_BTNSHADOW
), 1, wxSOLID
));
1098 dc
->DrawLine( x
+w
-m_corner
+1, y
, x
+w
, y
+h
); // right (outer)
1099 dc
->DrawRectangle( x
, y
+h
, w
+1, 1 ); // bottom (outer)
1101 wxPen
pen( wxColour( 0x88 , 0x88 , 0x88 ), 1, wxSOLID
);
1104 dc
->DrawLine( x
+w
-m_corner
, y
, x
+w
-1, y
+h
); // right (inner)
1105 dc
->DrawRectangle( x
+1, y
+h
-1, w
-2, 1 ); // bottom (inner)
1107 dc
->SetPen( *wxWHITE_PEN
);
1108 dc
->DrawRectangle( x
, y
, w
-m_corner
+1, 1 ); // top (outer)
1109 dc
->DrawRectangle( x
, y
, 1, h
); // left (outer)
1110 dc
->DrawLine( x
, y
+h
-1, x
+1, y
+h
-1 );
1111 dc
->DrawLine( x
+w
-1, y
, x
+w
-1, y
+1 );
1113 const int m_corner
= 1;
1115 dc
->SetBrush( *wxTRANSPARENT_BRUSH
);
1117 dc
->SetPen( *wxBLACK_PEN
);
1118 dc
->DrawLine( x
+w
-m_corner
+1, y
, x
+w
, y
+h
); // right (outer)
1119 dc
->DrawRectangle( x
, y
+h
, w
+1, 1 ); // bottom (outer)
1121 wxPen
pen(wxSystemSettings::GetSystemColour(
1122 wxSYS_COLOUR_BTNSHADOW
), 1, wxSOLID
);
1125 dc
->DrawLine( x
+w
-m_corner
, y
, x
+w
-1, y
+h
); // right (inner)
1126 dc
->DrawRectangle( x
+1, y
+h
-1, w
-2, 1 ); // bottom (inner)
1128 dc
->SetPen( *wxWHITE_PEN
);
1129 dc
->DrawRectangle( x
, y
, w
-m_corner
+1, 1 ); // top (outer)
1130 dc
->DrawRectangle( x
, y
, 1, h
); // left (outer)
1131 dc
->DrawLine( x
, y
+h
-1, x
+1, y
+h
-1 );
1132 dc
->DrawLine( x
+w
-1, y
, x
+w
-1, y
+1 );
1136 // shift the DC origin to match the position of the main window horz
1137 // scrollbar: this allows us to always use logical coords
1138 void wxTreeListHeaderWindow::AdjustDC(wxDC
& dc
)
1141 m_owner
->GetScrollPixelsPerUnit( &xpix
, NULL
);
1144 m_owner
->GetViewStart( &x
, NULL
);
1146 // account for the horz scrollbar offset
1147 dc
.SetDeviceOrigin( -x
* xpix
, 0 );
1150 void wxTreeListHeaderWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1152 static const int HEADER_OFFSET_X
= 1, HEADER_OFFSET_Y
= 1;
1154 wxClientDC
dc( this );
1156 wxPaintDC
dc( this );
1164 dc
.SetFont( GetFont() );
1166 // width and height of the entire header window
1168 GetClientSize( &w
, &h
);
1169 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1171 dc
.SetBackgroundMode(wxTRANSPARENT
);
1173 // do *not* use the listctrl colour for headers - one day we will have a
1174 // function to set it separately
1175 //dc.SetTextForeground( *wxBLACK );
1176 dc
.SetTextForeground(wxSystemSettings::
1177 GetSystemColour( wxSYS_COLOUR_WINDOWTEXT
));
1179 int x
= HEADER_OFFSET_X
;
1181 int numColumns
= GetColumnCount();
1182 for ( int i
= 0; i
< numColumns
&& x
< w
; i
++ )
1184 wxTreeListColumnInfo
& column
= GetColumn(i
);
1185 int wCol
= column
.GetWidth();
1187 // the width of the rect to draw: make it smaller to fit entirely
1188 // inside the column rect
1191 dc
.SetPen( *wxWHITE_PEN
);
1193 DoDrawRect( &dc
, x
, HEADER_OFFSET_Y
, cw
, h
-2 );
1195 // if we have an image, draw it on the right of the label
1196 int image
= column
.GetImage(); //item.m_image;
1197 int ix
= -2, iy
= 0;
1198 wxImageList
* imageList
= m_owner
->GetImageList();
1201 imageList
->GetSize(image
, ix
, iy
);
1203 //else: ignore the column image
1206 // extra margins around the text label
1207 static const int EXTRA_WIDTH
= 3;
1208 static const int EXTRA_HEIGHT
= 4;
1212 int image_offset
= cw
- ix
- 1;
1214 switch(column
.GetAlignment()) {
1215 case wxTL_ALIGN_LEFT
:
1216 text_x
+= EXTRA_WIDTH
;
1219 case wxTL_ALIGN_RIGHT
:
1220 dc
.GetTextExtent(column
.GetText(), &text_width
, NULL
);
1221 text_x
+= cw
- text_width
- EXTRA_WIDTH
;
1224 case wxTL_ALIGN_CENTER
:
1225 dc
.GetTextExtent(column
.GetText(), &text_width
, NULL
);
1226 text_x
+= (cw
- text_width
)/2 + ix
+ 2;
1227 image_offset
= (cw
- text_width
- ix
- 2)/2;
1232 if(image
!= -1 && imageList
) {
1233 imageList
->Draw(image
, dc
, x
+ image_offset
/*cw - ix - 1*/,
1234 HEADER_OFFSET_Y
+ (h
- 4 - iy
)/2,
1235 wxIMAGELIST_DRAW_TRANSPARENT
);
1238 // draw the text clipping it so that it doesn't overwrite the column
1240 wxDCClipper
clipper(dc
, x
, HEADER_OFFSET_Y
, cw
, h
- 4 );
1242 dc
.DrawText( column
.GetText(),
1243 text_x
, HEADER_OFFSET_Y
+ EXTRA_HEIGHT
);
1248 int more_w
= m_owner
->GetSize().x
- x
;
1251 DoDrawRect( &dc
, x
, HEADER_OFFSET_Y
, more_w
, h
-2 );
1258 void wxTreeListHeaderWindow::DrawCurrent()
1260 int x1
= m_currentX
;
1262 ClientToScreen( &x1
, &y1
);
1264 int x2
= m_currentX
-1;
1269 m_owner
->GetClientSize( NULL
, &y2
);
1270 m_owner
->ClientToScreen( &x2
, &y2
);
1273 dc
.SetLogicalFunction( wxINVERT
);
1274 dc
.SetPen( wxPen( *wxBLACK
, 2, wxSOLID
) );
1275 dc
.SetBrush( *wxTRANSPARENT_BRUSH
);
1279 dc
.DrawLine( x1
, y1
, x2
, y2
);
1281 dc
.SetLogicalFunction( wxCOPY
);
1283 dc
.SetPen( wxNullPen
);
1284 dc
.SetBrush( wxNullBrush
);
1287 void wxTreeListHeaderWindow::OnMouse( wxMouseEvent
&event
)
1289 // we want to work with logical coords
1291 m_owner
->CalcUnscrolledPosition(event
.GetX(), 0, &x
, NULL
);
1292 int y
= event
.GetY();
1296 SendListEvent(wxEVT_COMMAND_LIST_COL_DRAGGING
,
1297 event
.GetPosition());
1299 // we don't draw the line beyond our window, but we allow dragging it
1302 GetClientSize( &w
, NULL
);
1303 m_owner
->CalcUnscrolledPosition(w
, 0, &w
, NULL
);
1306 // erase the line if it was drawn
1307 if ( m_currentX
< w
)
1310 if (event
.ButtonUp())
1313 m_isDragging
= FALSE
;
1315 SetColumnWidth( m_column
, m_currentX
- m_minX
);
1317 SendListEvent(wxEVT_COMMAND_LIST_COL_END_DRAG
,
1318 event
.GetPosition());
1325 m_currentX
= m_minX
+ 7;
1327 // draw in the new location
1328 if ( m_currentX
< w
)
1332 else // not dragging
1335 bool hit_border
= FALSE
;
1337 // end of the current column
1340 // find the column where this event occured
1341 int countCol
= GetColumnCount();
1342 for (int col
= 0; col
< countCol
; col
++)
1344 if (!GetColumnShown (col
)) continue;
1345 xpos
+= GetColumnWidth (col
);
1348 if ( (abs(x
-xpos
) < 3) && (y
< 22) )
1350 // near the column border
1357 // inside the column
1364 if (event
.LeftDown() || event
.RightUp())
1366 if (hit_border
&& event
.LeftDown())
1368 m_isDragging
= TRUE
;
1372 SendListEvent(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
,
1373 event
.GetPosition());
1375 else // click on a column
1377 SendListEvent( event
.LeftDown()
1378 ? wxEVT_COMMAND_LIST_COL_CLICK
1379 : wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
,
1380 event
.GetPosition());
1383 else if (event
.Moving())
1388 setCursor
= m_currentCursor
== wxSTANDARD_CURSOR
;
1389 m_currentCursor
= m_resizeCursor
;
1393 setCursor
= m_currentCursor
!= wxSTANDARD_CURSOR
;
1394 m_currentCursor
= wxSTANDARD_CURSOR
;
1398 SetCursor(*m_currentCursor
);
1403 void wxTreeListHeaderWindow::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
1405 m_owner
->SetFocus();
1408 void wxTreeListHeaderWindow::SendListEvent(wxEventType type
, wxPoint pos
)
1410 wxWindow
*parent
= GetParent();
1411 wxListEvent
le( type
, parent
->GetId() );
1412 le
.SetEventObject( parent
);
1413 le
.m_pointDrag
= pos
;
1415 // the position should be relative to the parent window, not
1416 // this one for compatibility with MSW and common sense: the
1417 // user code doesn't know anything at all about this header
1418 // window, so why should it get positions relative to it?
1419 le
.m_pointDrag
.y
-= GetSize().y
;
1421 le
.m_col
= m_column
;
1422 parent
->GetEventHandler()->ProcessEvent( le
);
1426 void wxTreeListHeaderWindow::AddColumn(const wxTreeListColumnInfo
& col
)
1429 m_total_col_width
+= col
.GetWidth();
1430 //m_owner->GetHeaderWindow()->Refresh();
1432 m_owner
->AdjustMyScrollbars();
1433 m_owner
->m_dirty
= TRUE
;
1438 void wxTreeListHeaderWindow::SetColumnWidth(size_t column
, size_t width
)
1440 if(column
< GetColumnCount()) {
1441 m_total_col_width
-= m_columns
[column
].GetWidth();
1442 m_columns
[column
].SetWidth(width
);
1443 m_total_col_width
+= width
;
1444 m_owner
->AdjustMyScrollbars();
1445 m_owner
->m_dirty
= TRUE
;
1453 void wxTreeListHeaderWindow::InsertColumn(size_t before
,
1454 const wxTreeListColumnInfo
& col
)
1456 wxCHECK_RET(before
< GetColumnCount(), wxT("Invalid column index"));
1457 m_columns
.Insert(col
, before
);
1458 m_total_col_width
+= col
.GetWidth();
1460 //m_owner->GetHeaderWindow()->Refresh();
1461 m_owner
->AdjustMyScrollbars();
1462 m_owner
->m_dirty
= TRUE
;
1467 void wxTreeListHeaderWindow::RemoveColumn(size_t column
)
1469 wxCHECK_RET(column
< GetColumnCount(), wxT("Invalid column"));
1470 m_total_col_width
-= m_columns
[column
].GetWidth();
1471 m_columns
.RemoveAt(column
);
1473 m_owner
->AdjustMyScrollbars();
1474 m_owner
->m_dirty
= TRUE
;
1479 void wxTreeListHeaderWindow::SetColumn(size_t column
,
1480 const wxTreeListColumnInfo
& info
)
1482 wxCHECK_RET(column
< GetColumnCount(), wxT("Invalid column"));
1483 size_t w
= m_columns
[column
].GetWidth();
1484 m_columns
[column
] = info
;
1485 //m_owner->GetHeaderWindow()->Refresh();
1487 if(w
!= info
.GetWidth()) {
1488 m_total_col_width
+= info
.GetWidth() - w
;
1489 m_owner
->AdjustMyScrollbars();
1490 m_owner
->m_dirty
= TRUE
;
1495 // ---------------------------------------------------------------------------
1497 // ---------------------------------------------------------------------------
1499 wxTreeListItem::wxTreeListItem(wxTreeListMainWindow
*owner
,
1500 wxTreeListItem
*parent
,
1501 const wxArrayString
& text
,
1502 int image
, int selImage
,
1503 wxTreeItemData
*data
)
1506 m_images
[wxTreeItemIcon_Normal
] = image
;
1507 m_images
[wxTreeItemIcon_Selected
] = selImage
;
1508 m_images
[wxTreeItemIcon_Expanded
] = NO_IMAGE
;
1509 m_images
[wxTreeItemIcon_SelectedExpanded
] = NO_IMAGE
;
1514 m_isCollapsed
= TRUE
;
1515 m_hasHilight
= FALSE
;
1523 m_attr
= (wxTreeItemAttr
*)NULL
;
1526 // We don't know the height here yet.
1531 wxTreeListItem::~wxTreeListItem()
1535 if (m_ownsAttr
) delete m_attr
;
1537 wxASSERT_MSG( m_children
.IsEmpty(),
1538 wxT("please call DeleteChildren() before deleting the item") );
1541 void wxTreeListItem::DeleteChildren(wxTreeListMainWindow
*tree
)
1543 size_t count
= m_children
.Count();
1544 for ( size_t n
= 0; n
< count
; n
++ )
1546 wxTreeListItem
*child
= m_children
[n
];
1548 tree
->SendDeleteEvent(child
);
1550 child
->DeleteChildren(tree
);
1557 void wxTreeListItem::SetText( const wxString
&text
)
1559 if(m_text
.GetCount() > 0) m_text
[0] = text
;
1565 size_t wxTreeListItem::GetChildrenCount(bool recursively
) const
1567 size_t count
= m_children
.Count();
1571 size_t total
= count
;
1572 for (size_t n
= 0; n
< count
; ++n
)
1574 total
+= m_children
[n
]->GetChildrenCount();
1580 void wxTreeListItem::GetSize( int &x
, int &y
,
1581 const wxTreeListMainWindow
*theButton
)
1583 int bottomY
=m_y
+theButton
->GetLineHeight(this);
1584 if ( y
< bottomY
) y
= bottomY
;
1585 int width
= m_x
+ m_width
;
1586 if ( x
< width
) x
= width
;
1590 size_t count
= m_children
.Count();
1591 for ( size_t n
= 0; n
< count
; ++n
)
1593 m_children
[n
]->GetSize( x
, y
, theButton
);
1598 wxTreeListItem
*wxTreeListItem::HitTest(const wxPoint
& point
,
1599 const wxTreeListMainWindow
*theCtrl
,
1603 // for a hidden root node, don't evaluate it, but do evaluate children
1604 if (!(theCtrl
->HasFlag(wxTR_HIDE_ROOT
) && (level
== 0)))
1606 // evaluate the item
1607 int h
= theCtrl
->GetLineHeight(this);
1608 if ((point
.y
> m_y
) && (point
.y
< m_y
+ h
))
1610 // check for above/below middle
1611 int y_mid
= m_y
+ h
/2;
1612 if (point
.y
< y_mid
)
1613 flags
|= wxTREE_HITTEST_ONITEMUPPERPART
;
1615 flags
|= wxTREE_HITTEST_ONITEMLOWERPART
;
1617 // check for button hit
1618 if (HasPlus() && theCtrl
->HasButtons()) {
1619 int bntX
= m_x
- theCtrl
->GetIndent() - theCtrl
->m_btnWidth2
;
1620 int bntY
= y_mid
- theCtrl
->m_btnHeight2
;
1621 if ((point
.x
> bntX
) && (point
.x
< (bntX
+ theCtrl
->m_btnWidth
)) &&
1622 (point
.y
> bntY
) && (point
.y
< (bntY
+ theCtrl
->m_btnHeight
))) {
1623 flags
|= wxTREE_HITTEST_ONITEMBUTTON
;
1628 // check for image hit
1629 int imgX
= m_x
- theCtrl
->m_imgWidth2
;
1630 int imgY
= y_mid
- theCtrl
->m_imgHeight2
;
1631 if ((point
.x
>= imgX
) && (point
.x
<= (imgX
+ theCtrl
->m_imgWidth
)) &&
1632 (point
.y
>= imgY
) && (point
.y
<= (imgY
+ theCtrl
->m_imgHeight
))) {
1633 flags
|= wxTREE_HITTEST_ONITEMICON
;
1637 // check for label hit
1638 int lblX
= m_x
- theCtrl
->m_imgWidth2
+ theCtrl
->m_imgWidth
+ MARGIN
;
1639 if ((point
.x
>= lblX
) && (point
.x
<= (m_x
+ m_width
)) &&
1640 (point
.y
>= m_y
) && (point
.y
<= (m_y
+ h
))) {
1641 flags
|= wxTREE_HITTEST_ONITEMLABEL
;
1645 // else check for indent
1646 if (point
.x
< m_x
) {
1647 flags
|= wxTREE_HITTEST_ONITEMINDENT
;
1651 // else check for item right???
1652 if (point
.x
> m_x
+ m_width
) {
1653 flags
|= wxTREE_HITTEST_ONITEMRIGHT
;
1659 // if children are expanded, fall through to evaluate them
1660 if (m_isCollapsed
) return (wxTreeListItem
*) NULL
;
1663 // evaluate children
1664 size_t count
= m_children
.Count();
1665 for ( size_t n
= 0; n
< count
; n
++ )
1667 wxTreeListItem
*res
= m_children
[n
]->HitTest(point
, theCtrl
,
1673 return (wxTreeListItem
*) NULL
;
1677 wxTreeListItem
*wxTreeListItem::HitTest(const wxPoint
& point
,
1678 const wxTreeListMainWindow
*theCtrl
,
1679 int &flags
, int& column
, int level
)
1681 column
= theCtrl
->GetMainColumn(); //-1;
1683 wxTreeListItem
* res
= HitTest(point
, theCtrl
, flags
, level
);
1689 wxTreeListHeaderWindow
* header_win
= theCtrl
->m_owner
->GetHeaderWindow();
1690 if (point
.x
>= header_win
->GetWidth())
1692 else if(flags
& wxTREE_HITTEST_ONITEMINDENT
) {
1694 for(size_t i
= 0; i
< theCtrl
->GetMainColumn(); ++i
) {
1695 if (!header_win
->GetColumnShown(i
)) continue;
1696 int w
= header_win
->GetColumnWidth(i
);
1697 if(point
.x
>= x
&& point
.x
< x
+w
) {
1698 flags
^= wxTREE_HITTEST_ONITEMINDENT
;
1699 flags
|= wxTREE_HITTEST_ONITEMCOLUMN
;
1705 else if(flags
& wxTREE_HITTEST_ONITEMRIGHT
) {
1708 for(i
= 0; i
< theCtrl
->GetMainColumn()+1; ++i
) {
1709 if (!header_win
->GetColumnShown(i
)) continue;
1710 x
+= header_win
->GetColumnWidth(i
);
1712 for(i
= theCtrl
->GetMainColumn()+1; i
< theCtrl
->GetColumnCount(); ++i
) {
1713 if (!header_win
->GetColumnShown(i
)) continue;
1714 int w
= header_win
->GetColumnWidth(i
);
1715 if(point
.x
>= x
&& point
.x
< x
+w
) {
1716 flags
^= wxTREE_HITTEST_ONITEMRIGHT
;
1717 flags
|= wxTREE_HITTEST_ONITEMCOLUMN
;
1728 int wxTreeListItem::GetCurrentImage() const
1730 int image
= NO_IMAGE
;
1735 image
= GetImage(wxTreeItemIcon_SelectedExpanded
);
1738 if ( image
== NO_IMAGE
)
1740 // we usually fall back to the normal item, but try just the
1741 // expanded one (and not selected) first in this case
1742 image
= GetImage(wxTreeItemIcon_Expanded
);
1745 else // not expanded
1748 image
= GetImage(wxTreeItemIcon_Selected
);
1751 // maybe it doesn't have the specific image we want,
1752 // try the default one instead
1753 if ( image
== NO_IMAGE
) image
= GetImage();
1758 // ---------------------------------------------------------------------------
1759 // wxTreeListMainWindow implementation
1760 // ---------------------------------------------------------------------------
1762 IMPLEMENT_DYNAMIC_CLASS(wxTreeListMainWindow
, wxScrolledWindow
)
1764 BEGIN_EVENT_TABLE(wxTreeListMainWindow
, wxScrolledWindow
)
1765 EVT_PAINT (wxTreeListMainWindow::OnPaint
)
1766 EVT_MOUSE_EVENTS (wxTreeListMainWindow::OnMouse
)
1767 EVT_CHAR (wxTreeListMainWindow::OnChar
)
1768 EVT_SET_FOCUS (wxTreeListMainWindow::OnSetFocus
)
1769 EVT_KILL_FOCUS (wxTreeListMainWindow::OnKillFocus
)
1770 EVT_IDLE (wxTreeListMainWindow::OnIdle
)
1771 //EVT_SIZE (wxTreeListMainWindow::OnSize)
1772 EVT_SCROLLWIN (wxTreeListMainWindow::OnScroll
)
1776 // ---------------------------------------------------------------------------
1777 // construction/destruction
1778 // ---------------------------------------------------------------------------
1780 void wxTreeListMainWindow::Init()
1782 m_current
= m_key_current
= m_anchor
= (wxTreeListItem
*) NULL
;
1786 m_lineHeight
= LINEHEIGHT
;
1787 m_indent
= MININDENT
; // min. indent
1790 m_hilightBrush
= new wxBrush
1792 wxSystemSettings::GetSystemColour
1794 wxSYS_COLOUR_HIGHLIGHT
1799 m_hilightUnfocusedBrush
= new wxBrush
1801 wxSystemSettings::GetSystemColour
1803 wxSYS_COLOUR_BTNSHADOW
1808 m_imageListNormal
= m_imageListButtons
=
1809 m_imageListState
= (wxImageList
*) NULL
;
1810 m_ownsImageListNormal
= m_ownsImageListButtons
=
1811 m_ownsImageListState
= FALSE
;
1814 m_isDragging
= FALSE
;
1815 m_dropTarget
= m_oldSelection
= (wxTreeListItem
*)NULL
;
1817 m_renameTimer
= new wxTreeListRenameTimer( this );
1818 m_lastOnSame
= FALSE
;
1820 m_normalFont
= wxSystemSettings::GetSystemFont( wxSYS_DEFAULT_GUI_FONT
);
1821 m_boldFont
= wxFont( m_normalFont
.GetPointSize(),
1822 m_normalFont
.GetFamily(),
1823 m_normalFont
.GetStyle(),
1825 m_normalFont
.GetUnderlined());
1829 static const int HEADER_HEIGHT
= 23;
1831 bool wxTreeListMainWindow::Create(wxTreeListCtrl
*parent
,
1836 const wxValidator
&validator
,
1837 const wxString
& name
)
1841 wxGetOsVersion( &major
, &minor
);
1843 if (style
& wxTR_HAS_BUTTONS
) style
|= wxTR_MAC_BUTTONS
;
1844 if (style
& wxTR_HAS_BUTTONS
) style
&= ~wxTR_HAS_BUTTONS
;
1845 style
&= ~wxTR_LINES_AT_ROOT
;
1846 style
|= wxTR_NO_LINES
;
1848 style
|= wxTR_ROW_LINES
;
1851 wxScrolledWindow::Create( parent
, id
, pos
, size
,
1852 style
|wxHSCROLL
|wxVSCROLL
, name
);
1854 #if wxUSE_VALIDATORS
1855 SetValidator( validator
);
1858 SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_LISTBOX
) );
1865 bdc
.SelectObject(bmp
);
1866 bdc
.SetPen(*wxGREY_PEN
);
1867 bdc
.DrawRectangle(-1, -1, 10, 10);
1868 for (i
= 0; i
< 8; i
++) {
1869 for (j
= 0; j
< 8; j
++) {
1870 if (!((i
+ j
) & 1)) {
1871 bdc
.DrawPoint(i
, j
);
1876 m_dottedPen
= wxPen(bmp
, 1);
1879 //m_dottedPen = wxPen( *wxGREY_PEN, 1, wxDOT ); // too slow under XFree86
1880 m_dottedPen
= wxPen( wxT("grey"), 0, 0 ); // Bitmap based pen is not supported by GTK!
1890 wxTreeListMainWindow::~wxTreeListMainWindow()
1892 delete m_hilightBrush
;
1893 delete m_hilightUnfocusedBrush
;
1897 delete m_renameTimer
;
1898 if (m_ownsImageListNormal
) delete m_imageListNormal
;
1899 if (m_ownsImageListState
) delete m_imageListState
;
1900 if (m_ownsImageListButtons
) delete m_imageListButtons
;
1905 //-----------------------------------------------------------------------------
1907 //-----------------------------------------------------------------------------
1910 size_t wxTreeListMainWindow::GetCount() const
1912 return m_anchor
== NULL
? 0u : m_anchor
->GetChildrenCount();
1916 void wxTreeListMainWindow::SetIndent(unsigned int indent
)
1923 void wxTreeListMainWindow::SetLineSpacing(unsigned int spacing
)
1925 m_linespacing
= spacing
;
1927 CalculateLineHeight();
1931 size_t wxTreeListMainWindow::GetChildrenCount(const wxTreeItemId
& item
,
1934 wxCHECK_MSG( item
.IsOk(), 0u, wxT("invalid tree item") );
1936 return ((wxTreeListItem
*) item
.m_pItem
)->GetChildrenCount(recursively
);
1939 void wxTreeListMainWindow::SetWindowStyle(const long styles
)
1941 // right now, just sets the styles. Eventually, we may
1942 // want to update the inherited styles, but right now
1943 // none of the parents has updatable styles
1944 m_windowStyle
= styles
;
1948 //-----------------------------------------------------------------------------
1949 // functions to work with tree items
1950 //-----------------------------------------------------------------------------
1953 int wxTreeListMainWindow::GetItemImage(const wxTreeItemId
& item
, size_t column
,
1954 wxTreeItemIcon which
) const
1956 wxCHECK_MSG( item
.IsOk(), -1, wxT("invalid tree item") );
1958 return ((wxTreeListItem
*) item
.m_pItem
)->GetImage(column
, which
);
1962 wxTreeItemData
*wxTreeListMainWindow::GetItemData(const wxTreeItemId
& item
)
1965 wxCHECK_MSG( item
.IsOk(), NULL
, wxT("invalid tree item") );
1967 return ((wxTreeListItem
*) item
.m_pItem
)->GetData();
1971 bool wxTreeListMainWindow::GetItemBold(const wxTreeItemId
& item
) const
1973 wxCHECK_MSG(item
.IsOk(), FALSE
, wxT("invalid tree item"));
1974 return ((wxTreeListItem
*)item
.m_pItem
)->IsBold();
1978 wxColour
wxTreeListMainWindow::GetItemTextColour(const wxTreeItemId
& item
)
1981 wxCHECK_MSG( item
.IsOk(), wxNullColour
, wxT("invalid tree item") );
1983 wxTreeListItem
*pItem
= (wxTreeListItem
*) item
.m_pItem
;
1984 return pItem
->Attr().GetTextColour();
1988 wxColour
wxTreeListMainWindow::GetItemBackgroundColour(
1989 const wxTreeItemId
& item
) const
1991 wxCHECK_MSG( item
.IsOk(), wxNullColour
, wxT("invalid tree item") );
1993 wxTreeListItem
*pItem
= (wxTreeListItem
*) item
.m_pItem
;
1994 return pItem
->Attr().GetBackgroundColour();
1998 wxFont
wxTreeListMainWindow::GetItemFont(const wxTreeItemId
& item
) const
2000 wxCHECK_MSG( item
.IsOk(), wxNullFont
, wxT("invalid tree item") );
2002 wxTreeListItem
*pItem
= (wxTreeListItem
*) item
.m_pItem
;
2003 return pItem
->Attr().GetFont();
2009 void wxTreeListMainWindow::SetItemImage(const wxTreeItemId
& item
,
2011 int image
, wxTreeItemIcon which
)
2013 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
2015 wxTreeListItem
*pItem
= (wxTreeListItem
*) item
.m_pItem
;
2016 pItem
->SetImage(column
, image
, which
);
2018 wxClientDC
dc(this);
2019 CalculateSize(pItem
, dc
);
2024 void wxTreeListMainWindow::SetItemData(const wxTreeItemId
& item
,
2025 wxTreeItemData
*data
)
2027 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
2029 ((wxTreeListItem
*) item
.m_pItem
)->SetData(data
);
2033 void wxTreeListMainWindow::SetItemHasChildren(const wxTreeItemId
& item
,
2036 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
2038 wxTreeListItem
*pItem
= (wxTreeListItem
*) item
.m_pItem
;
2039 pItem
->SetHasPlus(has
);
2044 void wxTreeListMainWindow::SetItemBold(const wxTreeItemId
& item
, bool bold
)
2046 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
2048 // avoid redrawing the tree if no real change
2049 wxTreeListItem
*pItem
= (wxTreeListItem
*) item
.m_pItem
;
2050 if ( pItem
->IsBold() != bold
)
2052 pItem
->SetBold(bold
);
2058 void wxTreeListMainWindow::SetItemTextColour(const wxTreeItemId
& item
,
2059 const wxColour
& col
)
2061 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
2063 wxTreeListItem
*pItem
= (wxTreeListItem
*) item
.m_pItem
;
2064 pItem
->Attr().SetTextColour(col
);
2069 void wxTreeListMainWindow::SetItemBackgroundColour(const wxTreeItemId
& item
,
2070 const wxColour
& col
)
2072 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
2074 wxTreeListItem
*pItem
= (wxTreeListItem
*) item
.m_pItem
;
2075 pItem
->Attr().SetBackgroundColour(col
);
2080 void wxTreeListMainWindow::SetItemFont(const wxTreeItemId
& item
,
2083 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
2085 wxTreeListItem
*pItem
= (wxTreeListItem
*) item
.m_pItem
;
2086 pItem
->Attr().SetFont(font
);
2091 bool wxTreeListMainWindow::SetFont( const wxFont
&font
)
2093 wxScrolledWindow::SetFont(font
);
2095 m_normalFont
= font
;
2096 m_boldFont
= wxFont( m_normalFont
.GetPointSize(),
2097 m_normalFont
.GetFamily(),
2098 m_normalFont
.GetStyle(),
2100 m_normalFont
.GetUnderlined());
2106 // ----------------------------------------------------------------------------
2107 // item status inquiries
2108 // ----------------------------------------------------------------------------
2111 bool wxTreeListMainWindow::IsVisible(const wxTreeItemId
& item
) const
2113 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
2115 // An item is only visible if it's not a descendant of a collapsed item
2116 wxTreeListItem
*pItem
= (wxTreeListItem
*) item
.m_pItem
;
2117 wxTreeListItem
* parent
= pItem
->GetItemParent();
2120 if (!parent
->IsExpanded())
2122 parent
= parent
->GetItemParent();
2126 GetViewStart(& startX
, & startY
);
2128 wxSize clientSize
= GetClientSize();
2131 if (!GetBoundingRect(item
, rect
))
2133 if (rect
.GetWidth() == 0 || rect
.GetHeight() == 0)
2135 if (rect
.GetBottom() < 0 || rect
.GetTop() > clientSize
.y
)
2137 if (rect
.GetRight() < 0 || rect
.GetLeft() > clientSize
.x
)
2144 bool wxTreeListMainWindow::ItemHasChildren(const wxTreeItemId
& item
) const
2146 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
2148 // consider that the item does have children if it has the "+" button: it
2149 // might not have them (if it had never been expanded yet) but then it
2150 // could have them as well and it's better to err on this side rather than
2151 // disabling some operations which are restricted to the items with
2152 // children for an item which does have them
2153 return ((wxTreeListItem
*) item
.m_pItem
)->HasPlus();
2157 bool wxTreeListMainWindow::IsExpanded(const wxTreeItemId
& item
) const
2159 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
2161 return ((wxTreeListItem
*) item
.m_pItem
)->IsExpanded();
2165 bool wxTreeListMainWindow::IsSelected(const wxTreeItemId
& item
) const
2167 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
2169 return ((wxTreeListItem
*) item
.m_pItem
)->IsSelected();
2173 bool wxTreeListMainWindow::IsBold(const wxTreeItemId
& item
) const
2175 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
2177 return ((wxTreeListItem
*) item
.m_pItem
)->IsBold();
2180 // ----------------------------------------------------------------------------
2182 // ----------------------------------------------------------------------------
2185 wxTreeItemId
wxTreeListMainWindow::GetItemParent(const wxTreeItemId
& item
) const
2187 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
2189 return ((wxTreeListItem
*) item
.m_pItem
)->GetItemParent();
2193 wxTreeItemId
wxTreeListMainWindow::GetFirstChild(const wxTreeItemId
& item
,
2196 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
2199 return GetNextChild(item
, cookie
);
2203 wxTreeItemId
wxTreeListMainWindow::GetNextChild(const wxTreeItemId
& item
,
2206 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
2208 wxArrayTreeListItems
& children
= ((wxTreeListItem
*)
2209 item
.m_pItem
)->GetChildren();
2210 if ( (size_t)cookie
< children
.Count() )
2212 return children
.Item((size_t)cookie
++);
2216 // there are no more of them
2217 return wxTreeItemId();
2222 wxTreeItemId
wxTreeListMainWindow::GetLastChild(const wxTreeItemId
& item
) const
2224 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
2226 wxArrayTreeListItems
& children
= ((wxTreeListItem
*) item
.m_pItem
)->GetChildren();
2227 return (children
.IsEmpty() ? wxTreeItemId() : wxTreeItemId(children
.Last()));
2231 wxTreeItemId
wxTreeListMainWindow::GetNextSibling(const wxTreeItemId
& item
) const
2233 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
2235 wxTreeListItem
*i
= (wxTreeListItem
*) item
.m_pItem
;
2236 wxTreeListItem
*parent
= i
->GetItemParent();
2237 if ( parent
== NULL
)
2239 // root item doesn't have any siblings
2240 return wxTreeItemId();
2243 wxArrayTreeListItems
& siblings
= parent
->GetChildren();
2244 int index
= siblings
.Index(i
);
2245 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
2247 size_t n
= (size_t)(index
+ 1);
2248 return n
== siblings
.Count() ? wxTreeItemId() : wxTreeItemId(siblings
[n
]);
2252 wxTreeItemId
wxTreeListMainWindow::GetPrevSibling(const wxTreeItemId
& item
)
2255 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
2257 wxTreeListItem
*i
= (wxTreeListItem
*) item
.m_pItem
;
2258 wxTreeListItem
*parent
= i
->GetItemParent();
2259 if ( parent
== NULL
)
2261 // root item doesn't have any siblings
2262 return wxTreeItemId();
2265 wxArrayTreeListItems
& siblings
= parent
->GetChildren();
2266 int index
= siblings
.Index(i
);
2267 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
2269 return index
== 0 ? wxTreeItemId()
2270 : wxTreeItemId(siblings
[(size_t)(index
- 1)]);
2273 // Only for internal use right now, but should probably be public
2274 wxTreeItemId
wxTreeListMainWindow::GetNext(const wxTreeItemId
& item
) const
2276 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
2278 wxTreeListItem
*i
= (wxTreeListItem
*) item
.m_pItem
;
2280 // First see if there are any children.
2281 wxArrayTreeListItems
& children
= i
->GetChildren();
2282 if (children
.GetCount() > 0)
2284 return children
.Item(0);
2288 // Try a sibling of this or ancestor instead
2289 wxTreeItemId p
= item
;
2290 wxTreeItemId toFind
;
2293 toFind
= GetNextSibling(p
);
2294 p
= GetItemParent(p
);
2295 } while (p
.IsOk() && !toFind
.IsOk());
2301 wxTreeItemId
wxTreeListMainWindow::GetFirstVisibleItem() const
2303 wxTreeItemId id
= GetRootItem();
2312 } while (id
.IsOk());
2314 return wxTreeItemId();
2318 wxTreeItemId
wxTreeListMainWindow::GetNextVisible(const wxTreeItemId
& item
)
2321 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
2323 wxTreeItemId id
= item
;
2326 while (id
= GetNext(id
), id
.IsOk())
2332 return wxTreeItemId();
2336 wxTreeItemId
wxTreeListMainWindow::GetPrevVisible(const wxTreeItemId
& item
)
2339 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
2341 wxFAIL_MSG(wxT("not implemented"));
2343 return wxTreeItemId();
2346 // ----------------------------------------------------------------------------
2348 // ----------------------------------------------------------------------------
2350 wxTreeItemId
wxTreeListMainWindow::DoInsertItem(const wxTreeItemId
& parentId
,
2352 const wxString
& text
,
2353 int image
, int selImage
,
2354 wxTreeItemData
*data
)
2356 wxTreeListItem
*parent
= (wxTreeListItem
*) parentId
.m_pItem
;
2359 // should we give a warning here?
2360 return AddRoot(text
, image
, selImage
, data
);
2363 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
2367 arr
.Alloc(GetColumnCount());
2368 for(size_t i
= 0; i
< GetColumnCount(); ++i
) {
2369 arr
.Add(wxEmptyString
);
2371 arr
[m_main_column
] = text
;
2372 wxTreeListItem
*item
=
2373 new wxTreeListItem( this, parent
, arr
, image
, selImage
, data
);
2377 data
->SetId((long)item
);
2380 parent
->Insert( item
, previous
);
2385 wxTreeItemId
wxTreeListMainWindow::AddRoot(const wxString
& text
,
2386 int image
, int selImage
,
2387 wxTreeItemData
*data
)
2389 wxCHECK_MSG(!m_anchor
, wxTreeItemId(), wxT("tree can have only one root"));
2390 wxCHECK_MSG(GetColumnCount(), wxTreeItemId(), wxT("Add column(s) before adding the root item"));
2392 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
2396 arr
.Alloc(GetColumnCount());
2397 for(size_t i
= 0; i
< GetColumnCount(); ++i
) {
2398 arr
.Add(wxEmptyString
);
2400 arr
[m_main_column
] = text
;
2401 m_anchor
= new wxTreeListItem( this, (wxTreeListItem
*)NULL
, arr
,
2402 image
, selImage
, data
);
2404 if (HasFlag(wxTR_HIDE_ROOT
))
2406 // if root is hidden, make sure we can navigate
2408 m_anchor
->SetHasPlus();
2414 data
->SetId((long)m_anchor
);
2417 if (!HasFlag(wxTR_MULTIPLE
))
2419 m_current
= m_key_current
= m_anchor
;
2420 m_current
->SetHilight( TRUE
);
2427 wxTreeItemId
wxTreeListMainWindow::PrependItem(const wxTreeItemId
& parent
,
2428 const wxString
& text
,
2429 int image
, int selImage
,
2430 wxTreeItemData
*data
)
2432 return DoInsertItem(parent
, 0u, text
, image
, selImage
, data
);
2436 wxTreeItemId
wxTreeListMainWindow::InsertItem(const wxTreeItemId
& parentId
,
2437 const wxTreeItemId
& idPrevious
,
2438 const wxString
& text
,
2439 int image
, int selImage
,
2440 wxTreeItemData
*data
)
2442 wxTreeListItem
*parent
= (wxTreeListItem
*) parentId
.m_pItem
;
2445 // should we give a warning here?
2446 return AddRoot(text
, image
, selImage
, data
);
2449 int index
= parent
->GetChildren().Index((wxTreeListItem
*) idPrevious
.m_pItem
);
2450 wxASSERT_MSG( index
!= wxNOT_FOUND
,
2451 wxT("previous item in wxTreeListMainWindow::InsertItem() is not a sibling") );
2453 return DoInsertItem(parentId
, (size_t)++index
, text
, image
, selImage
, data
);
2457 wxTreeItemId
wxTreeListMainWindow::InsertItem(const wxTreeItemId
& parentId
,
2459 const wxString
& text
,
2460 int image
, int selImage
,
2461 wxTreeItemData
*data
)
2463 wxTreeListItem
*parent
= (wxTreeListItem
*) parentId
.m_pItem
;
2466 // should we give a warning here?
2467 return AddRoot(text
, image
, selImage
, data
);
2470 return DoInsertItem(parentId
, before
, text
, image
, selImage
, data
);
2474 wxTreeItemId
wxTreeListMainWindow::AppendItem(const wxTreeItemId
& parentId
,
2475 const wxString
& text
,
2476 int image
, int selImage
,
2477 wxTreeItemData
*data
)
2479 wxTreeListItem
*parent
= (wxTreeListItem
*) parentId
.m_pItem
;
2482 // should we give a warning here?
2483 return AddRoot(text
, image
, selImage
, data
);
2486 return DoInsertItem( parent
, parent
->GetChildren().Count(), text
,
2487 image
, selImage
, data
);
2490 void wxTreeListMainWindow::SendDeleteEvent(wxTreeListItem
*item
)
2492 wxTreeEvent
event( wxEVT_COMMAND_TREE_DELETE_ITEM
, m_owner
->GetId() );
2493 event
.SetItem((long) item
);
2494 event
.SetEventObject( /*this*/m_owner
);
2495 m_owner
->ProcessEvent( event
);
2499 void wxTreeListMainWindow::DeleteChildren(const wxTreeItemId
& itemId
)
2501 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
2503 wxTreeListItem
*item
= (wxTreeListItem
*) itemId
.m_pItem
;
2504 item
->DeleteChildren(this);
2508 void wxTreeListMainWindow::Delete(const wxTreeItemId
& itemId
)
2510 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
2512 wxTreeListItem
*item
= (wxTreeListItem
*) itemId
.m_pItem
;
2514 // don't stay with invalid m_key_current or we will crash in
2515 // the next call to OnChar()
2516 bool changeKeyCurrent
= FALSE
;
2517 wxTreeListItem
*itemKey
= m_key_current
;
2520 if ( itemKey
== item
)
2522 // m_key_current is a descendant of the item being deleted
2523 changeKeyCurrent
= TRUE
;
2526 itemKey
= itemKey
->GetItemParent();
2529 wxTreeListItem
*parent
= item
->GetItemParent();
2532 parent
->GetChildren().Remove( item
); // remove by value
2535 if ( changeKeyCurrent
)
2537 // may be NULL or not
2538 m_key_current
= parent
;
2541 item
->DeleteChildren(this);
2542 SendDeleteEvent(item
);
2547 void wxTreeListMainWindow::DeleteAllItems()
2553 m_anchor
->DeleteChildren(this);
2560 void wxTreeListMainWindow::Expand(const wxTreeItemId
& itemId
)
2562 wxTreeListItem
*item
= (wxTreeListItem
*) itemId
.m_pItem
;
2564 wxCHECK_RET( item
, _T("invalid item in wxTreeListMainWindow::Expand") );
2566 if ( !item
->HasPlus() )
2569 if ( item
->IsExpanded() )
2572 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_EXPANDING
, m_owner
->GetId() );
2573 event
.SetItem( (long) item
);
2574 event
.SetEventObject( /*this*/m_owner
);
2576 if ( m_owner
->ProcessEvent( event
) && !event
.IsAllowed() )
2578 // cancelled by program
2583 CalculatePositions();
2585 RefreshSubtree(item
);
2587 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_EXPANDED
);
2588 ProcessEvent( event
);
2591 void wxTreeListMainWindow::ExpandAll(const wxTreeItemId
& item
)
2594 if ( IsExpanded(item
) )
2597 wxTreeItemId child
= GetFirstChild(item
, cookie
);
2598 while ( child
.IsOk() )
2602 child
= GetNextChild(item
, cookie
);
2607 void wxTreeListMainWindow::Collapse(const wxTreeItemId
& itemId
)
2609 wxTreeListItem
*item
= (wxTreeListItem
*) itemId
.m_pItem
;
2611 if ( !item
->IsExpanded() )
2614 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, m_owner
->GetId() );
2615 event
.SetItem( (long) item
);
2616 event
.SetEventObject( /*this*/m_owner
);
2617 if ( m_owner
->ProcessEvent( event
) && !event
.IsAllowed() )
2619 // cancelled by program
2625 #if 0 // TODO why should items be collapsed recursively?
2626 wxArrayTreeListItems
& children
= item
->GetChildren();
2627 size_t count
= children
.Count();
2628 for ( size_t n
= 0; n
< count
; n
++ )
2630 Collapse(children
[n
]);
2634 CalculatePositions();
2636 RefreshSubtree(item
);
2638 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
);
2639 ProcessEvent( event
);
2642 void wxTreeListMainWindow::CollapseAndReset(const wxTreeItemId
& item
)
2645 DeleteChildren(item
);
2648 void wxTreeListMainWindow::Toggle(const wxTreeItemId
& itemId
)
2650 wxTreeListItem
*item
= (wxTreeListItem
*) itemId
.m_pItem
;
2652 if (item
->IsExpanded())
2658 void wxTreeListMainWindow::Unselect()
2662 m_current
->SetHilight( FALSE
);
2663 RefreshLine( m_current
);
2667 void wxTreeListMainWindow::UnselectAllChildren(wxTreeListItem
*item
)
2669 if (item
->IsSelected())
2671 item
->SetHilight(FALSE
);
2675 if (item
->HasChildren())
2677 wxArrayTreeListItems
& children
= item
->GetChildren();
2678 size_t count
= children
.Count();
2679 for ( size_t n
= 0; n
< count
; ++n
)
2681 UnselectAllChildren(children
[n
]);
2686 void wxTreeListMainWindow::UnselectAll()
2688 UnselectAllChildren((wxTreeListItem
*) GetRootItem().m_pItem
);
2691 // Recursive function !
2692 // To stop we must have crt_item<last_item
2694 // Tag all next children, when no more children,
2695 // Move to parent (not to tag)
2696 // Keep going... if we found last_item, we stop.
2697 bool wxTreeListMainWindow::TagNextChildren(wxTreeListItem
*crt_item
, wxTreeListItem
*last_item
, bool select
)
2699 wxTreeListItem
*parent
= crt_item
->GetItemParent();
2701 if (parent
== NULL
) // This is root item
2702 return TagAllChildrenUntilLast(crt_item
, last_item
, select
);
2704 wxArrayTreeListItems
& children
= parent
->GetChildren();
2705 int index
= children
.Index(crt_item
);
2706 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
2708 size_t count
= children
.Count();
2709 for (size_t n
=(size_t)(index
+1); n
<count
; ++n
)
2711 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
)) return TRUE
;
2714 return TagNextChildren(parent
, last_item
, select
);
2717 bool wxTreeListMainWindow::TagAllChildrenUntilLast(wxTreeListItem
*crt_item
, wxTreeListItem
*last_item
, bool select
)
2719 crt_item
->SetHilight(select
);
2720 RefreshLine(crt_item
);
2722 if (crt_item
==last_item
)
2725 if (crt_item
->HasChildren())
2727 wxArrayTreeListItems
& children
= crt_item
->GetChildren();
2728 size_t count
= children
.Count();
2729 for ( size_t n
= 0; n
< count
; ++n
)
2731 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
))
2739 void wxTreeListMainWindow::SelectItemRange(wxTreeListItem
*item1
, wxTreeListItem
*item2
)
2741 // item2 is not necessary after item1
2742 wxTreeListItem
*first
=NULL
, *last
=NULL
;
2744 // choice first' and 'last' between item1 and item2
2745 if (item1
->GetY()<item2
->GetY())
2756 bool select
= m_current
->IsSelected();
2758 if ( TagAllChildrenUntilLast(first
,last
,select
) )
2761 TagNextChildren(first
,last
,select
);
2764 void wxTreeListMainWindow::SelectItem(const wxTreeItemId
& itemId
,
2765 bool unselect_others
,
2766 bool extended_select
)
2768 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
2770 bool is_single
=!(GetWindowStyleFlag() & wxTR_MULTIPLE
);
2771 wxTreeListItem
*item
= (wxTreeListItem
*) itemId
.m_pItem
;
2773 //wxCHECK_RET( ( (!unselect_others) && is_single),
2774 // wxT("this is a single selection tree") );
2776 // to keep going anyhow !!!
2779 if (item
->IsSelected())
2780 return; // nothing to do
2781 unselect_others
= TRUE
;
2782 extended_select
= FALSE
;
2784 else if ( unselect_others
&& item
->IsSelected() )
2786 // selection change if there is more than one item currently selected
2787 wxArrayTreeItemIds selected_items
;
2788 if ( GetSelections(selected_items
) == 1 )
2792 wxTreeEvent
event( wxEVT_COMMAND_TREE_SEL_CHANGING
, m_owner
->GetId() );
2793 event
.SetItem( (long) item
);
2794 event
.SetOldItem( (long) m_current
);
2795 event
.SetEventObject( /*this*/m_owner
);
2796 // TODO : Here we don't send any selection mode yet !
2798 if(m_owner
->GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed())
2801 wxTreeItemId parent
= GetItemParent( itemId
);
2802 while (parent
.IsOk())
2804 if (!IsExpanded(parent
))
2807 parent
= GetItemParent( parent
);
2810 EnsureVisible( itemId
);
2813 if (unselect_others
)
2815 if (is_single
) Unselect(); // to speed up thing
2820 if (extended_select
)
2824 m_current
= m_key_current
= (wxTreeListItem
*) GetRootItem().m_pItem
;
2827 // don't change the mark (m_current)
2828 SelectItemRange(m_current
, item
);
2832 bool select
=TRUE
; // the default
2834 // Check if we need to toggle hilight (ctrl mode)
2835 if (!unselect_others
)
2836 select
=!item
->IsSelected();
2838 m_current
= m_key_current
= item
;
2839 m_current
->SetHilight(select
);
2840 RefreshLine( m_current
);
2843 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
2844 GetEventHandler()->ProcessEvent( event
);
2847 void wxTreeListMainWindow::FillArray(wxTreeListItem
*item
,
2848 wxArrayTreeItemIds
&array
) const
2850 if ( item
->IsSelected() )
2851 array
.Add(wxTreeItemId(item
));
2853 if ( item
->HasChildren() )
2855 wxArrayTreeListItems
& children
= item
->GetChildren();
2856 size_t count
= children
.GetCount();
2857 for ( size_t n
= 0; n
< count
; ++n
)
2858 FillArray(children
[n
], array
);
2862 size_t wxTreeListMainWindow::GetSelections(wxArrayTreeItemIds
&array
) const
2865 wxTreeItemId idRoot
= GetRootItem();
2866 if ( idRoot
.IsOk() )
2868 FillArray((wxTreeListItem
*) idRoot
.m_pItem
, array
);
2870 //else: the tree is empty, so no selections
2872 return array
.Count();
2875 void wxTreeListMainWindow::EnsureVisible(const wxTreeItemId
& item
)
2877 if (!item
.IsOk()) return;
2879 wxTreeListItem
*gitem
= (wxTreeListItem
*) item
.m_pItem
;
2881 // first expand all parent branches
2882 wxTreeListItem
*parent
= gitem
->GetItemParent();
2886 parent
= parent
->GetItemParent();
2889 //if (parent) CalculatePositions();
2894 void wxTreeListMainWindow::ScrollTo(const wxTreeItemId
&item
)
2896 if (!item
.IsOk()) return;
2898 // We have to call this here because the label in
2899 // question might just have been added and no screen
2900 // update taken place.
2901 if (m_dirty
) wxYieldIfNeeded();
2903 wxTreeListItem
*gitem
= (wxTreeListItem
*) item
.m_pItem
;
2905 // now scroll to the item
2906 int item_y
= gitem
->GetY();
2910 GetViewStart( &start_x
, &start_y
);
2911 start_y
*= PIXELS_PER_UNIT
;
2915 GetClientSize( &client_w
, &client_h
);
2917 if (item_y
< start_y
+3)
2922 m_anchor
->GetSize( x
, y
, this );
2923 x
= m_owner
->GetHeaderWindow()->GetWidth(); //m_total_col_width; // ALB
2924 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2925 //x += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels
2926 int x_pos
= GetScrollPos( wxHORIZONTAL
);
2927 // Item should appear at top
2928 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, item_y
/PIXELS_PER_UNIT
);
2930 else if (item_y
+GetLineHeight(gitem
) > start_y
+client_h
)
2935 m_anchor
->GetSize( x
, y
, this );
2936 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2937 //x += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels
2938 x
= m_owner
->GetHeaderWindow()->GetWidth(); //m_total_col_width; // ALB
2939 item_y
+= PIXELS_PER_UNIT
+2;
2940 int x_pos
= GetScrollPos( wxHORIZONTAL
);
2941 // Item should appear at bottom
2942 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, (item_y
+GetLineHeight(gitem
)-client_h
)/PIXELS_PER_UNIT
);
2946 // FIXME: tree sorting functions are not reentrant and not MT-safe!
2947 static wxTreeListMainWindow
*s_treeBeingSorted
= NULL
;
2949 static int LINKAGEMODE
tree_ctrl_compare_func(wxTreeListItem
**item1
,
2950 wxTreeListItem
**item2
)
2952 wxCHECK_MSG( s_treeBeingSorted
, 0, wxT("bug in wxTreeListMainWindow::SortChildren()") );
2954 return s_treeBeingSorted
->OnCompareItems(*item1
, *item2
);
2957 int wxTreeListMainWindow::OnCompareItems(const wxTreeItemId
& item1
,
2958 const wxTreeItemId
& item2
)
2960 // ALB: delegate to m_owner, to let the user overrride the comparison
2961 //return wxStrcmp(GetItemText(item1), GetItemText(item2));
2962 return m_owner
->OnCompareItems(item1
, item2
);
2965 void wxTreeListMainWindow::SortChildren(const wxTreeItemId
& itemId
)
2967 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
2969 wxTreeListItem
*item
= (wxTreeListItem
*) itemId
.m_pItem
;
2971 wxCHECK_RET( !s_treeBeingSorted
,
2972 wxT("wxTreeListMainWindow::SortChildren is not reentrant") );
2974 wxArrayTreeListItems
& children
= item
->GetChildren();
2975 if ( children
.Count() > 1 )
2979 s_treeBeingSorted
= this;
2980 children
.Sort(tree_ctrl_compare_func
);
2981 s_treeBeingSorted
= NULL
;
2983 //else: don't make the tree dirty as nothing changed
2987 wxImageList
*wxTreeListMainWindow::GetImageList() const
2989 return m_imageListNormal
;
2993 wxImageList
*wxTreeListMainWindow::GetButtonsImageList() const
2995 return m_imageListButtons
;
2999 wxImageList
*wxTreeListMainWindow::GetStateImageList() const
3001 return m_imageListState
;
3004 void wxTreeListMainWindow::CalculateLineHeight()
3006 wxClientDC
dc(this);
3007 dc
.SetFont( m_normalFont
);
3008 m_lineHeight
= (int)(dc
.GetCharHeight() + m_linespacing
);
3010 if ( m_imageListNormal
)
3012 // Calculate a m_lineHeight value from the normal Image sizes.
3013 // May be toggle off. Then wxTreeListMainWindow will spread when
3014 // necessary (which might look ugly).
3015 int n
= m_imageListNormal
->GetImageCount();
3016 for (int i
= 0; i
< n
; i
++)
3018 int width
= 0, height
= 0;
3019 m_imageListNormal
->GetSize(i
, width
, height
);
3020 if (height
> m_lineHeight
) m_lineHeight
= height
+ m_linespacing
;
3024 if (m_imageListButtons
)
3026 // Calculate a m_lineHeight value from the Button image sizes.
3027 // May be toggle off. Then wxTreeListMainWindow will spread when
3028 // necessary (which might look ugly).
3029 int n
= m_imageListButtons
->GetImageCount();
3030 for (int i
= 0; i
< n
; i
++)
3032 int width
= 0, height
= 0;
3033 m_imageListButtons
->GetSize(i
, width
, height
);
3034 if (height
> m_lineHeight
) m_lineHeight
= height
+ m_linespacing
;
3038 /*? FIXME: Don't get what this code is for... Adding a line space is already done!!!
3039 if (m_lineHeight < 30)
3040 m_lineHeight += 2; // at least 2 pixels
3042 m_lineHeight += m_lineHeight/10; // otherwise 10% extra spacing
3047 void wxTreeListMainWindow::SetImageList(wxImageList
*imageList
)
3049 if (m_ownsImageListNormal
) delete m_imageListNormal
;
3050 m_imageListNormal
= imageList
;
3051 m_ownsImageListNormal
= FALSE
;
3053 CalculateLineHeight();
3057 void wxTreeListMainWindow::SetStateImageList(wxImageList
*imageList
)
3059 if (m_ownsImageListState
) delete m_imageListState
;
3060 m_imageListState
= imageList
;
3061 m_ownsImageListState
= FALSE
;
3065 void wxTreeListMainWindow::SetButtonsImageList(wxImageList
*imageList
)
3067 if (m_ownsImageListButtons
) delete m_imageListButtons
;
3068 m_imageListButtons
= imageList
;
3069 m_ownsImageListButtons
= FALSE
;
3071 CalculateLineHeight();
3075 void wxTreeListMainWindow::AssignImageList(wxImageList
*imageList
)
3077 SetImageList(imageList
);
3078 m_ownsImageListNormal
= TRUE
;
3082 void wxTreeListMainWindow::AssignStateImageList(wxImageList
*imageList
)
3084 SetStateImageList(imageList
);
3085 m_ownsImageListState
= TRUE
;
3089 void wxTreeListMainWindow::AssignButtonsImageList(wxImageList
*imageList
)
3091 SetButtonsImageList(imageList
);
3092 m_ownsImageListButtons
= TRUE
;
3095 // ----------------------------------------------------------------------------
3097 // ----------------------------------------------------------------------------
3099 void wxTreeListMainWindow::AdjustMyScrollbars()
3104 m_anchor
->GetSize( x
, y
, this );
3105 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
3106 //x += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels
3107 int x_pos
= GetScrollPos( wxHORIZONTAL
);
3108 int y_pos
= GetScrollPos( wxVERTICAL
);
3109 x
= m_owner
->GetHeaderWindow()->GetWidth() + 2;
3110 if(x
< GetClientSize().GetWidth()) x_pos
= 0;
3111 //m_total_col_width + 2; // ALB
3112 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
,
3113 y
/PIXELS_PER_UNIT
, x_pos
, y_pos
);
3117 SetScrollbars( 0, 0, 0, 0 );
3121 int wxTreeListMainWindow::GetLineHeight(wxTreeListItem
*item
) const
3123 if (GetWindowStyleFlag() & wxTR_HAS_VARIABLE_ROW_HEIGHT
)
3124 return item
->GetHeight();
3126 return m_lineHeight
;
3129 void wxTreeListMainWindow::PaintItem(wxTreeListItem
*item
, wxDC
& dc
)
3131 // TODO implement "state" icon on items
3133 wxTreeItemAttr
*attr
= item
->GetAttributes();
3134 if ( attr
&& attr
->HasFont() )
3135 dc
.SetFont(attr
->GetFont());
3136 else if (item
->IsBold())
3137 dc
.SetFont(m_boldFont
);
3139 long text_w
= 0, text_h
= 0;
3141 dc
.GetTextExtent( item
->GetText(GetMainColumn()), &text_w
, &text_h
);
3143 int total_h
= GetLineHeight(item
);
3145 if ( item
->IsSelected() )
3147 dc
.SetBrush(*(m_hasFocus
? m_hilightBrush
: m_hilightUnfocusedBrush
));
3148 int offset
= HasFlag(wxTR_ROW_LINES
) ? 1 : 0;
3149 dc
.DrawRectangle (0, item
->GetY() + offset
,
3150 m_owner
->GetHeaderWindow()->GetWidth(), total_h
-offset
);
3152 #if 0 // this code is probably not needed
3156 if ( attr
&& attr
->HasBackgroundColour() )
3157 colBg
= attr
->GetBackgroundColour();
3159 colBg
= m_backgroundColour
;
3160 dc
.SetBrush(wxBrush(colBg
, wxTRANSPARENT
));
3164 dc
.SetBackgroundMode(wxTRANSPARENT
);
3165 int text_extraH
= (total_h
> text_h
) ? (total_h
- text_h
)/2 : 0;
3166 int img_extraH
= (total_h
> m_imgHeight
)? (total_h
-m_imgHeight
)/2: 0;
3168 for ( size_t i
= 0; i
< GetColumnCount(); ++i
) {
3169 if (!m_owner
->GetHeaderWindow()->GetColumnShown(i
)) continue;
3170 int colwidth
= m_owner
->GetHeaderWindow()->GetColumnWidth(i
);
3172 int image_x
= x_colstart
+ MARGIN
;
3174 if(i
== GetMainColumn()) {
3175 image
= item
->GetCurrentImage();
3176 image_x
= item
->GetX() - m_imgWidth2
;
3177 image_w
= m_imgWidth
+ MARGIN
;
3181 image
= item
->GetImage(i
);
3182 if (image
!= NO_IMAGE
) image_w
= m_imgWidth
+ MARGIN
;
3185 // honor text alignment
3186 wxString text
= item
->GetText(i
);
3187 switch ( m_owner
->GetHeaderWindow()->GetColumn(i
).GetAlignment() ) {
3188 case wxTL_ALIGN_LEFT
:
3189 // already left aligned
3191 case wxTL_ALIGN_RIGHT
:
3192 dc
.GetTextExtent(text
, &text_w
, NULL
);
3193 image_x
= x_colstart
+ colwidth
- (image_w
+ text_w
+ MARGIN
);
3195 case wxTL_ALIGN_CENTER
:
3196 dc
.GetTextExtent(text
, &text_w
, NULL
);
3197 int w
= colwidth
- image_w
- text_w
;
3198 image_x
= x_colstart
+ (w
> 0)? w
: 0;
3201 int text_x
= image_x
+ image_w
;
3203 wxDCClipper
clipper (dc
, x_colstart
, item
->GetY(), colwidth
, total_h
);
3204 if (image
!= NO_IMAGE
)
3206 int image_y
= item
->GetY() + img_extraH
;
3207 m_imageListNormal
->Draw ( image
, dc
, image_x
, image_y
,
3208 wxIMAGELIST_DRAW_TRANSPARENT
);
3210 int text_y
= item
->GetY() + text_extraH
;
3211 dc
.DrawText ( text
, (wxCoord
)text_x
, (wxCoord
)text_y
);
3213 x_colstart
+= colwidth
;
3216 // restore normal font
3217 dc
.SetFont( m_normalFont
);
3220 // Now y stands for the top of the item, whereas it used to stand for middle !
3221 void wxTreeListMainWindow::PaintLevel (wxTreeListItem
*item
, wxDC
&dc
,
3222 int level
, int &y
, int x_colstart
)
3224 // Handle hide root (only level 0)
3225 if (HasFlag(wxTR_HIDE_ROOT
) && (level
== 0)) {
3226 // always expand hidden root
3227 wxArrayTreeListItems
& children
= item
->GetChildren();
3229 for (n
= 0; n
< (int)children
.Count(); n
++) {
3230 PaintLevel (children
[n
], dc
, 1, y
, x_colstart
);
3232 // end after expanding root
3236 // calculate position of vertical lines
3237 int x
= x_colstart
+ MARGIN
; // start of column
3238 if (HasFlag(wxTR_LINES_AT_ROOT
)) x
+= LINEATROOT
; // space for lines at root
3239 if (HasButtons()) x
+= m_btnWidth2
; // space for buttons etc.
3240 if (!HasFlag(wxTR_HIDE_ROOT
)) x
+= m_indent
; // indent root as well
3241 x
+= m_indent
* level
; // indent according to level
3243 // handle column text
3247 int h
= GetLineHeight(item
);
3249 int y_mid
= y_top
+ (h
/2);
3252 int exposed_x
= dc
.LogicalToDeviceX(0);
3253 int exposed_y
= dc
.LogicalToDeviceY(y_top
);
3255 if (IsExposed(exposed_x
, exposed_y
, 10000, h
)) // 10000 = very much
3257 if (HasFlag(wxTR_ROW_LINES
))
3259 //dc.DestroyClippingRegion();
3260 int total_width
= m_owner
->GetHeaderWindow()->GetWidth();
3261 // if the background colour is white, choose a
3262 // contrasting color for the lines
3263 dc
.SetPen (*((GetBackgroundColour() == *wxWHITE
)?
3264 wxMEDIUM_GREY_PEN
: wxWHITE_PEN
));
3265 dc
.DrawLine(0, y_top
, total_width
, y_top
);
3266 dc
.DrawLine(0, y
, total_width
, y
);
3269 // restore DC objects
3270 dc
.SetBrush(*wxWHITE_BRUSH
);
3271 dc
.SetPen(m_dottedPen
);
3272 dc
.SetTextForeground(*wxBLACK
);
3274 if (((level
== 0) || ((level
== 1) && HasFlag(wxTR_HIDE_ROOT
))) &&
3275 HasFlag(wxTR_LINES_AT_ROOT
) && !HasFlag(wxTR_NO_LINES
)) {
3276 int rootPos
= x_colstart
+ MARGIN
;
3277 dc
.DrawLine (rootPos
, y_mid
, rootPos
+LINEATROOT
, y_mid
);
3280 size_t clip_width
= m_owner
->GetHeaderWindow()->
3281 GetColumn(m_main_column
).GetWidth();
3282 //m_columns[m_main_column].GetWidth();
3284 if (item
->HasPlus() && HasButtons()) // should the item show a button?
3286 if (!HasFlag(wxTR_NO_LINES
)) {
3287 int lineOffset
= m_indent
- m_btnWidth2
;
3288 dc
.DrawLine(x
-lineOffset
, y_mid
, x
-m_imgWidth2
, y_mid
);
3291 // clip to the column width
3292 wxDCClipper
clipper(dc
, x_colstart
, y_top
, clip_width
, 10000);
3294 if (m_imageListButtons
!= NULL
)
3296 // draw the image button here
3297 int image
= wxTreeItemIcon_Normal
;
3298 if (item
->IsExpanded()) image
= wxTreeItemIcon_Expanded
;
3299 if (item
->IsSelected())
3300 image
+= wxTreeItemIcon_Selected
- wxTreeItemIcon_Normal
;
3301 int xx
= x
+ m_btnWidth2
;
3302 int yy
= y_mid
- m_btnHeight2
;
3303 dc
.SetClippingRegion(xx
, yy
, m_btnWidth
, m_btnHeight
);
3304 m_imageListButtons
->Draw(image
, dc
, xx
, yy
,
3305 wxIMAGELIST_DRAW_TRANSPARENT
);
3306 dc
.DestroyClippingRegion();
3308 else if (HasFlag(wxTR_TWIST_BUTTONS
))
3310 // draw the twisty button here
3311 dc
.SetPen(*wxBLACK_PEN
);
3312 dc
.SetBrush(*m_hilightBrush
);
3316 if (item
->IsExpanded())
3318 button
[0].x
= (x
-m_indent
) - m_btnWidth2
;
3319 button
[0].y
= y_mid
- (m_btnHeight
/3-1);
3320 button
[1].x
= button
[0].x
+ m_btnWidth
;
3321 button
[1].y
= button
[0].y
;
3323 button
[2].y
= y_mid
+ (m_btnHeight
/3);
3327 button
[0].x
= (x
-m_indent
) - (m_btnWidth
/3-1);
3328 button
[0].y
= y_mid
-m_btnHeight2
;
3329 button
[1].x
= button
[0].x
;
3330 button
[1].y
= button
[0].y
+ m_btnHeight
;
3331 button
[2].x
= button
[0].x
+ (m_btnWidth
/3);
3332 button
[2].y
= y_mid
;
3334 dc
.DrawPolygon(3, button
);
3336 dc
.SetPen(m_dottedPen
);
3338 else // if (HasFlag(wxTR_HAS_BUTTONS))
3340 // draw the plus sign here
3341 dc
.SetPen(*wxGREY_PEN
);
3342 dc
.SetBrush(*wxWHITE_BRUSH
);
3343 int xpos
= x
- m_indent
;
3344 dc
.DrawRectangle (xpos
-m_btnWidth2
, y_mid
-m_btnHeight2
,
3345 m_btnWidth
, m_btnHeight
);
3346 dc
.SetPen(*wxBLACK_PEN
);
3347 dc
.DrawLine (xpos
-(m_btnWidth2
-3), y_mid
,
3348 xpos
+(m_btnWidth2
-2), y_mid
);
3349 if (!item
->IsExpanded())
3350 dc
.DrawLine (xpos
, y_mid
-(m_btnHeight2
-2),
3351 xpos
, y_mid
+(m_btnHeight2
-1));
3352 dc
.SetPen(m_dottedPen
);
3355 else if (!HasFlag(wxTR_NO_LINES
)) // no button; maybe a line?
3357 // clip to the column width
3358 wxDCClipper
clipper(dc
, x_colstart
, y_top
, clip_width
, 10000);
3360 // draw the horizontal line here
3361 if (!(level
== 0) && !((level
== 1) && HasFlag(wxTR_HIDE_ROOT
))) {
3362 dc
.DrawLine(x
-m_indent
, y_mid
, x
-m_imgWidth2
, y_mid
);
3368 // don't draw rect outline if we already have the
3369 // background color under Mac
3370 (item
->IsSelected() && m_hasFocus
) ? wxBLACK_PEN
:
3371 #endif // !__WXMAC__
3375 if ( item
->IsSelected() )
3377 colText
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
3381 wxTreeItemAttr
*attr
= item
->GetAttributes();
3382 if (attr
&& attr
->HasTextColour())
3383 colText
= attr
->GetTextColour();
3385 //colText = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOWTEXT);
3386 colText
= GetForegroundColour();
3390 dc
.SetTextForeground(colText
);
3394 PaintItem(item
, dc
);
3397 // restore DC objects
3398 dc
.SetBrush(*wxWHITE_BRUSH
);
3399 dc
.SetPen(m_dottedPen
);
3400 dc
.SetTextForeground(*wxBLACK
);
3402 if (item
->IsExpanded())
3404 wxArrayTreeListItems
& children
= item
->GetChildren();
3406 // clip to the column width
3407 size_t clip_width
= m_owner
->GetHeaderWindow()->
3408 GetColumn(m_main_column
).GetWidth();
3409 wxDCClipper
clipper(dc
, x_colstart
, y_top
, clip_width
, 10000);
3411 // process lower levels
3412 int oldY
= y_mid
+ m_imgHeight2
;
3415 for (n
= 0; n
< (int)children
.Count(); n
++) {
3417 if (!HasFlag(wxTR_NO_LINES
))
3419 // draw line down to last child
3420 if (children
[n
]->HasPlus() && HasButtons()) {
3421 y2
= y
+ h
/2 - m_btnHeight2
;
3422 dc
.DrawLine(x
, oldY
, x
, y2
);
3423 oldY
= y2
+ m_btnHeight
;
3426 dc
.DrawLine(x
, oldY
, x
, y2
);
3431 PaintLevel (children
[n
], dc
, level
+1, y
, x_colstart
);
3436 void wxTreeListMainWindow::DrawDropEffect(wxTreeListItem
*item
)
3440 if ( item
->HasPlus() )
3442 // it's a folder, indicate it by a border
3447 // draw a line under the drop target because the item will be
3449 DrawLine(item
, TRUE
/* below */);
3452 SetCursor(wxCURSOR_BULLSEYE
);
3457 SetCursor(wxCURSOR_NO_ENTRY
);
3461 void wxTreeListMainWindow::DrawBorder(const wxTreeItemId
&item
)
3463 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxTreeListMainWindow::DrawLine") );
3465 wxTreeListItem
*i
= (wxTreeListItem
*) item
.m_pItem
;
3467 wxClientDC
dc(this);
3469 dc
.SetLogicalFunction(wxINVERT
);
3470 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
3472 int w
= i
->GetWidth() + 2;
3473 int h
= GetLineHeight(i
) + 2;
3475 dc
.DrawRectangle( i
->GetX() - 1, i
->GetY() - 1, w
, h
);
3478 void wxTreeListMainWindow::DrawLine(const wxTreeItemId
&item
, bool below
)
3480 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxTreeListMainWindow::DrawLine") );
3482 wxTreeListItem
*i
= (wxTreeListItem
*) item
.m_pItem
;
3484 wxClientDC
dc(this);
3486 dc
.SetLogicalFunction(wxINVERT
);
3492 y
+= GetLineHeight(i
) - 1;
3495 dc
.DrawLine( x
, y
, x
+ i
->GetWidth(), y
);
3498 // ----------------------------------------------------------------------------
3499 // wxWindows callbacks
3500 // ----------------------------------------------------------------------------
3502 void wxTreeListMainWindow::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
3508 if(!GetColumnCount()) return; // ALB
3513 // calculate button size
3514 m_btnWidth
= 0, m_btnWidth2
= 0;
3515 m_btnHeight
= 0, m_btnHeight2
= 0;
3516 if (m_imageListButtons
) {
3517 m_imageListButtons
->GetSize (0, m_btnWidth
, m_btnHeight
);
3518 }else if (HasButtons()) {
3519 m_btnWidth
= BTNWIDTH
;
3520 m_btnHeight
= BTNHEIGHT
;
3522 m_btnWidth2
= m_btnWidth
/2;
3523 m_btnHeight2
= m_btnHeight
/2;
3525 // calculate image size
3526 m_imgWidth
= 0, m_imgWidth2
= 0;
3527 m_imgHeight
= 0, m_imgHeight2
= 0;
3528 if (m_imageListNormal
) {
3529 m_imageListNormal
->GetSize (0, m_imgWidth
, m_imgHeight
);
3530 m_imgWidth
+= 4; //? ToDo: Why + 4?
3532 m_imgWidth2
= m_imgWidth
/2;
3533 m_imgHeight2
= m_imgHeight
/2;
3535 // calculate indent size
3536 int btnIndent
= HasButtons()? m_btnWidth
+ LINEATROOT
: 0;
3537 m_indent
= wxMax (MININDENT
, wxMax (m_imgWidth
, btnIndent
)) + MARGIN
;
3539 // set default values
3540 dc
.SetFont( m_normalFont
);
3541 dc
.SetPen( m_dottedPen
);
3543 // this is now done dynamically
3544 //if(GetImageList() == NULL)
3545 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
3547 // calculate column start and paint
3550 for (i
= 0; i
< (int)GetMainColumn(); ++i
) {
3551 if (!m_owner
->GetHeaderWindow()->GetColumnShown(i
)) continue;
3552 x_colstart
+= m_owner
->GetHeaderWindow()->GetColumnWidth (i
);
3555 PaintLevel ( m_anchor
, dc
, 0, y
, x_colstart
);
3558 void wxTreeListMainWindow::OnSetFocus( wxFocusEvent
&event
)
3567 void wxTreeListMainWindow::OnKillFocus( wxFocusEvent
&event
)
3576 void wxTreeListMainWindow::OnChar( wxKeyEvent
&event
)
3578 wxTreeEvent
te( wxEVT_COMMAND_TREE_KEY_DOWN
, m_owner
->GetId() );
3579 te
.SetKeyEvent( event
);
3580 te
.SetEventObject( /*this*/m_owner
);
3581 if ( m_owner
->GetEventHandler()->ProcessEvent( te
) )
3583 // intercepted by the user code
3587 if ( (m_current
== 0) || (m_key_current
== 0) )
3593 // how should the selection work for this event?
3594 bool is_multiple
, extended_select
, unselect_others
;
3595 EventFlagsToSelType(GetWindowStyleFlag(),
3597 event
.ControlDown(),
3598 is_multiple
, extended_select
, unselect_others
);
3600 // + : Expand (not on Win32)
3601 // - : Collaspe (not on Win32)
3602 // * : Expand all/Collapse all
3603 // ' ' | return : activate
3604 // up : go up (not last children!)
3606 // left : go to parent (or collapse on Win32)
3607 // right : open if parent and go next (or expand on Win32)
3608 // home : go to root
3609 // end : go to last item without opening parents
3610 switch (event
.KeyCode())
3612 #ifndef __WXMSW__ // mimic the standard win32 tree ctrl
3615 if (m_current
->HasPlus() && !IsExpanded(m_current
))
3624 if ( !IsExpanded(m_current
) )
3627 ExpandAll(m_current
);
3630 //else: fall through to Collapse() it
3632 #ifndef __WXMSW__ // mimic the standard wxTreeCtrl behaviour
3635 if (IsExpanded(m_current
))
3637 Collapse(m_current
);
3645 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_ACTIVATED
,
3647 event
.SetItem( (long) m_current
);
3648 event
.SetEventObject( /*this*/m_owner
);
3649 m_owner
->GetEventHandler()->ProcessEvent( event
);
3653 // up goes to the previous sibling or to the last
3654 // of its children if it's expanded
3657 wxTreeItemId prev
= GetPrevSibling( m_key_current
);
3660 prev
= GetItemParent( m_key_current
);
3661 if ((prev
== GetRootItem()) && HasFlag(wxTR_HIDE_ROOT
))
3663 break; // don't go to root if it is hidden
3668 wxTreeItemId current
= m_key_current
;
3669 // TODO: Huh? If we get here, we'd better be the first child of our parent. How else could it be?
3670 if (current
== GetFirstChild( prev
, cookie
))
3672 // otherwise we return to where we came from
3673 SelectItem( prev
, unselect_others
, extended_select
);
3674 m_key_current
= (wxTreeListItem
*) prev
.m_pItem
;
3675 EnsureVisible( prev
);
3682 while ( IsExpanded(prev
) && HasChildren(prev
) )
3684 wxTreeItemId child
= GetLastChild(prev
);
3691 SelectItem( prev
, unselect_others
, extended_select
);
3692 m_key_current
=(wxTreeListItem
*) prev
.m_pItem
;
3693 EnsureVisible( prev
);
3698 // left arrow goes to the parent
3700 #if defined(__WXMSW__) // mimic the standard win32 tree ctrl
3701 if (IsExpanded(m_current
))
3703 Collapse(m_current
);
3708 wxTreeItemId prev
= GetItemParent( m_current
);
3709 if ((prev
== GetRootItem()) && HasFlag(wxTR_HIDE_ROOT
))
3711 // don't go to root if it is hidden
3712 prev
= GetPrevSibling( m_current
);
3716 EnsureVisible( prev
);
3717 SelectItem( prev
, unselect_others
, extended_select
);
3723 #if defined(__WXMSW__) // mimic the standard win32 tree ctrl
3724 if (m_current
->HasPlus() && !IsExpanded(m_current
))
3731 // this works the same as the down arrow except that we
3732 // also expand the item if it wasn't expanded yet
3738 if (IsExpanded(m_key_current
) && HasChildren(m_key_current
))
3741 wxTreeItemId child
= GetFirstChild( m_key_current
, cookie
);
3742 SelectItem( child
, unselect_others
, extended_select
);
3743 m_key_current
=(wxTreeListItem
*) child
.m_pItem
;
3744 EnsureVisible( child
);
3748 wxTreeItemId next
= GetNextSibling( m_key_current
);
3751 wxTreeItemId current
= m_key_current
;
3752 while (current
&& !next
)
3754 current
= GetItemParent( current
);
3755 if (current
) next
= GetNextSibling( current
);
3760 SelectItem( next
, unselect_others
, extended_select
);
3761 m_key_current
=(wxTreeListItem
*) next
.m_pItem
;
3762 EnsureVisible( next
);
3768 // <End> selects the last visible tree item
3771 wxTreeItemId last
= GetRootItem();
3773 while ( last
.IsOk() && IsExpanded(last
) )
3775 wxTreeItemId lastChild
= GetLastChild(last
);
3777 // it may happen if the item was expanded but then all of
3778 // its children have been deleted - so IsExpanded() returned
3779 // TRUE, but GetLastChild() returned invalid item
3788 EnsureVisible( last
);
3789 SelectItem( last
, unselect_others
, extended_select
);
3794 // <Home> selects the root item
3797 wxTreeItemId prev
= GetRootItem();
3799 if (HasFlag(wxTR_HIDE_ROOT
))
3802 prev
= GetFirstChild(prev
, dummy
);
3805 EnsureVisible( prev
);
3806 SelectItem( prev
, unselect_others
, extended_select
);
3815 wxTreeItemId
wxTreeListMainWindow::HitTest(const wxPoint
& point
, int& flags
,
3818 // JACS: removed wxYieldIfNeeded() because it can cause the window
3819 // to be deleted from under us if a close window event is pending
3825 if (point
.x
<0) flags
|= wxTREE_HITTEST_TOLEFT
;
3826 if (point
.x
>w
) flags
|= wxTREE_HITTEST_TORIGHT
;
3827 if (point
.y
<0) flags
|= wxTREE_HITTEST_ABOVE
;
3828 if (point
.y
>h
) flags
|= wxTREE_HITTEST_BELOW
;
3829 if (flags
) return wxTreeItemId();
3831 if (m_anchor
== NULL
)
3833 flags
= wxTREE_HITTEST_NOWHERE
;
3834 return wxTreeItemId();
3837 wxClientDC
dc(this);
3839 wxCoord x
= dc
.DeviceToLogicalX( point
.x
);
3840 wxCoord y
= dc
.DeviceToLogicalY( point
.y
);
3841 wxTreeListItem
*hit
= m_anchor
->HitTest(wxPoint(x
, y
), this, flags
,
3845 flags
= wxTREE_HITTEST_NOWHERE
;
3846 return wxTreeItemId();
3851 // get the bounding rectangle of the item (or of its label only)
3852 bool wxTreeListMainWindow::GetBoundingRect(const wxTreeItemId
& item
,
3854 bool WXUNUSED(textOnly
)) const
3856 wxCHECK_MSG( item
.IsOk(), FALSE
, _T("invalid item in wxTreeListMainWindow::GetBoundingRect") );
3858 wxTreeListItem
*i
= (wxTreeListItem
*) item
.m_pItem
;
3861 GetViewStart(& startX
, & startY
);
3863 rect
.x
= i
->GetX() - startX
*PIXELS_PER_UNIT
;
3864 rect
.y
= i
->GetY() - startY
*PIXELS_PER_UNIT
;
3865 rect
.width
= i
->GetWidth();
3866 //rect.height = i->GetHeight();
3867 rect
.height
= GetLineHeight(i
);
3874 void wxTreeListMainWindow::Edit( const wxTreeItemId
& item
)
3876 if (!item
.IsOk()) return;
3878 m_currentEdit
= (wxTreeListItem
*) item
.m_pItem
;
3880 wxTreeEvent
te( wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, m_owner
->GetId() );
3881 te
.SetItem( (long) m_currentEdit
);
3882 te
.SetEventObject( /*this*/m_owner
);
3883 m_owner
->GetEventHandler()->ProcessEvent( te
);
3885 if (!te
.IsAllowed()) return;
3887 // We have to call this here because the label in
3888 // question might just have been added and no screen
3889 // update taken place.
3890 if (m_dirty
) wxYieldIfNeeded();
3892 wxString s
= m_currentEdit
->GetText(/*ALB*/m_main_column
);
3893 int x
= m_currentEdit
->GetX();
3894 int y
= m_currentEdit
->GetY();
3895 int w
= m_currentEdit
->GetWidth();
3896 int h
= m_currentEdit
->GetHeight();
3898 int image
= m_currentEdit
->GetCurrentImage();
3900 w
-= m_imgWidth
+ 4; // I don't know why +4 is needed
3902 wxClientDC
dc(this);
3904 x
= dc
.LogicalToDeviceX( x
);
3905 y
= dc
.LogicalToDeviceY( y
);
3907 wxTreeListTextCtrl
*text
= new wxTreeListTextCtrl(this, -1,
3917 void wxTreeListMainWindow::OnRenameTimer()
3922 void wxTreeListMainWindow::OnRenameAccept()
3924 // TODO if the validator fails this causes a crash
3925 wxTreeEvent
le( wxEVT_COMMAND_TREE_END_LABEL_EDIT
, m_owner
->GetId() );
3926 le
.SetItem( (long) m_currentEdit
);
3927 le
.SetEventObject( /*this*/m_owner
);
3928 le
.SetLabel( m_renameRes
);
3929 m_owner
->GetEventHandler()->ProcessEvent( le
);
3931 if (!le
.IsAllowed()) return;
3933 SetItemText( m_currentEdit
, m_renameRes
);
3936 void wxTreeListMainWindow::OnMouse( wxMouseEvent
&event
)
3938 if ( !m_anchor
) return;
3940 // we process left mouse up event (enables in-place edit), right down
3941 // (pass to the user code), left dbl click (activate item) and
3942 // dragging/moving events for items drag-and-drop
3943 if ( !(event
.LeftDown() ||
3945 event
.RightDown() ||
3946 event
.LeftDClick() ||
3948 ((event
.Moving() || event
.RightUp()) && m_isDragging
)) )
3954 if ( event
.LeftDown() )
3957 wxClientDC
dc(this);
3959 wxCoord x
= dc
.DeviceToLogicalX( event
.GetX() );
3960 wxCoord y
= dc
.DeviceToLogicalY( event
.GetY() );
3963 wxTreeListItem
*item
= m_anchor
->HitTest(wxPoint(x
,y
), this, flags
, 0);
3965 if ( event
.Dragging() && !m_isDragging
)
3967 if (m_dragCount
== 0)
3968 m_dragStart
= wxPoint(x
,y
);
3972 if (m_dragCount
!= 3)
3974 // wait until user drags a bit further...
3978 wxEventType command
= event
.RightIsDown()
3979 ? wxEVT_COMMAND_TREE_BEGIN_RDRAG
3980 : wxEVT_COMMAND_TREE_BEGIN_DRAG
;
3982 wxTreeEvent
nevent( command
,/*ALB*/ m_owner
->GetId() );
3983 nevent
.SetItem( (long) m_current
);
3984 nevent
.SetEventObject(/*this*/m_owner
); // ALB
3986 // by default the dragging is not supported, the user code must
3987 // explicitly allow the event for it to take place
3990 if ( m_owner
->GetEventHandler()->ProcessEvent(nevent
) &&
3991 nevent
.IsAllowed() )
3993 // we're going to drag this item
3994 m_isDragging
= TRUE
;
3996 // remember the old cursor because we will change it while
3998 m_oldCursor
= m_cursor
;
4000 // in a single selection control, hide the selection temporarily
4001 if ( !(GetWindowStyleFlag() & wxTR_MULTIPLE
) )
4003 m_oldSelection
= (wxTreeListItem
*) GetSelection().m_pItem
;
4005 if ( m_oldSelection
)
4007 m_oldSelection
->SetHilight(FALSE
);
4008 RefreshLine(m_oldSelection
);
4015 else if ( event
.Moving() )
4017 if ( item
!= m_dropTarget
)
4019 // unhighlight the previous drop target
4020 DrawDropEffect(m_dropTarget
);
4022 m_dropTarget
= item
;
4024 // highlight the current drop target if any
4025 DrawDropEffect(m_dropTarget
);
4030 else if ( (event
.LeftUp() || event
.RightUp()) && m_isDragging
)
4032 // erase the highlighting
4033 DrawDropEffect(m_dropTarget
);
4035 if ( m_oldSelection
)
4037 m_oldSelection
->SetHilight(TRUE
);
4038 RefreshLine(m_oldSelection
);
4039 m_oldSelection
= (wxTreeListItem
*)NULL
;
4042 // generate the drag end event
4043 wxTreeEvent
event(wxEVT_COMMAND_TREE_END_DRAG
,/*ALB*/m_owner
->GetId());
4045 event
.SetItem( (long) item
);
4046 event
.SetPoint( wxPoint(x
, y
) );
4047 event
.SetEventObject(/*this*/m_owner
);
4049 (void)m_owner
->GetEventHandler()->ProcessEvent(event
);
4051 m_isDragging
= FALSE
;
4052 m_dropTarget
= (wxTreeListItem
*)NULL
;
4056 SetCursor(m_oldCursor
);
4062 // here we process only the messages which happen on tree items
4066 if ( item
== NULL
) return; /* we hit the blank area */
4068 if ( event
.RightDown() )
4071 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
,
4073 nevent
.SetItem( (long) item
);
4075 CalcScrolledPosition(x
, y
, &nx
, &ny
);
4076 nevent
.SetPoint( wxPoint(nx
, ny
));
4077 nevent
.SetEventObject(/*this*/m_owner
);
4078 m_owner
->GetEventHandler()->ProcessEvent(nevent
);
4080 else if ( event
.LeftUp() )
4084 if ( ( item
== m_current
) &&
4085 ( flags
& wxTREE_HITTEST_ONITEMLABEL
) &&
4086 HasFlag(wxTR_EDIT_LABELS
) )
4088 if ( m_renameTimer
->IsRunning() )
4089 m_renameTimer
->Stop();
4091 m_renameTimer
->Start( 100, TRUE
);
4094 m_lastOnSame
= FALSE
;
4097 else // !RightDown() && !LeftUp() ==> LeftDown() || LeftDClick()
4099 if ( event
.LeftDown() )
4102 m_lastOnSame
= item
== m_current
;
4105 if ((flags
& wxTREE_HITTEST_ONITEMBUTTON
) ||
4106 ((flags
& wxTREE_HITTEST_ONITEMICON
)) &&
4107 !HasButtons() && item
->HasPlus())
4109 // only toggle the item for a single click, double click on
4110 // the button doesn't do anything (it toggles the item twice)
4111 if ( event
.LeftDown() )
4116 // don't select the item if the button was clicked
4120 // how should the selection work for this event?
4121 bool is_multiple
, extended_select
, unselect_others
;
4122 EventFlagsToSelType(GetWindowStyleFlag(),
4124 event
.ControlDown(),
4125 is_multiple
, extended_select
, unselect_others
);
4127 SelectItem (item
, unselect_others
, extended_select
);
4129 // For some reason, Windows isn't recognizing a left double-click,
4130 // so we need to simulate it here. Allow 200 milliseconds for now.
4131 if ( event
.LeftDClick() )
4133 // double clicking should not start editing the item label
4134 m_renameTimer
->Stop();
4135 m_lastOnSame
= FALSE
;
4137 // send activate event first
4138 wxTreeEvent
nevent( wxEVT_COMMAND_TREE_ITEM_ACTIVATED
,
4140 nevent
.SetItem( (long) item
);
4142 CalcScrolledPosition(x
, y
, &nx
, &ny
);
4143 nevent
.SetPoint( wxPoint(nx
, ny
) );
4144 nevent
.SetEventObject( /*this*/m_owner
);
4145 if ( !m_owner
->GetEventHandler()->ProcessEvent( nevent
) )
4147 // if the user code didn't process the activate event,
4148 // handle it ourselves by toggling the item when it is
4150 if ( item
->HasPlus() )
4160 void wxTreeListMainWindow::OnIdle( wxIdleEvent
&WXUNUSED(event
) )
4162 /* after all changes have been done to the tree control,
4163 * we actually redraw the tree when everything is over */
4165 if (!m_dirty
) return;
4169 CalculatePositions();
4171 AdjustMyScrollbars();
4174 void wxTreeListMainWindow::OnSize(wxSizeEvent
& WXUNUSED(event
))
4177 // GetClientSize(&w, &h);
4178 // m_header_win->SetSize(0, 0, w, HEADER_HEIGHT);
4181 void wxTreeListMainWindow::OnScroll(wxScrollWinEvent
& event
)
4184 #if defined(__WXGTK__) && !defined(__WXUNIVERSAL__)
4185 wxScrolledWindow::OnScroll(event
);
4187 HandleOnScroll( event
);
4190 if(event
.GetOrientation() == wxHORIZONTAL
)
4192 m_owner
->GetHeaderWindow()->Refresh();
4194 m_owner
->GetHeaderWindow()->MacUpdateImmediately();
4200 void wxTreeListMainWindow::CalculateSize( wxTreeListItem
*item
, wxDC
&dc
)
4206 dc
.SetFont(m_boldFont
);
4208 dc
.GetTextExtent( item
->GetText(/*ALB*/m_main_column
), &text_w
, &text_h
);
4211 // restore normal font
4212 dc
.SetFont( m_normalFont
);
4214 int image
= item
->GetCurrentImage();
4215 int total_h
= (m_imgHeight
> text_h
) ? m_imgHeight
: text_h
;
4217 item
->SetHeight(total_h
);
4218 if (total_h
>m_lineHeight
)
4219 m_lineHeight
=total_h
;
4221 item
->SetWidth(m_imgWidth
+ text_w
+2);
4224 // -----------------------------------------------------------------------------
4225 // for developper : y is now the top of the level
4226 // not the middle of it !
4227 void wxTreeListMainWindow::CalculateLevel( wxTreeListItem
*item
, wxDC
&dc
,
4228 int level
, int &y
, int x_colstart
)
4230 // calculate position of vertical lines
4231 int x
= x_colstart
+ MARGIN
; // start of column
4232 if (HasFlag(wxTR_LINES_AT_ROOT
)) x
+= LINEATROOT
; // space for lines at root
4233 if (HasButtons()) x
+= m_btnWidth2
; // space for buttons etc.
4234 if (!HasFlag(wxTR_HIDE_ROOT
)) x
+= m_indent
; // indent root as well
4235 x
+= m_indent
* level
; // indent according to level
4237 // a hidden root is not evaluated, but its children are always
4238 if (HasFlag(wxTR_HIDE_ROOT
) && (level
== 0)) goto Recurse
;
4240 CalculateSize( item
, dc
);
4245 y
+= GetLineHeight(item
);
4247 // we don't need to calculate collapsed branches
4248 if ( !item
->IsExpanded() ) return;
4251 wxArrayTreeListItems
& children
= item
->GetChildren();
4252 size_t n
, count
= children
.Count();
4254 for (n
= 0; n
< count
; ++n
)
4255 CalculateLevel( children
[n
], dc
, level
, y
, x_colstart
); // recurse
4258 void wxTreeListMainWindow::CalculatePositions()
4260 if ( !m_anchor
) return;
4262 wxClientDC
dc(this);
4265 dc
.SetFont( m_normalFont
);
4267 dc
.SetPen( m_dottedPen
);
4268 //if(GetImageList() == NULL)
4269 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
4273 for(size_t i
= 0; i
< GetMainColumn(); ++i
) {
4274 if (!m_owner
->GetHeaderWindow()->GetColumnShown(i
)) continue;
4275 x_colstart
+= m_owner
->GetHeaderWindow()->GetColumnWidth(i
);
4277 CalculateLevel( m_anchor
, dc
, 0, y
, x_colstart
); // start recursion
4280 void wxTreeListMainWindow::RefreshSubtree(wxTreeListItem
*item
)
4282 if (m_dirty
) return;
4284 wxClientDC
dc(this);
4289 GetClientSize( &cw
, &ch
);
4292 rect
.x
= dc
.LogicalToDeviceX( 0 );
4294 rect
.y
= dc
.LogicalToDeviceY( item
->GetY() - 2 );
4297 Refresh( TRUE
, &rect
);
4299 AdjustMyScrollbars();
4302 void wxTreeListMainWindow::RefreshLine( wxTreeListItem
*item
)
4304 if (m_dirty
) return;
4306 wxClientDC
dc(this);
4311 GetClientSize( &cw
, &ch
);
4314 rect
.x
= dc
.LogicalToDeviceX( 0 );
4315 rect
.y
= dc
.LogicalToDeviceY( item
->GetY() );
4317 rect
.height
= GetLineHeight(item
); //dc.GetCharHeight() + 6;
4319 Refresh( TRUE
, &rect
);
4322 void wxTreeListMainWindow::RefreshSelected()
4324 // TODO: this is awfully inefficient, we should keep the list of all
4325 // selected items internally, should be much faster
4327 RefreshSelectedUnder(m_anchor
);
4330 void wxTreeListMainWindow::RefreshSelectedUnder(wxTreeListItem
*item
)
4332 if ( item
->IsSelected() )
4335 const wxArrayTreeListItems
& children
= item
->GetChildren();
4336 size_t count
= children
.GetCount();
4337 for ( size_t n
= 0; n
< count
; n
++ )
4339 RefreshSelectedUnder(children
[n
]);
4343 // ----------------------------------------------------------------------------
4344 // changing colours: we need to refresh the tree control
4345 // ----------------------------------------------------------------------------
4347 bool wxTreeListMainWindow::SetBackgroundColour(const wxColour
& colour
)
4349 if ( !wxWindow::SetBackgroundColour(colour
) )
4357 bool wxTreeListMainWindow::SetForegroundColour(const wxColour
& colour
)
4359 if ( !wxWindow::SetForegroundColour(colour
) )
4367 //----------- ALB -------------
4369 void wxTreeListMainWindow::SetItemText(const wxTreeItemId
& item
, size_t column
,
4370 const wxString
& text
)
4372 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
4374 wxClientDC
dc(this);
4375 wxTreeListItem
*pItem
= (wxTreeListItem
*) item
.m_pItem
;
4376 pItem
->SetText(column
, text
);
4377 CalculateSize(pItem
, dc
);
4382 wxString
wxTreeListMainWindow::GetItemText(const wxTreeItemId
& item
,
4383 size_t column
) const
4385 wxCHECK_MSG( item
.IsOk(), wxT(""), wxT("invalid tree item") );
4387 return ((wxTreeListItem
*) item
.m_pItem
)->GetText(column
);
4390 //-----------------------------
4392 //-----------------------------------------------------------------------------
4394 //-----------------------------------------------------------------------------
4396 IMPLEMENT_DYNAMIC_CLASS(wxTreeListCtrl
, wxControl
);
4398 BEGIN_EVENT_TABLE(wxTreeListCtrl
, wxControl
)
4399 EVT_SIZE(wxTreeListCtrl::OnSize
)
4402 bool wxTreeListCtrl::Create(wxWindow
*parent
, wxWindowID id
,
4405 long style
, const wxValidator
&validator
,
4406 const wxString
& name
)
4408 long main_style
= style
& ~(wxRAISED_BORDER
|wxSUNKEN_BORDER
4409 |wxSIMPLE_BORDER
|wxNO_BORDER
|wxDOUBLE_BORDER
4411 long ctrl_style
= style
& ~(wxVSCROLL
|wxHSCROLL
);
4413 if (!wxControl::Create(parent
, id
, pos
, size
, ctrl_style
, validator
, name
)) {
4416 m_main_win
= new wxTreeListMainWindow(this, -1, wxPoint(0, 0), size
,
4417 main_style
, validator
);
4418 m_header_win
= new wxTreeListHeaderWindow(this, -1, m_main_win
,
4419 wxPoint(0, 0), wxDefaultSize
,
4424 void wxTreeListCtrl::OnSize(wxSizeEvent
& event
)
4427 GetClientSize(&w
, &h
);
4429 m_header_win
->SetSize(0, 0, w
, HEADER_HEIGHT
);
4431 m_main_win
->SetSize(0, HEADER_HEIGHT
+ 1, w
, h
- HEADER_HEIGHT
- 1);
4435 size_t wxTreeListCtrl::GetCount() const { return m_main_win
->GetCount(); }
4437 unsigned int wxTreeListCtrl::GetIndent() const
4438 { return m_main_win
->GetIndent(); }
4440 void wxTreeListCtrl::SetIndent(unsigned int indent
)
4441 { m_main_win
->SetIndent(indent
); }
4443 unsigned int wxTreeListCtrl::GetLineSpacing() const
4444 { return m_main_win
->GetLineSpacing(); }
4446 void wxTreeListCtrl::SetLineSpacing(unsigned int spacing
)
4447 { m_main_win
->SetLineSpacing(spacing
); }
4449 wxImageList
* wxTreeListCtrl::GetImageList() const
4450 { return m_main_win
->GetImageList(); }
4452 wxImageList
* wxTreeListCtrl::GetStateImageList() const
4453 { return m_main_win
->GetStateImageList(); }
4455 wxImageList
* wxTreeListCtrl::GetButtonsImageList() const
4456 { return m_main_win
->GetButtonsImageList(); }
4458 void wxTreeListCtrl::SetImageList(wxImageList
* imageList
)
4459 { m_main_win
->SetImageList(imageList
); }
4461 void wxTreeListCtrl::SetStateImageList(wxImageList
* imageList
)
4462 { m_main_win
->SetStateImageList(imageList
); }
4464 void wxTreeListCtrl::SetButtonsImageList(wxImageList
* imageList
)
4465 { m_main_win
->SetButtonsImageList(imageList
); }
4467 void wxTreeListCtrl::AssignImageList(wxImageList
* imageList
)
4468 { m_main_win
->AssignImageList(imageList
); }
4470 void wxTreeListCtrl::AssignStateImageList(wxImageList
* imageList
)
4471 { m_main_win
->AssignStateImageList(imageList
); }
4473 void wxTreeListCtrl::AssignButtonsImageList(wxImageList
* imageList
)
4474 { m_main_win
->AssignButtonsImageList(imageList
); }
4476 wxString
wxTreeListCtrl::GetItemText(const wxTreeItemId
& item
, size_t column
)
4478 { return m_main_win
->GetItemText(item
, column
); }
4480 int wxTreeListCtrl::GetItemImage(const wxTreeItemId
& item
, size_t column
,
4481 wxTreeItemIcon which
) const
4482 { return m_main_win
->GetItemImage(item
, column
, which
); }
4484 wxTreeItemData
* wxTreeListCtrl::GetItemData(const wxTreeItemId
& item
) const
4485 { return m_main_win
->GetItemData(item
); }
4487 bool wxTreeListCtrl::GetItemBold(const wxTreeItemId
& item
) const
4488 { return m_main_win
->GetItemBold(item
); }
4490 wxColour
wxTreeListCtrl::GetItemTextColour(const wxTreeItemId
& item
) const
4491 { return m_main_win
->GetItemTextColour(item
); }
4493 wxColour
wxTreeListCtrl::GetItemBackgroundColour(const wxTreeItemId
& item
)
4495 { return m_main_win
->GetItemBackgroundColour(item
); }
4497 wxFont
wxTreeListCtrl::GetItemFont(const wxTreeItemId
& item
) const
4498 { return m_main_win
->GetItemFont(item
); }
4501 void wxTreeListCtrl::SetItemText(const wxTreeItemId
& item
, size_t column
,
4502 const wxString
& text
)
4503 { m_main_win
->SetItemText(item
, column
, text
); }
4505 void wxTreeListCtrl::SetItemImage(const wxTreeItemId
& item
,
4508 wxTreeItemIcon which
)
4509 { m_main_win
->SetItemImage(item
, column
, image
, which
); }
4511 void wxTreeListCtrl::SetItemData(const wxTreeItemId
& item
,
4512 wxTreeItemData
* data
)
4513 { m_main_win
->SetItemData(item
, data
); }
4515 void wxTreeListCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
4516 { m_main_win
->SetItemHasChildren(item
, has
); }
4518 void wxTreeListCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
4519 { m_main_win
->SetItemBold(item
, bold
); }
4521 void wxTreeListCtrl::SetItemTextColour(const wxTreeItemId
& item
,
4522 const wxColour
& col
)
4523 { m_main_win
->SetItemTextColour(item
, col
); }
4525 void wxTreeListCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
4526 const wxColour
& col
)
4527 { m_main_win
->SetItemBackgroundColour(item
, col
); }
4529 void wxTreeListCtrl::SetItemFont(const wxTreeItemId
& item
,
4531 { m_main_win
->SetItemFont(item
, font
); }
4533 bool wxTreeListCtrl::SetFont(const wxFont
& font
)
4535 if(m_header_win
) m_header_win
->SetFont(font
);
4537 return m_main_win
->SetFont(font
);
4541 void wxTreeListCtrl::SetWindowStyle(const long style
)
4544 m_main_win
->SetWindowStyle(style
);
4545 // TODO: provide something like wxTL_NO_HEADERS to hide m_header_win
4548 long wxTreeListCtrl::GetWindowStyle() const
4550 long style
= m_windowStyle
;
4552 style
|= m_main_win
->GetWindowStyle();
4556 bool wxTreeListCtrl::IsVisible(const wxTreeItemId
& item
) const
4557 { return m_main_win
->IsVisible(item
); }
4559 bool wxTreeListCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
4560 { return m_main_win
->ItemHasChildren(item
); }
4562 bool wxTreeListCtrl::IsExpanded(const wxTreeItemId
& item
) const
4563 { return m_main_win
->IsExpanded(item
); }
4565 bool wxTreeListCtrl::IsSelected(const wxTreeItemId
& item
) const
4566 { return m_main_win
->IsSelected(item
); }
4568 bool wxTreeListCtrl::IsBold(const wxTreeItemId
& item
) const
4569 { return m_main_win
->IsBold(item
); }
4571 size_t wxTreeListCtrl::GetChildrenCount(const wxTreeItemId
& item
, bool rec
)
4572 { return m_main_win
->GetChildrenCount(item
, rec
); }
4574 wxTreeItemId
wxTreeListCtrl::GetRootItem() const
4575 { return m_main_win
->GetRootItem(); }
4577 wxTreeItemId
wxTreeListCtrl::GetSelection() const
4578 { return m_main_win
->GetSelection(); }
4580 size_t wxTreeListCtrl::GetSelections(wxArrayTreeItemIds
& arr
) const
4581 { return m_main_win
->GetSelections(arr
); }
4583 wxTreeItemId
wxTreeListCtrl::GetItemParent(const wxTreeItemId
& item
) const
4584 { return m_main_win
->GetItemParent(item
); }
4586 wxTreeItemId
wxTreeListCtrl::GetFirstChild(const wxTreeItemId
& item
,
4588 { return m_main_win
->GetFirstChild(item
, cookie
); }
4590 wxTreeItemId
wxTreeListCtrl::GetNextChild(const wxTreeItemId
& item
,
4592 { return m_main_win
->GetNextChild(item
, cookie
); }
4594 wxTreeItemId
wxTreeListCtrl::GetLastChild(const wxTreeItemId
& item
) const
4595 { return m_main_win
->GetLastChild(item
); }
4597 wxTreeItemId
wxTreeListCtrl::GetNextSibling(const wxTreeItemId
& item
) const
4598 { return m_main_win
->GetNextSibling(item
); }
4600 wxTreeItemId
wxTreeListCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
4601 { return m_main_win
->GetPrevSibling(item
); }
4603 wxTreeItemId
wxTreeListCtrl::GetFirstVisibleItem() const
4604 { return m_main_win
->GetFirstVisibleItem(); }
4606 wxTreeItemId
wxTreeListCtrl::GetNextVisible(const wxTreeItemId
& item
) const
4607 { return m_main_win
->GetNextVisible(item
); }
4609 wxTreeItemId
wxTreeListCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
4610 { return m_main_win
->GetPrevVisible(item
); }
4612 wxTreeItemId
wxTreeListCtrl::GetNext(const wxTreeItemId
& item
) const
4613 { return m_main_win
->GetNext(item
); }
4615 wxTreeItemId
wxTreeListCtrl::AddRoot(const wxString
& text
, int image
,
4616 int selectedImage
, wxTreeItemData
* data
)
4617 { return m_main_win
->AddRoot(text
, image
, selectedImage
, data
); }
4619 wxTreeItemId
wxTreeListCtrl::PrependItem(const wxTreeItemId
& parent
,
4620 const wxString
& text
, int image
,
4622 wxTreeItemData
* data
)
4623 { return m_main_win
->PrependItem(parent
, text
, image
, selectedImage
, data
); }
4625 wxTreeItemId
wxTreeListCtrl::InsertItem(const wxTreeItemId
& parent
,
4626 const wxTreeItemId
& previous
,
4627 const wxString
& text
, int image
,
4629 wxTreeItemData
* data
)
4631 return m_main_win
->InsertItem(parent
, previous
, text
, image
,
4632 selectedImage
, data
);
4635 wxTreeItemId
wxTreeListCtrl::InsertItem(const wxTreeItemId
& parent
,
4637 const wxString
& text
, int image
,
4639 wxTreeItemData
* data
)
4641 return m_main_win
->InsertItem(parent
, index
, text
, image
,
4642 selectedImage
, data
);
4645 wxTreeItemId
wxTreeListCtrl::AppendItem(const wxTreeItemId
& parent
,
4646 const wxString
& text
, int image
,
4648 wxTreeItemData
* data
)
4649 { return m_main_win
->AppendItem(parent
, text
, image
, selectedImage
, data
); }
4651 void wxTreeListCtrl::Delete(const wxTreeItemId
& item
)
4652 { m_main_win
->Delete(item
); }
4654 void wxTreeListCtrl::DeleteChildren(const wxTreeItemId
& item
)
4655 { m_main_win
->DeleteChildren(item
); }
4657 void wxTreeListCtrl::DeleteAllItems()
4658 { m_main_win
->DeleteAllItems(); }
4660 void wxTreeListCtrl::Expand(const wxTreeItemId
& item
)
4661 { m_main_win
->Expand(item
); }
4663 void wxTreeListCtrl::ExpandAll(const wxTreeItemId
& item
)
4664 { m_main_win
->ExpandAll(item
); }
4666 void wxTreeListCtrl::Collapse(const wxTreeItemId
& item
)
4667 { m_main_win
->Collapse(item
); }
4669 void wxTreeListCtrl::CollapseAndReset(const wxTreeItemId
& item
)
4670 { m_main_win
->CollapseAndReset(item
); }
4672 void wxTreeListCtrl::Toggle(const wxTreeItemId
& item
)
4673 { m_main_win
->Toggle(item
); }
4675 void wxTreeListCtrl::Unselect()
4676 { m_main_win
->Unselect(); }
4678 void wxTreeListCtrl::UnselectAll()
4679 { m_main_win
->UnselectAll(); }
4681 void wxTreeListCtrl::SelectItem(const wxTreeItemId
& item
, bool unselect_others
,
4682 bool extended_select
)
4683 { m_main_win
->SelectItem(item
, unselect_others
, extended_select
); }
4685 void wxTreeListCtrl::EnsureVisible(const wxTreeItemId
& item
)
4686 { m_main_win
->EnsureVisible(item
); }
4688 void wxTreeListCtrl::ScrollTo(const wxTreeItemId
& item
)
4689 { m_main_win
->ScrollTo(item
); }
4691 wxTreeItemId
wxTreeListCtrl::HitTest(const wxPoint
& pos
, int& flags
,
4694 return m_main_win
->HitTest(m_main_win
->ScreenToClient(ClientToScreen(pos
)),
4698 bool wxTreeListCtrl::GetBoundingRect(const wxTreeItemId
& item
, wxRect
& rect
,
4699 bool textOnly
) const
4700 { return m_main_win
->GetBoundingRect(item
, rect
, textOnly
); }
4702 void wxTreeListCtrl::Edit(const wxTreeItemId
& item
)
4703 { m_main_win
->Edit(item
); }
4705 int wxTreeListCtrl::OnCompareItems(const wxTreeItemId
& item1
,
4706 const wxTreeItemId
& item2
)
4708 // ALB: do the comparison here, and not delegate to m_main_win, in order
4709 // to let the user override it
4710 //return m_main_win->OnCompareItems(item1, item2);
4711 return wxStrcmp(GetItemText(item1
), GetItemText(item2
));
4714 void wxTreeListCtrl::SortChildren(const wxTreeItemId
& item
)
4715 { m_main_win
->SortChildren(item
); }
4717 bool wxTreeListCtrl::SetBackgroundColour(const wxColour
& colour
)
4718 { return m_main_win
->SetBackgroundColour(colour
); }
4720 bool wxTreeListCtrl::SetForegroundColour(const wxColour
& colour
)
4721 { return m_main_win
->SetForegroundColour(colour
); }
4723 size_t wxTreeListCtrl::GetColumnCount() const
4724 { return m_main_win
->GetColumnCount(); }
4726 void wxTreeListCtrl::SetColumnWidth(size_t column
, size_t width
)
4727 { m_header_win
->SetColumnWidth(column
, width
); }
4729 int wxTreeListCtrl::GetColumnWidth(size_t column
) const
4730 { return m_header_win
->GetColumnWidth(column
); }
4732 void wxTreeListCtrl::SetMainColumn(size_t column
)
4733 { m_main_win
->SetMainColumn(column
); }
4735 size_t wxTreeListCtrl::GetMainColumn() const
4736 { return m_main_win
->GetMainColumn(); }
4738 void wxTreeListCtrl::SetColumnText(size_t column
, const wxString
& text
)
4740 m_header_win
->SetColumnText(column
, text
);
4741 m_header_win
->Refresh();
4744 wxString
wxTreeListCtrl::GetColumnText(size_t column
) const
4745 { return m_header_win
->GetColumnText(column
); }
4747 void wxTreeListCtrl::AddColumn(const wxTreeListColumnInfo
& col
)
4748 { m_header_win
->AddColumn(col
); }
4750 void wxTreeListCtrl::InsertColumn(size_t before
,
4751 const wxTreeListColumnInfo
& col
)
4752 { m_header_win
->InsertColumn(before
, col
); }
4754 void wxTreeListCtrl::RemoveColumn(size_t column
)
4755 { m_header_win
->RemoveColumn(column
); }
4757 void wxTreeListCtrl::SetColumn(size_t column
, const wxTreeListColumnInfo
& col
)
4758 { m_header_win
->SetColumn(column
, col
); }
4760 const wxTreeListColumnInfo
& wxTreeListCtrl::GetColumn(size_t column
) const
4761 { return m_header_win
->GetColumn(column
); }
4763 wxTreeListColumnInfo
& wxTreeListCtrl::GetColumn(size_t column
)
4764 { return m_header_win
->GetColumn(column
); }
4766 void wxTreeListCtrl::SetColumnImage(size_t column
, int image
)
4768 m_header_win
->SetColumn(column
, GetColumn(column
).SetImage(image
));
4771 int wxTreeListCtrl::GetColumnImage(size_t column
) const
4773 return m_header_win
->GetColumn(column
).GetImage();
4776 void wxTreeListCtrl::ShowColumn(size_t column
, bool shown
)
4778 m_header_win
->SetColumn(column
, GetColumn(column
).SetShown(shown
));
4781 bool wxTreeListCtrl::IsColumnShown(size_t column
) const
4783 return m_header_win
->GetColumn(column
).GetShown();
4786 void wxTreeListCtrl::SetColumnAlignment(size_t column
,
4787 wxTreeListColumnAlign align
)
4789 m_header_win
->SetColumn(column
, GetColumn(column
).SetAlignment(align
));
4792 wxTreeListColumnAlign
wxTreeListCtrl::GetColumnAlignment(size_t column
) const
4794 return m_header_win
->GetColumn(column
).GetAlignment();
4797 void wxTreeListCtrl::Refresh(bool erase
, const wxRect
* rect
)
4799 m_main_win
->Refresh(erase
, rect
);
4800 m_header_win
->Refresh(erase
, rect
);
4803 void wxTreeListCtrl::SetFocus()
4804 { m_main_win
->SetFocus(); }