• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/classic/

Lines Matching refs:item

37 #define wxTREE_HITTEST_NOWHERE          0x0004  // In the client area but below the last item.
38 #define wxTREE_HITTEST_ONITEMBUTTON 0x0010 // On the button associated with an item.
39 #define wxTREE_HITTEST_ONITEMICON 0x0020 // On the bitmap associated with an item.
40 #define wxTREE_HITTEST_ONITEMINDENT 0x0040 // In the indentation associated with an item.
41 #define wxTREE_HITTEST_ONITEMLABEL 0x0080 // On the label (string) associated with an item.
42 #define wxTREE_HITTEST_ONITEMRIGHT 0x0100 // In the area to the right of an item.
43 #define wxTREE_HITTEST_ONITEMSTATEICON 0x0200 // On the state icon for a tree view item that is in a user-defined state.
51 wxTREE_NEXT_CARET, // Retrieves the currently selected item.
52 wxTREE_NEXT_CHILD, // Retrieves the first child item. The hItem parameter must be NULL.
53 wxTREE_NEXT_DROPHILITE, // Retrieves the item that is the target of a drag-and-drop operation.
54 wxTREE_NEXT_FIRSTVISIBLE, // Retrieves the first visible item.
55 wxTREE_NEXT_NEXT, // Retrieves the next sibling item.
56 wxTREE_NEXT_NEXTVISIBLE, // Retrieves the next visible item that follows the specified item.
57 wxTREE_NEXT_PARENT, // Retrieves the parent of the specified item.
58 wxTREE_NEXT_PREVIOUS, // Retrieves the previous sibling item.
59 wxTREE_NEXT_PREVIOUSVISIBLE, // Retrieves the first visible item that precedes the specified item.
60 wxTREE_NEXT_ROOT // Retrieves the first child item of the root item of which the specified item is a part.
151 long GetNextItem(long item, int code) const;
152 bool ItemHasChildren(long item) const;
153 long GetChild(long item) const;
154 long GetItemParent(long item) const;
156 long GetNextVisibleItem(long item) const;
160 // generic function for (g|s)etting item attributes
163 // item state
164 int GetItemState(long item, long stateMask) const;
165 bool SetItemState(long item, long state, long stateMask);
166 // item image
167 bool SetItemImage(long item, int image, int selImage);
168 // item text
169 wxString GetItemText(long item) const;
170 void SetItemText(long item, const wxString& str);
171 // custom data associated with the item
172 long GetItemData(long item) const;
173 bool SetItemData(long item, long data);
175 bool IsItemExpanded(long item)
177 return (GetItemState(item, wxTREE_STATE_EXPANDED) &
182 bool GetItemRect(long item, wxRect& rect, bool textOnly = false) const;
189 bool DeleteItem(long item);
199 wxDEPRECATED( bool ExpandItem(long item, int action) );
203 // changing item state
204 bool ExpandItem(long item) { return ExpandItem(item, wxTREE_EXPAND_EXPAND); }
205 bool CollapseItem(long item) { return ExpandItem(item, wxTREE_EXPAND_COLLAPSE); }
206 bool ToggleItem(long item) { return ExpandItem(item, wxTREE_EXPAND_TOGGLE); }
210 bool SelectItem(long item);
211 bool ScrollTo(long item);
215 wxTextCtrl* EditLabel(long item, wxClassInfo* textControlClass = CLASSINFO(wxTextCtrl));
221 // wxImageList *CreateDragImage(long item);
222 bool SortChildren(long item);
223 bool EnsureVisible(long item);