|
Hugintrunk
0.1
|
#include <treelistctrl.h>

Public Member Functions | |
| wxTreeListCtrl () | |
| wxTreeListCtrl (wxWindow *parent, wxWindowID id=-1, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxTR_DEFAULT_STYLE, const wxValidator &validator=wxDefaultValidator, const wxString &name=wxTreeListCtrlNameStr) | |
| virtual | ~wxTreeListCtrl () |
| bool | Create (wxWindow *parent, wxWindowID id=-1, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxTR_DEFAULT_STYLE, const wxValidator &validator=wxDefaultValidator, const wxString &name=wxTreeListCtrlNameStr) |
| void | Refresh (bool erase=TRUE, const wxRect *rect=NULL) |
| void | SetFocus () |
| size_t | GetCount () const |
| unsigned int | GetIndent () const |
| void | SetIndent (unsigned int indent) |
| unsigned int | GetLineSpacing () const |
| void | SetLineSpacing (unsigned int spacing) |
| wxImageList * | GetImageList () const |
| wxImageList * | GetStateImageList () const |
| wxImageList * | GetButtonsImageList () const |
| void | SetImageList (wxImageList *imageList) |
| void | SetStateImageList (wxImageList *imageList) |
| void | SetButtonsImageList (wxImageList *imageList) |
| void | AssignImageList (wxImageList *imageList) |
| void | AssignStateImageList (wxImageList *imageList) |
| void | AssignButtonsImageList (wxImageList *imageList) |
| void | SetToolTip (const wxString &tip) |
| void | SetToolTip (wxToolTip *tip) |
| void | SetItemToolTip (const wxTreeItemId &item, const wxString &tip) |
| void | AddColumn (const wxString &text, int width=DEFAULT_COL_WIDTH, int flag=wxALIGN_LEFT, int image=-1, bool shown=true, bool edit=false, const wxString &tooltip=wxEmptyString) |
| void | AddColumn (const wxTreeListColumnInfo &colInfo) |
| void | InsertColumn (int before, const wxString &text, int width=DEFAULT_COL_WIDTH, int flag=wxALIGN_LEFT, int image=-1, bool shown=true, bool edit=false, const wxString &tooltip=wxEmptyString) |
| void | InsertColumn (int before, const wxTreeListColumnInfo &colInfo) |
| void | RemoveColumn (int column) |
| int | GetColumnCount () const |
| void | SetMainColumn (int column) |
| int | GetMainColumn () const |
| void | SetColumn (int column, const wxTreeListColumnInfo &colInfo) |
| wxTreeListColumnInfo | GetColumn (int column) |
| const wxTreeListColumnInfo & | GetColumn (int column) const |
| void | SetColumnText (int column, const wxString &text) |
| wxString | GetColumnText (int column) const |
| void | SetColumnWidth (int column, int width) |
| int | GetColumnWidth (int column) const |
| void | SetColumnAlignment (int column, int flag) |
| int | GetColumnAlignment (int column) const |
| void | SetColumnImage (int column, int image) |
| int | GetColumnImage (int column) const |
| void | SetColumnShown (int column, bool shown=true) |
| bool | IsColumnShown (int column) const |
| void | SetColumnEditable (int column, bool edit=true) |
| bool | IsColumnEditable (int column) const |
| wxString | GetItemText (const wxTreeItemId &item) const |
| wxString | GetItemText (const wxTreeItemId &item, int column) const |
| int | GetItemImage (const wxTreeItemId &item, wxTreeItemIcon which=wxTreeItemIcon_Normal) const |
| int | GetItemImage (const wxTreeItemId &item, int column) const |
| wxTreeItemData * | GetItemData (const wxTreeItemId &item) const |
| wxTreeItemData * | GetItemData (const wxTreeItemId &item, int column) const |
| bool | GetItemBold (const wxTreeItemId &item) const |
| bool | GetItemBold (const wxTreeItemId &item, int column) const |
| wxColour | GetItemTextColour (const wxTreeItemId &item) const |
| wxColour | GetItemTextColour (const wxTreeItemId &item, int column) const |
| wxColour | GetItemBackgroundColour (const wxTreeItemId &item) const |
| wxColour | GetItemBackgroundColour (const wxTreeItemId &item, int column) const |
| wxFont | GetItemFont (const wxTreeItemId &item) const |
| wxFont | GetItemFont (const wxTreeItemId &item, int column) const |
| void | SetItemText (const wxTreeItemId &item, const wxString &text) |
| void | SetItemText (const wxTreeItemId &item, int column, const wxString &text) |
| void | SetItemImage (const wxTreeItemId &item, int image, wxTreeItemIcon which=wxTreeItemIcon_Normal) |
| void | SetItemImage (const wxTreeItemId &item, int column, int image) |
| void | SetItemData (const wxTreeItemId &item, wxTreeItemData *data) |
| void | SetItemData (const wxTreeItemId &item, int column, wxTreeItemData *data) |
| void | SetItemBold (const wxTreeItemId &item, bool bold=true) |
| void | SetItemBold (const wxTreeItemId &item, int column, bool bold=true) |
| void | SetItemTextColour (const wxTreeItemId &item, const wxColour &colour) |
| void | SetItemTextColour (const wxTreeItemId &item, int column, const wxColour &colour) |
| void | SetItemBackgroundColour (const wxTreeItemId &item, const wxColour &colour) |
| void | SetItemBackgroundColour (const wxTreeItemId &item, int column, const wxColour &colour) |
| void | SetItemFont (const wxTreeItemId &item, const wxFont &font) |
| void | SetItemFont (const wxTreeItemId &item, int column, const wxFont &font) |
| void | SetItemHasChildren (const wxTreeItemId &item, bool has=true) |
| bool | IsVisible (const wxTreeItemId &item, bool fullRow=false, bool within=true) const |
| bool | HasChildren (const wxTreeItemId &item) const |
| bool | IsExpanded (const wxTreeItemId &item) const |
| bool | IsSelected (const wxTreeItemId &item) const |
| bool | IsBold (const wxTreeItemId &item) const |
| bool | IsBold (const wxTreeItemId &item, int column) const |
| virtual bool | SetFont (const wxFont &font) |
| virtual void | SetWindowStyleFlag (long styles) |
| virtual long | GetWindowStyleFlag () const |
| size_t | GetChildrenCount (const wxTreeItemId &item, bool recursively=true) |
| wxTreeItemId | GetRootItem () const |
| wxTreeItemId | GetSelection () const |
| size_t | GetSelections (wxArrayTreeItemIds &) const |
| wxTreeItemId | GetItemParent (const wxTreeItemId &item) const |
| wxTreeItemId | GetFirstChild (const wxTreeItemId &item, wxTreeItemIdValue &cookie) const |
| wxTreeItemId | GetNextChild (const wxTreeItemId &item, wxTreeItemIdValue &cookie) const |
| wxTreeItemId | GetPrevChild (const wxTreeItemId &item, wxTreeItemIdValue &cookie) const |
| wxTreeItemId | GetLastChild (const wxTreeItemId &item, wxTreeItemIdValue &cookie) const |
| wxTreeItemId | GetNextSibling (const wxTreeItemId &item) const |
| wxTreeItemId | GetPrevSibling (const wxTreeItemId &item) const |
| wxTreeItemId | GetNext (const wxTreeItemId &item) const |
| wxTreeItemId | GetPrev (const wxTreeItemId &item) const |
| wxTreeItemId | GetFirstExpandedItem () const |
| wxTreeItemId | GetNextExpanded (const wxTreeItemId &item) const |
| wxTreeItemId | GetPrevExpanded (const wxTreeItemId &item) const |
| wxTreeItemId | GetFirstVisibleItem (bool fullRow=false) const |
| wxTreeItemId | GetFirstVisible (bool fullRow=false, bool within=true) const |
| wxTreeItemId | GetNextVisible (const wxTreeItemId &item, bool fullRow=false, bool within=true) const |
| wxTreeItemId | GetPrevVisible (const wxTreeItemId &item, bool fullRow=false, bool within=true) const |
| wxTreeItemId | GetLastVisible (bool fullRow=false, bool within=true) const |
| wxTreeItemId | AddRoot (const wxString &text, int image=-1, int selectedImage=-1, wxTreeItemData *data=NULL) |
| wxTreeItemId | PrependItem (const wxTreeItemId &parent, const wxString &text, int image=-1, int selectedImage=-1, wxTreeItemData *data=NULL) |
| wxTreeItemId | InsertItem (const wxTreeItemId &parent, const wxTreeItemId &idPrevious, const wxString &text, int image=-1, int selectedImage=-1, wxTreeItemData *data=NULL) |
| wxTreeItemId | InsertItem (const wxTreeItemId &parent, size_t index, const wxString &text, int image=-1, int selectedImage=-1, wxTreeItemData *data=NULL) |
| wxTreeItemId | AppendItem (const wxTreeItemId &parent, const wxString &text, int image=-1, int selectedImage=-1, wxTreeItemData *data=NULL) |
| void | Delete (const wxTreeItemId &item) |
| void | DeleteChildren (const wxTreeItemId &item) |
| void | DeleteRoot () |
| void | SetItemParent (const wxTreeItemId &parent, const wxTreeItemId &item) |
| void | Expand (const wxTreeItemId &item) |
| void | ExpandAll (const wxTreeItemId &item) |
| void | Collapse (const wxTreeItemId &item) |
| void | CollapseAndReset (const wxTreeItemId &item) |
| void | Toggle (const wxTreeItemId &item) |
| void | SetCurrentItem (const wxTreeItemId &item=(wxTreeItemId *) NULL) |
| void | Unselect () |
| void | UnselectAll () |
| bool | SelectItem (const wxTreeItemId &item, const wxTreeItemId &last=(wxTreeItemId *) NULL, bool unselect_others=true) |
| void | SelectAll () |
| void | EnsureVisible (const wxTreeItemId &item) |
| void | ScrollTo (const wxTreeItemId &item) |
| wxTreeItemId | HitTest (const wxPoint &point) |
| wxTreeItemId | HitTest (const wxPoint &point, int &flags) |
| wxTreeItemId | HitTest (const wxPoint &point, int &flags, int &column) |
| bool | GetBoundingRect (const wxTreeItemId &item, wxRect &rect, bool textOnly=false) const |
| void | EditLabel (const wxTreeItemId &item) |
| void | EditLabel (const wxTreeItemId &item, int column) |
| void | EndEdit (bool isCancelled) |
| virtual wxString | OnGetItemText (wxTreeItemData *item, long column) const |
| virtual int | OnCompareItems (const wxTreeItemId &item1, const wxTreeItemId &item2) |
| virtual int | OnCompareItems (const wxTreeItemId &item1, const wxTreeItemId &item2, int column) |
| void | SortChildren (const wxTreeItemId &item, int column=-1, bool reverseOrder=false) |
| wxTreeItemId | FindItem (const wxTreeItemId &item, const wxString &str, int mode=0) |
| wxTreeItemId | FindItem (const wxTreeItemId &item, int column, const wxString &str, int mode=0) |
| virtual bool | SetBackgroundColour (const wxColour &colour) |
| virtual bool | SetForegroundColour (const wxColour &colour) |
| void | SetDragItem (const wxTreeItemId &item=(wxTreeItemId *) NULL) |
| virtual wxSize | DoGetBestSize () const |
Protected Member Functions | |
| wxTreeListHeaderWindow * | GetHeaderWindow () const |
| wxTreeListMainWindow * | GetMainWindow () const |
| int | GetHeaderHeight () const |
| void | CalculateAndSetHeaderHeight () |
| void | DoHeaderLayout () |
| void | OnSize (wxSizeEvent &event) |
Protected Attributes | |
| wxTreeListHeaderWindow * | m_header_win |
| wxTreeListMainWindow * | m_main_win |
Private Attributes | |
| int | m_headerHeight |
Friends | |
| class | wxTreeListHeaderWindow |
| class | wxTreeListMainWindow |
| class | wxTreeListItem |
Definition at line 137 of file treelistctrl.h.
|
inline |
Definition at line 146 of file treelistctrl.h.
|
inline |
Definition at line 150 of file treelistctrl.h.
References Create().
|
inlinevirtual |
Definition at line 161 of file treelistctrl.h.
|
inline |
Definition at line 219 of file treelistctrl.h.
Referenced by ImagesTreeCtrl::CreateColumns().
| void wxcode::wxTreeListCtrl::AddColumn | ( | const wxTreeListColumnInfo & | colInfo | ) |
Definition at line 5037 of file treelistctrl.cpp.
References wxcode::wxTreeListHeaderWindow::AddColumn(), DoHeaderLayout(), and m_header_win.
| wxTreeItemId wxcode::wxTreeListCtrl::AddRoot | ( | const wxString & | text, |
| int | image = -1, |
||
| int | selectedImage = -1, |
||
| wxTreeItemData * | data = NULL |
||
| ) |
Definition at line 4882 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::AddRoot(), and m_main_win.
Referenced by ImagesTreeCtrl::Create().
| wxTreeItemId wxcode::wxTreeListCtrl::AppendItem | ( | const wxTreeItemId & | parent, |
| const wxString & | text, | ||
| int | image = -1, |
||
| int | selectedImage = -1, |
||
| wxTreeItemData * | data = NULL |
||
| ) |
Definition at line 4912 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::AppendItem(), and m_main_win.
Referenced by ImagesTreeCtrl::panoramaImagesChanged(), and ImagesTreeCtrl::UpdateGroup().
| void wxcode::wxTreeListCtrl::AssignButtonsImageList | ( | wxImageList * | imageList | ) |
Definition at line 4691 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::AssignButtonsImageList(), and m_main_win.
| void wxcode::wxTreeListCtrl::AssignImageList | ( | wxImageList * | imageList | ) |
Definition at line 4685 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::AssignImageList(), and m_main_win.
Referenced by ImagesTreeCtrl::CreateCheckboxImages().
| void wxcode::wxTreeListCtrl::AssignStateImageList | ( | wxImageList * | imageList | ) |
Definition at line 4688 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::AssignStateImageList(), and m_main_win.
|
protected |
Definition at line 4614 of file treelistctrl.cpp.
References DoHeaderLayout(), vigra_ext::EMoR::h, m_header_win, and m_headerHeight.
| void wxcode::wxTreeListCtrl::Collapse | ( | const wxTreeItemId & | item | ) |
Definition at line 4933 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::Collapse(), and m_main_win.
| void wxcode::wxTreeListCtrl::CollapseAndReset | ( | const wxTreeItemId & | item | ) |
Definition at line 4936 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::CollapseAndReset(), and m_main_win.
| bool wxcode::wxTreeListCtrl::Create | ( | wxWindow * | parent, |
| wxWindowID | id = -1, |
||
| const wxPoint & | pos = wxDefaultPosition, |
||
| const wxSize & | size = wxDefaultSize, |
||
| long | style = wxTR_DEFAULT_STYLE, |
||
| const wxValidator & | validator = wxDefaultValidator, |
||
| const wxString & | name = wxTreeListCtrlNameStr |
||
| ) |
Definition at line 4590 of file treelistctrl.cpp.
References CalculateAndSetHeaderHeight(), m_header_win, m_main_win, OnSize(), wxTreeListHeaderWindow, and wxTreeListMainWindow.
Referenced by wxTreeListCtrl().
| void wxcode::wxTreeListCtrl::Delete | ( | const wxTreeItemId & | item | ) |
Definition at line 4918 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::Delete(), and m_main_win.
Referenced by ImagesTreeCtrl::panoramaImagesChanged(), and ImagesTreeCtrl::UpdateGroup().
| void wxcode::wxTreeListCtrl::DeleteChildren | ( | const wxTreeItemId & | item | ) |
Definition at line 4921 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::DeleteChildren(), and m_main_win.
Referenced by ImagesTreeCtrl::SetGroupMode().
| void wxcode::wxTreeListCtrl::DeleteRoot | ( | ) |
Definition at line 4924 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::DeleteRoot(), and m_main_win.
|
virtual |
Definition at line 5120 of file treelistctrl.cpp.
References m_header_win, and m_main_win.
|
protected |
Definition at line 4634 of file treelistctrl.cpp.
References vigra_ext::EMoR::h, m_header_win, m_headerHeight, and m_main_win.
Referenced by AddColumn(), CalculateAndSetHeaderHeight(), and OnSize().
|
inline |
Definition at line 503 of file treelistctrl.h.
References GetMainColumn().
| void wxcode::wxTreeListCtrl::EditLabel | ( | const wxTreeItemId & | item, |
| int | column | ||
| ) |
Definition at line 4971 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::EditLabel(), and m_main_win.
| void wxcode::wxTreeListCtrl::EndEdit | ( | bool | isCancelled | ) |
Definition at line 4973 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::EndEdit(), and m_main_win.
Referenced by ImagesTreeCtrl::OnLeftDown().
| void wxcode::wxTreeListCtrl::EnsureVisible | ( | const wxTreeItemId & | item | ) |
Definition at line 4955 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::EnsureVisible(), and m_main_win.
| void wxcode::wxTreeListCtrl::Expand | ( | const wxTreeItemId & | item | ) |
Definition at line 4927 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::Expand(), and m_main_win.
| void wxcode::wxTreeListCtrl::ExpandAll | ( | const wxTreeItemId & | item | ) |
Definition at line 4930 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::ExpandAll(), and m_main_win.
Referenced by ImagesTreeCtrl::SetGroupMode().
|
inline |
| wxTreeItemId wxcode::wxTreeListCtrl::FindItem | ( | const wxTreeItemId & | item, |
| int | column, | ||
| const wxString & | str, | ||
| int | mode = 0 |
||
| ) |
Definition at line 4992 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::FindItem(), and m_main_win.
| bool wxcode::wxTreeListCtrl::GetBoundingRect | ( | const wxTreeItemId & | item, |
| wxRect & | rect, | ||
| bool | textOnly = false |
||
| ) | const |
Definition at line 4967 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetBoundingRect(), and m_main_win.
| wxImageList * wxcode::wxTreeListCtrl::GetButtonsImageList | ( | ) | const |
Definition at line 4673 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetButtonsImageList(), and m_main_win.
| size_t wxcode::wxTreeListCtrl::GetChildrenCount | ( | const wxTreeItemId & | item, |
| bool | recursively = true |
||
| ) |
Definition at line 4815 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetChildrenCount(), and m_main_win.
Referenced by ImagesTreeCtrl::panoramaImagesChanged(), ImagesTreeCtrl::UpdateGroup(), ImagesTreeCtrl::UpdateGroupText(), and ImagesTreeCtrl::UpdateImageText().
| wxTreeListColumnInfo wxcode::wxTreeListCtrl::GetColumn | ( | int | column | ) |
Definition at line 5064 of file treelistctrl.cpp.
References wxcode::wxTreeListHeaderWindow::GetColumn(), and m_header_win.
Referenced by SetColumnAlignment(), SetColumnEditable(), SetColumnImage(), and SetColumnShown().
| const wxTreeListColumnInfo & wxcode::wxTreeListCtrl::GetColumn | ( | int | column | ) | const |
Definition at line 5061 of file treelistctrl.cpp.
References wxcode::wxTreeListHeaderWindow::GetColumn(), and m_header_win.
| int wxcode::wxTreeListCtrl::GetColumnAlignment | ( | int | column | ) | const |
Definition at line 5106 of file treelistctrl.cpp.
References wxcode::wxTreeListColumnInfo::GetAlignment(), wxcode::wxTreeListHeaderWindow::GetColumn(), and m_header_win.
| int wxcode::wxTreeListCtrl::GetColumnCount | ( | ) | const |
Definition at line 5010 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetColumnCount(), and m_main_win.
Referenced by ImagesTreeCtrl::CreateColumns(), and ImagesTreeCtrl::UpdateOptimizerVariables().
| int wxcode::wxTreeListCtrl::GetColumnImage | ( | int | column | ) | const |
Definition at line 5073 of file treelistctrl.cpp.
References wxcode::wxTreeListHeaderWindow::GetColumn(), wxcode::wxTreeListColumnInfo::GetImage(), and m_header_win.
| wxString wxcode::wxTreeListCtrl::GetColumnText | ( | int | column | ) | const |
Definition at line 5034 of file treelistctrl.cpp.
References wxcode::wxTreeListHeaderWindow::GetColumnText(), and m_header_win.
| int wxcode::wxTreeListCtrl::GetColumnWidth | ( | int | column | ) | const |
Definition at line 5019 of file treelistctrl.cpp.
References wxcode::wxTreeListHeaderWindow::GetColumnWidth(), and m_header_win.
Referenced by ImagesTreeCtrl::OnColumnWidthChange().
| size_t wxcode::wxTreeListCtrl::GetCount | ( | ) | const |
Definition at line 4653 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetCount(), and m_main_win.
| wxTreeItemId wxcode::wxTreeListCtrl::GetFirstChild | ( | const wxTreeItemId & | item, |
| wxTreeItemIdValue & | cookie | ||
| ) | const |
Definition at line 4830 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetFirstChild(), and m_main_win.
Referenced by ImagesTreeCtrl::GetSelectedImages(), ImagesTreeCtrl::OnBeginEdit(), ImagesTreeCtrl::OnEndEdit(), ImagesTreeCtrl::OnLeftUp(), ImagesTreeCtrl::panoramaImagesChanged(), ImagesTreeCtrl::SelectAllParameters(), ImagesTreeCtrl::UpdateGroup(), ImagesTreeCtrl::UpdateGroupText(), ImagesTreeCtrl::UpdateItemFont(), and ImagesTreeCtrl::UpdateOptimizerVariables().
| wxTreeItemId wxcode::wxTreeListCtrl::GetFirstExpandedItem | ( | ) | const |
Definition at line 4859 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetFirstExpandedItem(), and m_main_win.
| wxTreeItemId wxcode::wxTreeListCtrl::GetFirstVisible | ( | bool | fullRow = false, |
| bool | within = true |
||
| ) | const |
Definition at line 4870 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetFirstVisible(), and m_main_win.
Referenced by GetFirstVisibleItem().
| wxTreeItemId wxcode::wxTreeListCtrl::GetFirstVisibleItem | ( | bool | fullRow = false | ) | const |
Definition at line 4868 of file treelistctrl.cpp.
References GetFirstVisible().
|
inlineprotected |
Definition at line 548 of file treelistctrl.h.
References m_headerHeight.
|
inlineprotected |
Definition at line 539 of file treelistctrl.h.
References m_header_win.
Referenced by wxcode::wxTreeListMainWindow::AdjustMyScrollbars(), wxcode::wxTreeListMainWindow::CalculatePositions(), wxcode::wxTreeListMainWindow::EditLabel(), wxcode::wxTreeListMainWindow::GetColumnCount(), wxcode::wxTreeListItem::HitTest(), wxcode::wxTreeListMainWindow::OnMouse(), wxcode::wxTreeListMainWindow::OnPaint(), wxcode::wxTreeListMainWindow::OnScroll(), wxcode::wxTreeListMainWindow::PaintItem(), wxcode::wxTreeListMainWindow::PaintLevel(), and wxcode::wxTreeListMainWindow::ScrollTo().
| wxImageList * wxcode::wxTreeListCtrl::GetImageList | ( | ) | const |
Definition at line 4667 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetImageList(), and m_main_win.
| unsigned int wxcode::wxTreeListCtrl::GetIndent | ( | ) | const |
Definition at line 4655 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetIndent(), and m_main_win.
| wxColour wxcode::wxTreeListCtrl::GetItemBackgroundColour | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4719 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetItemBackgroundColour(), and m_main_win.
| wxColour wxcode::wxTreeListCtrl::GetItemBackgroundColour | ( | const wxTreeItemId & | item, |
| int | column | ||
| ) | const |
Definition at line 4721 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetItemBackgroundColour(), and m_main_win.
| bool wxcode::wxTreeListCtrl::GetItemBold | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4709 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetItemBold(), and m_main_win.
Referenced by IsBold().
| bool wxcode::wxTreeListCtrl::GetItemBold | ( | const wxTreeItemId & | item, |
| int | column | ||
| ) | const |
Definition at line 4711 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetItemBold(), and m_main_win.
| wxTreeItemData * wxcode::wxTreeListCtrl::GetItemData | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4704 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetItemData(), and m_main_win.
Referenced by ImagesTreeCtrl::GetSelectedImages(), ImagesTreeCtrl::OnBeginEdit(), ImagesTreeCtrl::OnContextMenu(), ImagesTreeCtrl::OnEndEdit(), ImagesTreeCtrl::OnLeftUp(), ImagesTreeCtrl::SelectAllParameters(), ImagesTreeCtrl::UpdateGroup(), ImagesTreeCtrl::UpdateGroupText(), ImagesTreeCtrl::UpdateImageText(), ImagesTreeCtrl::UpdateItemFont(), and ImagesTreeCtrl::UpdateOptimizerVariables().
| wxTreeItemData * wxcode::wxTreeListCtrl::GetItemData | ( | const wxTreeItemId & | item, |
| int | column | ||
| ) | const |
Definition at line 4706 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetItemData(), and m_main_win.
| wxFont wxcode::wxTreeListCtrl::GetItemFont | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4724 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetItemFont(), and m_main_win.
| wxFont wxcode::wxTreeListCtrl::GetItemFont | ( | const wxTreeItemId & | item, |
| int | column | ||
| ) | const |
Definition at line 4726 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetItemFont(), and m_main_win.
| int wxcode::wxTreeListCtrl::GetItemImage | ( | const wxTreeItemId & | item, |
| wxTreeItemIcon | which = wxTreeItemIcon_Normal |
||
| ) | const |
Definition at line 4699 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetItemImage(), and m_main_win.
Referenced by ImagesTreeCtrl::OnLeftUp(), and ImagesTreeCtrl::OnMouseMove().
| int wxcode::wxTreeListCtrl::GetItemImage | ( | const wxTreeItemId & | item, |
| int | column | ||
| ) | const |
Definition at line 4701 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetItemImage(), and m_main_win.
| wxTreeItemId wxcode::wxTreeListCtrl::GetItemParent | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4827 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetItemParent(), and m_main_win.
Referenced by wxcode::wxTreeListMainWindow::EnsureVisible(), wxcode::wxTreeListMainWindow::GetNextSibling(), wxcode::wxTreeListMainWindow::GetPrevSibling(), wxcode::wxTreeListMainWindow::IsVisible(), ImagesTreeCtrl::OnLeftUp(), ImagesTreeCtrl::SelectAllParameters(), and ImagesTreeCtrl::UpdateImageText().
|
inline |
Definition at line 281 of file treelistctrl.h.
References GetItemText(), and GetMainColumn().
Referenced by GetItemText(), ImagesTreeCtrl::OnBeginEdit(), OnCompareItems(), ImagesTreeCtrl::OnContextMenu(), ImagesTreeCtrl::OnLeftDown(), and ImagesTreeCtrl::UpdateOptimizerVariables().
| wxString wxcode::wxTreeListCtrl::GetItemText | ( | const wxTreeItemId & | item, |
| int | column | ||
| ) | const |
Definition at line 4696 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetItemText(), and m_main_win.
| wxColour wxcode::wxTreeListCtrl::GetItemTextColour | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4714 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetItemTextColour(), and m_main_win.
| wxColour wxcode::wxTreeListCtrl::GetItemTextColour | ( | const wxTreeItemId & | item, |
| int | column | ||
| ) | const |
Definition at line 4716 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetItemTextColour(), and m_main_win.
| wxTreeItemId wxcode::wxTreeListCtrl::GetLastChild | ( | const wxTreeItemId & | item, |
| wxTreeItemIdValue & | cookie | ||
| ) | const |
Definition at line 4842 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetLastChild(), and m_main_win.
Referenced by ImagesTreeCtrl::panoramaImagesChanged(), and ImagesTreeCtrl::UpdateGroup().
| wxTreeItemId wxcode::wxTreeListCtrl::GetLastVisible | ( | bool | fullRow = false, |
| bool | within = true |
||
| ) | const |
Definition at line 4873 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetLastVisible(), and m_main_win.
| unsigned int wxcode::wxTreeListCtrl::GetLineSpacing | ( | ) | const |
Definition at line 4661 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetLineSpacing(), and m_main_win.
| int wxcode::wxTreeListCtrl::GetMainColumn | ( | ) | const |
Definition at line 5025 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetMainColumn(), and m_main_win.
Referenced by EditLabel(), GetItemText(), IsBold(), and SetColumnShown().
|
inlineprotected |
Definition at line 544 of file treelistctrl.h.
References m_main_win.
Referenced by wxcode::wxTreeListMainWindow::PaintItem().
| wxTreeItemId wxcode::wxTreeListCtrl::GetNext | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4853 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetNext(), and m_main_win.
Referenced by ImagesTreeCtrl::UpdateOptimizerVariables().
| wxTreeItemId wxcode::wxTreeListCtrl::GetNextChild | ( | const wxTreeItemId & | item, |
| wxTreeItemIdValue & | cookie | ||
| ) | const |
Definition at line 4834 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetNextChild(), and m_main_win.
Referenced by ImagesTreeCtrl::GetSelectedImages(), ImagesTreeCtrl::OnLeftUp(), ImagesTreeCtrl::panoramaImagesChanged(), ImagesTreeCtrl::SelectAllParameters(), ImagesTreeCtrl::UpdateGroup(), ImagesTreeCtrl::UpdateItemFont(), and ImagesTreeCtrl::UpdateOptimizerVariables().
| wxTreeItemId wxcode::wxTreeListCtrl::GetNextExpanded | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4862 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetNextExpanded(), and m_main_win.
| wxTreeItemId wxcode::wxTreeListCtrl::GetNextSibling | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4847 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetNextSibling(), and m_main_win.
| wxTreeItemId wxcode::wxTreeListCtrl::GetNextVisible | ( | const wxTreeItemId & | item, |
| bool | fullRow = false, |
||
| bool | within = true |
||
| ) | const |
Definition at line 4876 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetNextVisible(), and m_main_win.
| wxTreeItemId wxcode::wxTreeListCtrl::GetPrev | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4856 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetPrev(), and m_main_win.
| wxTreeItemId wxcode::wxTreeListCtrl::GetPrevChild | ( | const wxTreeItemId & | item, |
| wxTreeItemIdValue & | cookie | ||
| ) | const |
Definition at line 4838 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetPrevChild(), and m_main_win.
| wxTreeItemId wxcode::wxTreeListCtrl::GetPrevExpanded | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4865 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetPrevExpanded(), and m_main_win.
| wxTreeItemId wxcode::wxTreeListCtrl::GetPrevSibling | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4850 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetPrevSibling(), and m_main_win.
| wxTreeItemId wxcode::wxTreeListCtrl::GetPrevVisible | ( | const wxTreeItemId & | item, |
| bool | fullRow = false, |
||
| bool | within = true |
||
| ) | const |
Definition at line 4879 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetPrevVisible(), and m_main_win.
| wxTreeItemId wxcode::wxTreeListCtrl::GetRootItem | ( | ) | const |
Definition at line 4818 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetRootItem(), and m_main_win.
| wxTreeItemId wxcode::wxTreeListCtrl::GetSelection | ( | ) | const |
Definition at line 4821 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetSelection(), and m_main_win.
| size_t wxcode::wxTreeListCtrl::GetSelections | ( | wxArrayTreeItemIds & | arr | ) | const |
Definition at line 4824 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetSelections(), and m_main_win.
Referenced by ImagesTreeCtrl::GetSelectedImages(), and ImagesTreeCtrl::SelectAllParameters().
| wxImageList * wxcode::wxTreeListCtrl::GetStateImageList | ( | ) | const |
Definition at line 4670 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::GetStateImageList(), and m_main_win.
|
virtual |
Definition at line 4795 of file treelistctrl.cpp.
References m_main_win.
| bool wxcode::wxTreeListCtrl::HasChildren | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4806 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::HasChildren(), and m_main_win.
|
inline |
Definition at line 490 of file treelistctrl.h.
References flags.
Referenced by HitTest(), ImagesTreeCtrl::OnLeftDblClick(), ImagesTreeCtrl::OnLeftDown(), ImagesTreeCtrl::OnLeftUp(), and ImagesTreeCtrl::OnMouseMove().
|
inline |
Definition at line 492 of file treelistctrl.h.
References HitTest().
| wxTreeItemId wxcode::wxTreeListCtrl::HitTest | ( | const wxPoint & | point, |
| int & | flags, | ||
| int & | column | ||
| ) |
Definition at line 4961 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::HitTest(), and m_main_win.
|
inline |
Definition at line 231 of file treelistctrl.h.
| void wxcode::wxTreeListCtrl::InsertColumn | ( | int | before, |
| const wxTreeListColumnInfo & | colInfo | ||
| ) |
Definition at line 5043 of file treelistctrl.cpp.
References wxcode::wxTreeListHeaderWindow::InsertColumn(), and m_header_win.
| wxTreeItemId wxcode::wxTreeListCtrl::InsertItem | ( | const wxTreeItemId & | parent, |
| const wxTreeItemId & | idPrevious, | ||
| const wxString & | text, | ||
| int | image = -1, |
||
| int | selectedImage = -1, |
||
| wxTreeItemData * | data = NULL |
||
| ) |
Definition at line 4892 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::InsertItem(), and m_main_win.
| wxTreeItemId wxcode::wxTreeListCtrl::InsertItem | ( | const wxTreeItemId & | parent, |
| size_t | index, | ||
| const wxString & | text, | ||
| int | image = -1, |
||
| int | selectedImage = -1, |
||
| wxTreeItemData * | data = NULL |
||
| ) |
Definition at line 4902 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::InsertItem(), and m_main_win.
|
inline |
Definition at line 346 of file treelistctrl.h.
References GetMainColumn(), and IsBold().
Referenced by IsBold().
|
inline |
Definition at line 347 of file treelistctrl.h.
References GetItemBold().
| bool wxcode::wxTreeListCtrl::IsColumnEditable | ( | int | column | ) | const |
Definition at line 5090 of file treelistctrl.cpp.
References wxcode::wxTreeListHeaderWindow::GetColumn(), wxcode::wxTreeListColumnInfo::IsEditable(), and m_header_win.
| bool wxcode::wxTreeListCtrl::IsColumnShown | ( | int | column | ) | const |
Definition at line 5095 of file treelistctrl.cpp.
References wxcode::wxTreeListHeaderWindow::GetColumn(), wxcode::wxTreeListColumnInfo::IsShown(), and m_header_win.
| bool wxcode::wxTreeListCtrl::IsExpanded | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4809 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::IsExpanded(), and m_main_win.
Referenced by wxcode::wxTreeListMainWindow::IsVisible().
| bool wxcode::wxTreeListCtrl::IsSelected | ( | const wxTreeItemId & | item | ) | const |
Definition at line 4812 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::IsSelected(), and m_main_win.
Referenced by ImagesTreeCtrl::OnLeftUp().
| bool wxcode::wxTreeListCtrl::IsVisible | ( | const wxTreeItemId & | item, |
| bool | fullRow = false, |
||
| bool | within = true |
||
| ) | const |
Definition at line 4803 of file treelistctrl.cpp.
References wxcode::wxTreeListMainWindow::IsVisible(), and m_main_win.
|
virtual |
Definition at line 4976 of file treelistctrl.cpp.
References GetItemText().
Referenced by wxcode::wxTreeListMainWindow::OnCompareItems().
|
virtual |
Definition at line 4982 of file treelistctrl.cpp.
References GetItemText().
|
virtual |
Definition at line 5127 of file treelistctrl.cpp.
Referenced by wxcode::wxTreeListMainWindow::GetItemText().
|
protected |
Definition at line 4647 of file treelistctrl.cpp.
References DoHeaderLayout().
Referenced by Create().
| wxTreeItemId wxcode::wxTreeListCtrl::PrependItem | ( | const wxTreeItemId & | parent, |
| const wxString & | text, | ||
| int | image = -1, |
||
| int | selectedImage = -1, |
||
| wxTreeItemData * | data = NULL |
||
| ) |
Definition at line 4886 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::PrependItem().
| void wxcode::wxTreeListCtrl::Refresh | ( | bool | erase = TRUE, |
| const wxRect * | rect = NULL |
||
| ) |
Definition at line 5111 of file treelistctrl.cpp.
References m_header_win, and m_main_win.
Referenced by ImagesTreeCtrl::OnDpiChanged(), ImagesTreeCtrl::OnEndEdit(), ImagesTreeCtrl::panoramaChanged(), and ImagesTreeCtrl::SetDisplayMode().
| void wxcode::wxTreeListCtrl::RemoveColumn | ( | int | column | ) |
Definition at line 5049 of file treelistctrl.cpp.
References m_header_win, and wxcode::wxTreeListHeaderWindow::RemoveColumn().
| void wxcode::wxTreeListCtrl::ScrollTo | ( | const wxTreeItemId & | item | ) |
Definition at line 4958 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::ScrollTo().
| void wxcode::wxTreeListCtrl::SelectAll | ( | ) |
Definition at line 4952 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SelectAll().
Referenced by ImagesTreeCtrl::OnChar().
| bool wxcode::wxTreeListCtrl::SelectItem | ( | const wxTreeItemId & | item, |
| const wxTreeItemId & | last = (wxTreeItemId*)NULL, |
||
| bool | unselect_others = true |
||
| ) |
Definition at line 4948 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SelectItem().
|
virtual |
Definition at line 4998 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetBackgroundColour().
| void wxcode::wxTreeListCtrl::SetButtonsImageList | ( | wxImageList * | imageList | ) |
Definition at line 4682 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetButtonsImageList().
| void wxcode::wxTreeListCtrl::SetColumn | ( | int | column, |
| const wxTreeListColumnInfo & | colInfo | ||
| ) |
Definition at line 5055 of file treelistctrl.cpp.
References m_header_win, and wxcode::wxTreeListHeaderWindow::SetColumn().
| void wxcode::wxTreeListCtrl::SetColumnAlignment | ( | int | column, |
| int | flag | ||
| ) |
Definition at line 5100 of file treelistctrl.cpp.
References GetColumn(), m_header_win, and wxcode::wxTreeListHeaderWindow::SetColumn().
| void wxcode::wxTreeListCtrl::SetColumnEditable | ( | int | column, |
| bool | edit = true |
||
| ) |
Definition at line 5078 of file treelistctrl.cpp.
References GetColumn(), m_header_win, and wxcode::wxTreeListHeaderWindow::SetColumn().
Referenced by ImagesTreeCtrl::SetOptimizerMode().
| void wxcode::wxTreeListCtrl::SetColumnImage | ( | int | column, |
| int | image | ||
| ) |
Definition at line 5067 of file treelistctrl.cpp.
References GetColumn(), m_header_win, and wxcode::wxTreeListHeaderWindow::SetColumn().
| void wxcode::wxTreeListCtrl::SetColumnShown | ( | int | column, |
| bool | shown = true |
||
| ) |
Definition at line 5083 of file treelistctrl.cpp.
References GetColumn(), GetMainColumn(), m_header_win, and wxcode::wxTreeListHeaderWindow::SetColumn().
Referenced by ImagesTreeCtrl::SetDisplayMode().
| void wxcode::wxTreeListCtrl::SetColumnText | ( | int | column, |
| const wxString & | text | ||
| ) |
Definition at line 5028 of file treelistctrl.cpp.
References m_header_win, and wxcode::wxTreeListHeaderWindow::SetColumnText().
| void wxcode::wxTreeListCtrl::SetColumnWidth | ( | int | column, |
| int | width | ||
| ) |
Definition at line 5013 of file treelistctrl.cpp.
References m_header_win, and wxcode::wxTreeListHeaderWindow::SetColumnWidth().
Referenced by ImagesTreeCtrl::CreateColumns().
| void wxcode::wxTreeListCtrl::SetCurrentItem | ( | const wxTreeItemId & | item = (wxTreeItemId*)NULL | ) |
Definition at line 5145 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetCurrentItem().
| void wxcode::wxTreeListCtrl::SetDragItem | ( | const wxTreeItemId & | item = (wxTreeItemId*)NULL | ) |
Definition at line 4995 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetDragItem().
| void wxcode::wxTreeListCtrl::SetFocus | ( | ) |
Definition at line 5117 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetFocus().
Referenced by ImagesPanel::Create().
|
virtual |
Definition at line 4769 of file treelistctrl.cpp.
References CalculateAndSetHeaderHeight(), m_header_win, m_main_win, and wxcode::wxTreeListMainWindow::SetFont().
|
virtual |
Definition at line 5004 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetForegroundColour().
| void wxcode::wxTreeListCtrl::SetImageList | ( | wxImageList * | imageList | ) |
Definition at line 4676 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetImageList().
| void wxcode::wxTreeListCtrl::SetIndent | ( | unsigned int | indent | ) |
Definition at line 4658 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetIndent().
| void wxcode::wxTreeListCtrl::SetItemBackgroundColour | ( | const wxTreeItemId & | item, |
| const wxColour & | colour | ||
| ) |
Definition at line 4757 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemBackgroundColour().
| void wxcode::wxTreeListCtrl::SetItemBackgroundColour | ( | const wxTreeItemId & | item, |
| int | column, | ||
| const wxColour & | colour | ||
| ) |
Definition at line 4759 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemBackgroundColour().
| void wxcode::wxTreeListCtrl::SetItemBold | ( | const wxTreeItemId & | item, |
| bool | bold = true |
||
| ) |
Definition at line 4747 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemBold().
Referenced by ImagesTreeCtrl::UpdateGroupText().
| void wxcode::wxTreeListCtrl::SetItemBold | ( | const wxTreeItemId & | item, |
| int | column, | ||
| bool | bold = true |
||
| ) |
Definition at line 4749 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemBold().
| void wxcode::wxTreeListCtrl::SetItemData | ( | const wxTreeItemId & | item, |
| wxTreeItemData * | data | ||
| ) |
Definition at line 4742 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemData().
| void wxcode::wxTreeListCtrl::SetItemData | ( | const wxTreeItemId & | item, |
| int | column, | ||
| wxTreeItemData * | data | ||
| ) |
Definition at line 4744 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemData().
| void wxcode::wxTreeListCtrl::SetItemFont | ( | const wxTreeItemId & | item, |
| const wxFont & | font | ||
| ) |
Definition at line 4762 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemFont().
| void wxcode::wxTreeListCtrl::SetItemFont | ( | const wxTreeItemId & | item, |
| int | column, | ||
| const wxFont & | font | ||
| ) |
Definition at line 4764 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemFont().
| void wxcode::wxTreeListCtrl::SetItemHasChildren | ( | const wxTreeItemId & | item, |
| bool | has = true |
||
| ) |
Definition at line 4731 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemHasChildren().
| void wxcode::wxTreeListCtrl::SetItemImage | ( | const wxTreeItemId & | item, |
| int | image, | ||
| wxTreeItemIcon | which = wxTreeItemIcon_Normal |
||
| ) |
Definition at line 4737 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemImage().
Referenced by ImagesTreeCtrl::OnMouseMove(), and ImagesTreeCtrl::UpdateOptimizerVariables().
| void wxcode::wxTreeListCtrl::SetItemImage | ( | const wxTreeItemId & | item, |
| int | column, | ||
| int | image | ||
| ) |
Definition at line 4739 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemImage().
| void wxcode::wxTreeListCtrl::SetItemParent | ( | const wxTreeItemId & | parent, |
| const wxTreeItemId & | item | ||
| ) |
Definition at line 5149 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemParent().
| void wxcode::wxTreeListCtrl::SetItemText | ( | const wxTreeItemId & | item, |
| const wxString & | text | ||
| ) |
| void wxcode::wxTreeListCtrl::SetItemText | ( | const wxTreeItemId & | item, |
| int | column, | ||
| const wxString & | text | ||
| ) |
Definition at line 4734 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemText().
| void wxcode::wxTreeListCtrl::SetItemTextColour | ( | const wxTreeItemId & | item, |
| const wxColour & | colour | ||
| ) |
Definition at line 4752 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemTextColour().
Referenced by ImagesTreeCtrl::UpdateItemFont().
| void wxcode::wxTreeListCtrl::SetItemTextColour | ( | const wxTreeItemId & | item, |
| int | column, | ||
| const wxColour & | colour | ||
| ) |
Definition at line 4754 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemTextColour().
| void wxcode::wxTreeListCtrl::SetItemToolTip | ( | const wxTreeItemId & | item, |
| const wxString & | tip | ||
| ) |
Definition at line 5141 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetItemToolTip().
| void wxcode::wxTreeListCtrl::SetLineSpacing | ( | unsigned int | spacing | ) |
Definition at line 4664 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetLineSpacing().
| void wxcode::wxTreeListCtrl::SetMainColumn | ( | int | column | ) |
Definition at line 5022 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetMainColumn().
| void wxcode::wxTreeListCtrl::SetStateImageList | ( | wxImageList * | imageList | ) |
Definition at line 4679 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetStateImageList().
| void wxcode::wxTreeListCtrl::SetToolTip | ( | const wxString & | tip | ) |
Definition at line 5132 of file treelistctrl.cpp.
References m_header_win, m_main_win, and wxcode::wxTreeListMainWindow::SetToolTip().
| void wxcode::wxTreeListCtrl::SetToolTip | ( | wxToolTip * | tip | ) |
Definition at line 5136 of file treelistctrl.cpp.
References m_header_win, m_main_win, and wxcode::wxTreeListMainWindow::SetToolTip().
|
virtual |
Definition at line 4783 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SetWindowStyle().
| void wxcode::wxTreeListCtrl::SortChildren | ( | const wxTreeItemId & | item, |
| int | column = -1, |
||
| bool | reverseOrder = false |
||
| ) |
Definition at line 4989 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::SortChildren().
| void wxcode::wxTreeListCtrl::Toggle | ( | const wxTreeItemId & | item | ) |
Definition at line 4939 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::Toggle().
| void wxcode::wxTreeListCtrl::Unselect | ( | ) |
Definition at line 4942 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::Unselect().
| void wxcode::wxTreeListCtrl::UnselectAll | ( | ) |
Definition at line 4945 of file treelistctrl.cpp.
References m_main_win, and wxcode::wxTreeListMainWindow::UnselectAll().
|
friend |
Definition at line 139 of file treelistctrl.h.
Referenced by Create().
|
friend |
Definition at line 141 of file treelistctrl.h.
|
friend |
Definition at line 140 of file treelistctrl.h.
Referenced by Create().
|
protected |
Definition at line 541 of file treelistctrl.h.
Referenced by AddColumn(), CalculateAndSetHeaderHeight(), Create(), DoGetBestSize(), DoHeaderLayout(), GetColumn(), GetColumnAlignment(), GetColumnImage(), GetColumnText(), GetColumnWidth(), GetHeaderWindow(), InsertColumn(), IsColumnEditable(), IsColumnShown(), Refresh(), RemoveColumn(), SetColumn(), SetColumnAlignment(), SetColumnEditable(), SetColumnImage(), SetColumnShown(), SetColumnText(), SetColumnWidth(), SetFont(), and SetToolTip().
|
private |
Definition at line 555 of file treelistctrl.h.
Referenced by CalculateAndSetHeaderHeight(), DoHeaderLayout(), and GetHeaderHeight().
|
protected |
Definition at line 546 of file treelistctrl.h.
Referenced by AddRoot(), AppendItem(), AssignButtonsImageList(), AssignImageList(), AssignStateImageList(), Collapse(), CollapseAndReset(), Create(), Delete(), DeleteChildren(), DeleteRoot(), DoGetBestSize(), DoHeaderLayout(), EditLabel(), EndEdit(), EnsureVisible(), Expand(), ExpandAll(), FindItem(), GetBoundingRect(), GetButtonsImageList(), GetChildrenCount(), GetColumnCount(), GetCount(), GetFirstChild(), GetFirstExpandedItem(), GetFirstVisible(), GetImageList(), GetIndent(), GetItemBackgroundColour(), GetItemBold(), GetItemData(), GetItemFont(), GetItemImage(), GetItemParent(), GetItemText(), GetItemTextColour(), GetLastChild(), GetLastVisible(), GetLineSpacing(), GetMainColumn(), GetMainWindow(), GetNext(), GetNextChild(), GetNextExpanded(), GetNextSibling(), GetNextVisible(), GetPrev(), GetPrevChild(), GetPrevExpanded(), GetPrevSibling(), GetPrevVisible(), GetRootItem(), GetSelection(), GetSelections(), GetStateImageList(), GetWindowStyleFlag(), HasChildren(), HitTest(), InsertItem(), IsExpanded(), IsSelected(), IsVisible(), PrependItem(), Refresh(), ScrollTo(), SelectAll(), SelectItem(), SetBackgroundColour(), SetButtonsImageList(), SetCurrentItem(), SetDragItem(), SetFocus(), SetFont(), SetForegroundColour(), SetImageList(), SetIndent(), SetItemBackgroundColour(), SetItemBold(), SetItemData(), SetItemFont(), SetItemHasChildren(), SetItemImage(), SetItemParent(), SetItemText(), SetItemTextColour(), SetItemToolTip(), SetLineSpacing(), SetMainColumn(), SetStateImageList(), SetToolTip(), SetWindowStyleFlag(), SortChildren(), Toggle(), Unselect(), and UnselectAll().
1.8.5