KiCad PCB EDA Suite
|
Extension of the wxDataViewCtrl to include some helper functions for working with items. More...
#include <wx_dataviewctrl.h>
Public Member Functions | |
wxDataViewItem | GetPrevItem (wxDataViewItem const &aItem) |
Get the previous item in list order. | |
wxDataViewItem | GetNextItem (wxDataViewItem const &aItem) |
Get the next item in list order. | |
wxDataViewItem | GetPrevSibling (wxDataViewItem const &aItem) |
Get the previous sibling of an item. | |
wxDataViewItem | GetNextSibling (wxDataViewItem const &aItem) |
Get the next sibling of an item. | |
void | DoSetToolTipText (const wxString &tip) override |
void | ExpandAll () |
void | CollapseAll () |
Extension of the wxDataViewCtrl to include some helper functions for working with items.
These should probably be sent upstream, since they may be useful to others, but for now just extend the class with them ourselves.
Definition at line 30 of file wx_dataviewctrl.h.
void WX_DATAVIEWCTRL::CollapseAll | ( | ) |
Definition at line 158 of file wx_dataviewctrl.cpp.
References recursiveDescent().
Referenced by LIB_TREE::CollapseAll(), and LIB_TREE::onQueryCharHook().
|
inlineoverride |
Definition at line 68 of file wx_dataviewctrl.h.
void WX_DATAVIEWCTRL::ExpandAll | ( | ) |
Definition at line 152 of file wx_dataviewctrl.cpp.
References recursiveDescent().
Referenced by LIB_TREE::ExpandAll(), and LIB_TREE::onQueryCharHook().
wxDataViewItem WX_DATAVIEWCTRL::GetNextItem | ( | wxDataViewItem const & | aItem | ) |
Get the next item in list order.
aItem | a valid item in the control's model |
Definition at line 44 of file wx_dataviewctrl.cpp.
References GetNextSibling().
Referenced by LIB_TREE::onQueryCharHook().
wxDataViewItem WX_DATAVIEWCTRL::GetNextSibling | ( | wxDataViewItem const & | aItem | ) |
Get the next sibling of an item.
aItem | a valid item in the control's model |
Definition at line 110 of file wx_dataviewctrl.cpp.
Referenced by GetNextItem().
wxDataViewItem WX_DATAVIEWCTRL::GetPrevItem | ( | wxDataViewItem const & | aItem | ) |
Get the previous item in list order.
aItem | a valid item in the control's model |
Definition at line 23 of file wx_dataviewctrl.cpp.
References GetPrevSibling().
Referenced by LIB_TREE::onQueryCharHook().
wxDataViewItem WX_DATAVIEWCTRL::GetPrevSibling | ( | wxDataViewItem const & | aItem | ) |
Get the previous sibling of an item.
aItem | a valid item in the control's model |
Definition at line 87 of file wx_dataviewctrl.cpp.
Referenced by GetPrevItem().