#include <wx/dataview.h>

| wxDataViewTreeCtrl::wxDataViewTreeCtrl | ( | ) |
Constructor. Calls Create().
| wxDataViewTreeCtrl::wxDataViewTreeCtrl | ( | wxWindow * | parent, | |
| wxWindowID | id, | |||
| const wxPoint & | pos = wxDefaultPosition, |
|||
| const wxSize & | size = wxDefaultSize, |
|||
| long | style = wxDV_NO_HEADER, |
|||
| const wxValidator & | validator = wxDefaultValidator | |||
| ) |
Constructor. Calls Create().
| virtual wxDataViewTreeCtrl::~wxDataViewTreeCtrl | ( | ) | [virtual] |
Destructor. Deletes the image list if any.
| wxDataViewItem wxDataViewTreeCtrl::AppendContainer | ( | const wxDataViewItem & | parent, | |
| const wxString & | text, | |||
| int | icon = -1, |
|||
| int | expanded = -1, |
|||
| wxClientData * | data = NULL | |||
| ) |
| wxDataViewItem wxDataViewTreeCtrl::AppendItem | ( | const wxDataViewItem & | parent, | |
| const wxString & | text, | |||
| int | icon = -1, |
|||
| wxClientData * | data = NULL | |||
| ) |
| bool wxDataViewTreeCtrl::Create | ( | wxWindow * | parent, | |
| wxWindowID | id, | |||
| const wxPoint & | pos = wxDefaultPosition, |
|||
| const wxSize & | size = wxDefaultSize, |
|||
| long | style = wxDV_NO_HEADER, |
|||
| const wxValidator & | validator = wxDefaultValidator | |||
| ) |
Creates the control and a wxDataViewTreeStore as its internal model.
Reimplemented from wxDataViewCtrl.
| void wxDataViewTreeCtrl::DeleteAllItems | ( | ) |
Calls the identical method from wxDataViewTreeStore.
| void wxDataViewTreeCtrl::DeleteChildren | ( | const wxDataViewItem & | item | ) |
Calls the identical method from wxDataViewTreeStore.
| void wxDataViewTreeCtrl::DeleteItem | ( | const wxDataViewItem & | item | ) |
Calls the identical method from wxDataViewTreeStore.
| int wxDataViewTreeCtrl::GetChildCount | ( | const wxDataViewItem & | parent | ) | const |
Calls the identical method from wxDataViewTreeStore.
| wxImageList* wxDataViewTreeCtrl::GetImageList | ( | ) |
Returns the image list.
| wxClientData* wxDataViewTreeCtrl::GetItemData | ( | const wxDataViewItem & | item | ) | const |
Calls the identical method from wxDataViewTreeStore.
| const wxIcon& wxDataViewTreeCtrl::GetItemExpandedIcon | ( | const wxDataViewItem & | item | ) | const |
Calls the identical method from wxDataViewTreeStore.
| const wxIcon& wxDataViewTreeCtrl::GetItemIcon | ( | const wxDataViewItem & | item | ) | const |
Calls the identical method from wxDataViewTreeStore.
| wxString wxDataViewTreeCtrl::GetItemText | ( | const wxDataViewItem & | item | ) | const |
Calls the identical method from wxDataViewTreeStore.
| wxDataViewItem wxDataViewTreeCtrl::GetNthChild | ( | const wxDataViewItem & | parent, | |
| unsigned int | pos | |||
| ) | const |
Calls the identical method from wxDataViewTreeStore.
| wxDataViewTreeStore* wxDataViewTreeCtrl::GetStore | ( | ) | const |
Returns the store.
| const wxDataViewTreeStore* wxDataViewTreeCtrl::GetStore | ( | ) | const |
Returns the store.
| wxDataViewItem wxDataViewTreeCtrl::InsertContainer | ( | const wxDataViewItem & | parent, | |
| const wxDataViewItem & | previous, | |||
| const wxString & | text, | |||
| int | icon = -1, |
|||
| int | expanded = -1, |
|||
| wxClientData * | data = NULL | |||
| ) |
Calls the same method from wxDataViewTreeStore but uess and index position in the image list instead of a wxIcon.
| wxDataViewItem wxDataViewTreeCtrl::InsertItem | ( | const wxDataViewItem & | parent, | |
| const wxDataViewItem & | previous, | |||
| const wxString & | text, | |||
| int | icon = -1, |
|||
| wxClientData * | data = NULL | |||
| ) |
Calls the same method from wxDataViewTreeStore but uess and index position in the image list instead of a wxIcon.
| wxDataViewItem wxDataViewTreeCtrl::PrependContainer | ( | const wxDataViewItem & | parent, | |
| const wxString & | text, | |||
| int | icon = -1, |
|||
| int | expanded = -1, |
|||
| wxClientData * | data = NULL | |||
| ) |
Calls the same method from wxDataViewTreeStore but uess and index position in the image list instead of a wxIcon.
| wxDataViewItem wxDataViewTreeCtrl::PrependItem | ( | const wxDataViewItem & | parent, | |
| const wxString & | text, | |||
| int | icon = -1, |
|||
| wxClientData * | data = NULL | |||
| ) |
Calls the same method from wxDataViewTreeStore but uess and index position in the image list instead of a wxIcon.
| void wxDataViewTreeCtrl::SetImageList | ( | wxImageList * | imagelist | ) |
Sets the image list.
| void wxDataViewTreeCtrl::SetItemData | ( | const wxDataViewItem & | item, | |
| wxClientData * | data | |||
| ) |
Calls the identical method from wxDataViewTreeStore.
| void wxDataViewTreeCtrl::SetItemExpandedIcon | ( | const wxDataViewItem & | item, | |
| const wxIcon & | icon | |||
| ) |
Calls the identical method from wxDataViewTreeStore.
| void wxDataViewTreeCtrl::SetItemIcon | ( | const wxDataViewItem & | item, | |
| const wxIcon & | icon | |||
| ) |
Calls the identical method from wxDataViewTreeStore.
| void wxDataViewTreeCtrl::SetItemText | ( | const wxDataViewItem & | item, | |
| const wxString & | text | |||
| ) |
Calls the identical method from wxDataViewTreeStore.
|
[ top ] |