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

Lines Matching refs:item

77 // State flags for indicating the state of an item
92 #define wxLIST_HITTEST_NOWHERE 0x0004 // In the client area but below the last item.
93 #define wxLIST_HITTEST_ONITEMICON 0x0020 // On the bitmap associated with an item.
94 #define wxLIST_HITTEST_ONITEMLABEL 0x0080 // On the label (string) associated with an item.
95 #define wxLIST_HITTEST_ONITEMRIGHT 0x0100 // In the area to the right of an item.
96 #define wxLIST_HITTEST_ONITEMSTATEICON 0x0200 // On the state icon for a tree view item that is in a user-defined state.
108 wxLIST_NEXT_ABOVE, // Searches for an item above the specified item
109 wxLIST_NEXT_ALL, // Searches for subsequent item by index
110 wxLIST_NEXT_BELOW, // Searches for an item below the specified item
111 wxLIST_NEXT_LEFT, // Searches for an item to the left of the specified item
112 wxLIST_NEXT_RIGHT // Searches for an item to the right of the specified item
158 // wxListItemAttr: a structure containing the visual attributes of an item
213 // wxListItem: the item or column info, used to exchange data with wxListCtrl
220 wxListItem(const wxListItem& item)
222 m_mask(item.m_mask),
223 m_itemId(item.m_itemId),
224 m_col(item.m_col),
225 m_state(item.m_state),
226 m_stateMask(item.m_stateMask),
227 m_text(item.m_text),
228 m_image(item.m_image),
229 m_data(item.m_data),
230 m_format(item.m_format),
231 m_width(item.m_width),
234 // copy list item attributes
235 if ( item.HasAttributes() )
236 m_attr = new wxListItemAttr(*item.GetAttributes());
306 long m_itemId; // The zero-based item position
308 long m_state; // The state of the item
350 wxListItem& operator=(const wxListItem& item);