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

Lines Matching refs:item

53     which item. Each image in an image list can contain a mask, and can be made out
114 bool GetColumn(int col, wxListItem& item) const;
117 bool SetColumn(int col, const wxListItem& item) ;
137 // Gets information about the item
140 // Sets information about the item
146 // Gets the item state
147 int GetItemState(long item, long stateMask) const ;
149 // Sets the item state
150 bool SetItemState(long item, long state, long stateMask) ;
152 // Sets the item image
153 bool SetItemImage(long item, int image, int selImage = -1) ;
154 bool SetItemColumnImage(long item, long column, int image);
156 // Gets the item text
157 wxString GetItemText(long item) const ;
159 // Sets the item text
160 void SetItemText(long item, const wxString& str) ;
162 // Gets the item data
163 wxUIntPtr GetItemData(long item) const ;
165 // Sets the item data
167 bool SetItemPtrData(long item, wxUIntPtr data);
169 bool SetItemData(long item, long data);
171 // Gets the item rectangle
172 bool GetItemRect(long item, wxRect& rect, int code = wxLIST_RECT_BOUNDS) const ;
175 bool GetSubItemRect(long item, long subItem, wxRect& rect, int code = wxLIST_RECT_BOUNDS) const ;
177 // Gets the item position
178 bool GetItemPosition(long item, wxPoint& pos) const ;
180 // Sets the item position
181 bool SetItemPosition(long item, const wxPoint& pos) ;
189 // get the horizontal and vertical components of the item spacing
192 // Foreground colour of an item.
193 void SetItemTextColour( long item, const wxColour& col);
194 wxColour GetItemTextColour( long item ) const;
196 // Background colour of an item.
197 void SetItemBackgroundColour( long item, const wxColour &col);
198 wxColour GetItemBackgroundColour( long item ) const;
200 // Font of an item.
201 void SetItemFont( long item, const wxFont &f);
202 wxFont GetItemFont( long item ) const;
213 // Gets the index of the topmost visible item when in
223 // Searches for an item, starting from 'item'.
224 // item can be -1 to find the first item that matches the
226 // Returns the item or -1 if unsuccessful.
227 long GetNextItem(long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE) const ;
249 void RefreshItem(long item);
258 // Deletes an item
259 bool DeleteItem(long item);
274 wxTextCtrl* EditLabel(long item, wxClassInfo* textControlClass = CLASSINFO(wxTextCtrl));
279 // Ensures this item is visible
280 bool EnsureVisible(long item) ;
282 // Find an item whose label matches this string, starting from the item after 'start'
286 // Find an item whose data matches this data, starting from the item after 'start'
290 // Find an item nearest this position in the specified direction, starting from
291 // the item after 'start' or the beginning if 'start' is -1.
294 // Determines which item (if any) is at the specified point,
299 // Inserts an item, returning the index of the new item if successful,
303 // Insert a string item
306 // Insert an image item
309 // Insert an image/string item
333 // item1 is the long data associated with a first item (NOT the index).
334 // item2 is the long data associated with a second item (NOT the index).
336 // The return value is a negative number if the first item should precede the second
337 // item, a positive number of the second item should precede the first,
388 // get the item attribute, either by quering it for virtual control, or by
390 wxListItemAttr *DoGetItemAttr(long item) const;
403 long m_count; // Keep track of item count to save calls to
416 // return the text for the given column of the given item
417 virtual wxString OnGetItemText(long item, long column) const;
419 // return the icon for the given item. In report view, OnGetItemImage will
422 virtual int OnGetItemImage(long item) const;
424 // return the icon for the given item and column.
425 virtual int OnGetItemColumnImage(long item, long column) const;
427 // return the attribute for the item (may return NULL if none)
428 virtual wxListItemAttr *OnGetItemAttr(long item) const;