• 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

53     which item. Each image in an image list can contain a mask, and can be made out
71 // State flags for indicating the state of an item
81 #define wxLIST_HITTEST_NOWHERE 0x0004 // In the client area but below the last item.
82 #define wxLIST_HITTEST_ONITEMICON 0x0020 // On the bitmap associated with an item.
83 #define wxLIST_HITTEST_ONITEMLABEL 0x0080 // On the label (string) associated with an item.
84 #define wxLIST_HITTEST_ONITEMRIGHT 0x0100 // In the area to the right of an item.
85 #define wxLIST_HITTEST_ONITEMSTATEICON 0x0200 // On the state icon for a tree view item that is in a user-defined state.
93 wxLIST_NEXT_ABOVE, // Searches for an item above the specified item
94 wxLIST_NEXT_ALL, // Searches for subsequent item by index
95 wxLIST_NEXT_BELOW, // Searches for an item below the specified item
96 wxLIST_NEXT_LEFT, // Searches for an item to the left of the specified item
97 wxLIST_NEXT_RIGHT, // Searches for an item to the right of the specified item
137 // wxListItem: data representing an item, or report field.
145 long m_itemId; // The zero-based item position
147 long m_state; // The state of the item
189 bool GetColumn(int col, wxListItem& item) const;
192 bool SetColumn(int col, wxListItem& item) ;
209 // Gets information about the item
212 // Sets information about the item
218 // Gets the item state
219 int GetItemState(long item, long stateMask) const ;
221 // Sets the item state
222 bool SetItemState(long item, long state, long stateMask) ;
224 // Sets the item image
225 bool SetItemImage(long item, int image, int selImage) ;
226 bool SetItemColumnImage(long item, long column, int image);
228 // Gets the item text
229 wxString GetItemText(long item) const ;
231 // Sets the item text
232 void SetItemText(long item, const wxString& str) ;
234 // Gets the item data
235 long GetItemData(long item) const ;
237 // Sets the item data
238 bool SetItemData(long item, long data) ;
240 // Gets the item rectangle
241 bool GetItemRect(long item, wxRect& rect, int code = wxLIST_RECT_BOUNDS) const ;
243 // Gets the item position
244 bool GetItemPosition(long item, wxPoint& pos) const ;
246 // Sets the item position
247 bool SetItemPosition(long item, const wxPoint& pos) ;
269 // Gets the index of the topmost visible item when in
279 // Searches for an item, starting from 'item'.
280 // item can be -1 to find the first item that matches the
282 // Returns the item or -1 if unsuccessful.
283 long GetNextItem(long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE) const ;
309 // Deletes an item
310 bool DeleteItem(long item);
325 wxTextCtrl* EditLabel(long item, wxClassInfo* textControlClass = CLASSINFO(wxTextCtrl));
330 // Ensures this item is visible
331 bool EnsureVisible(long item) ;
333 // Find an item whose label matches this string, starting from the item after 'start'
337 // Find an item whose data matches this data, starting from the item after 'start'
341 // Find an item nearest this position in the specified direction, starting from
342 // the item after 'start' or the beginning if 'start' is -1.
345 // Determines which item (if any) is at the specified point,
349 // Inserts an item, returning the index of the new item if successful,
355 // Insert a string item
358 // Insert an image item
361 // Insert an image/string item
380 // item1 is the long data associated with a first item (NOT the index).
381 // item2 is the long data associated with a second item (NOT the index).
383 // The return value is a negative number if the first item should precede the second
384 // item, a positive number of the second item should precede the first,
391 * We might need it because item data may have changed,
393 // Updates an item. If the list control has the wxLI_AUTO_ARRANGE style,
395 bool Update(long item);