• 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/carbon/

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.
153 long GetNextItem(long item, int code) const;
154 bool ItemHasChildren(long item) const;
155 long GetChild(long item) const;
156 long GetItemParent(long item) const;
158 long GetNextVisibleItem(long item) const;
162 // generic function for (g|s)etting item attributes
165 // item state
166 int GetItemState(long item, long stateMask) const;
167 bool SetItemState(long item, long state, long stateMask);
168 // item image
169 bool SetItemImage(long item, int image, int selImage);
170 // item text
171 wxString GetItemText(long item) const;
172 void SetItemText(long item, const wxString& str);
173 // custom data associated with the item
174 long GetItemData(long item) const;
175 bool SetItemData(long item, long data);
177 bool IsItemExpanded(long item)
179 return (GetItemState(item, wxTREE_STATE_EXPANDED) &
184 bool GetItemRect(long item, wxRect& rect, bool textOnly = false) const;
191 bool DeleteItem(long item);
203 wxDEPRECATED( bool ExpandItem(long item, int action) );
207 // changing item state
208 bool ExpandItem(long item) { return ExpandItem(item, wxTREE_EXPAND_EXPAND); }
209 bool CollapseItem(long item) { return ExpandItem(item, wxTREE_EXPAND_COLLAPSE); }
210 bool ToggleItem(long item) { return ExpandItem(item, wxTREE_EXPAND_TOGGLE); }
213 bool SelectItem(long item);
214 bool ScrollTo(long item);
218 wxTextCtrl* EditLabel(long item, wxClassInfo* textControlClass = CLASSINFO(wxTextCtrl));
224 // wxImageList *CreateDragImage(long item);
225 bool SortChildren(long item);
226 bool EnsureVisible(long item);