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

Lines Matching refs:item

59     which item. Each image in an image list can contain a mask, and can be made out
117 bool GetColumn(int col, wxListItem& item) const;
120 bool SetColumn(int col, wxListItem& item) ;
140 // Gets information about the item
143 // Sets information about the item
149 // Gets the item state
150 int GetItemState(long item, long stateMask) const ;
152 // Sets the item state
153 bool SetItemState(long item, long state, long stateMask) ;
155 // Sets the item image
156 bool SetItemImage(long item, int image, int selImage) ;
157 bool SetItemColumnImage(long item, long column, int image);
159 // Gets the item text
160 wxString GetItemText(long item) const ;
162 // Sets the item text
163 void SetItemText(long item, const wxString& str) ;
165 // Gets the item data
166 long GetItemData(long item) const ;
168 // Sets the item 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 ;
174 // Gets the item position
175 bool GetItemPosition(long item, wxPoint& pos) const ;
177 // Sets the item position
178 bool SetItemPosition(long item, const wxPoint& pos) ;
186 // get the horizontal and vertical components of the item spacing
189 // Foreground colour of an item.
190 void SetItemTextColour( long item, const wxColour& col);
191 wxColour GetItemTextColour( long item ) const;
193 // Background colour of an item.
194 void SetItemBackgroundColour( long item, const wxColour &col);
195 wxColour GetItemBackgroundColour( long item ) const;
206 // Gets the index of the topmost visible item when in
213 // Searches for an item, starting from 'item'.
214 // item can be -1 to find the first item that matches the
216 // Returns the item or -1 if unsuccessful.
217 long GetNextItem(long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE) const ;
233 void RefreshItem(long item);
242 // Deletes an item
243 bool DeleteItem(long item);
258 wxTextCtrl* EditLabel(long item, wxClassInfo* textControlClass = CLASSINFO(wxTextCtrl));
263 // Ensures this item is visible
264 bool EnsureVisible(long item) ;
266 // Find an item whose label matches this string, starting from the item after 'start'
270 // Find an item whose data matches this data, starting from the item after 'start'
274 // Find an item nearest this position in the specified direction, starting from
275 // the item after 'start' or the beginning if 'start' is -1.
278 // Determines which item (if any) is at the specified point,
282 // Inserts an item, returning the index of the new item if successful,
286 // Insert a string item
289 // Insert an image item
292 // Insert an image/string item
316 // item1 is the long data associated with a first item (NOT the index).
317 // item2 is the long data associated with a second item (NOT the index).
319 // The return value is a negative number if the first item should precede the second
320 // item, a positive number of the second item should precede the first,
362 long m_count; // Keep track of item count to save calls to
375 // return the text for the given column of the given item
376 virtual wxString OnGetItemText(long item, long column) const;
378 // return the text for the given column of the given item
379 virtual wxString OnGetItemText(long item, long column) const;
381 // return the icon for the given item. In report view, OnGetItemImage will
384 virtual int OnGetItemImage(long item) const;
386 // return the attribute for the item (may return NULL if none)
387 virtual wxListItemAttr *OnGetItemAttr(long item) const;