• 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

64   bool GetColumn(int col, wxListItem& item) const;
68 bool SetColumn(int col, wxListItem& item) ;
85 // Gets information about the item
88 // Sets information about the item
94 // Gets the item state
95 int GetItemState(long item, long stateMask) const ;
97 // Sets the item state
98 bool SetItemState(long item, long state, long stateMask) ;
102 // Sets the item image
103 bool SetItemImage(long item, int image, int selImage = -1) ;
104 bool SetItemColumnImage(long item, long column, int image);
106 // Gets the item text
107 wxString GetItemText(long item) const ;
109 // Sets the item text
110 void SetItemText(long item, const wxString& str) ;
112 void SetItemTextColour(long item, const wxColour& colour) ;
113 wxColour GetItemTextColour(long item) const;
115 void SetItemBackgroundColour(long item, const wxColour& colour) ;
116 wxColour GetItemBackgroundColour(long item) const;
118 void SetItemFont( long item, const wxFont &f);
119 wxFont GetItemFont( long item ) const;
121 // Gets the item data
122 long GetItemData(long item) const ;
124 // Sets the item data
126 bool SetItemPtrData(long item, wxUIntPtr data);
128 bool SetItemData(long item, long data);
130 // Gets the item rectangle
131 bool GetItemRect(long item, wxRect& rect, int code = wxLIST_RECT_BOUNDS) const ;
133 // Gets the item position
134 bool GetItemPosition(long item, wxPoint& pos) const ;
136 // Sets the item position
137 bool SetItemPosition(long item, const wxPoint& pos) ;
159 // Gets the index of the topmost visible item when in
174 // Searches for an item, starting from 'item'.
175 // item can be -1 to find the first item that matches the
177 // Returns the item or -1 if unsuccessful.
178 long GetNextItem(long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE) const ;
204 // Deletes an item
205 bool DeleteItem(long item);
220 wxTextCtrl* EditLabel(long item, wxClassInfo* textControlClass = CLASSINFO(wxTextCtrl));
225 // Ensures this item is visible
226 bool EnsureVisible(long item) ;
228 // Find an item whose label matches this string, starting from the item after 'start'
232 // Find an item whose data matches this data, starting from the item after 'start'
236 // Find an item nearest this position in the specified direction, starting from
237 // the item after 'start' or the beginning if 'start' is -1.
240 // Determines which item (if any) is at the specified point,
245 // Inserts an item, returning the index of the new item if successful,
251 // Insert a string item
254 // Insert an image item
257 // Insert an image/string item
276 // item1 is the long data associated with a first item (NOT the index).
277 // item2 is the long data associated with a second item (NOT the index).
279 // The return value is a negative number if the first item should precede the second
280 // item, a positive number of the second item should precede the first,
292 void RefreshItem(long item);
295 // return the text for the given column of the given item
296 virtual wxString OnGetItemText(long item, long column) const;
298 // return the icon for the given item. In report view, OnGetItemImage will
301 virtual int OnGetItemImage(long item) const;
303 // return the icon for the given item and column.
304 virtual int OnGetItemColumnImage(long item, long column) const;
306 // return the attribute for the item (may return NULL if none)
307 virtual wxListItemAttr *OnGetItemAttr(long item) const;
310 * We might need it because item data may have changed,
312 // Updates an item. If the list control has the wxLI_AUTO_ARRANGE style,
314 bool Update(long item);
427 int m_count; // for virtual lists, store item count