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

Lines Matching refs:item

63     bool GetColumn( int col, wxListItem& item ) const;
64 bool SetColumn( int col, wxListItem& item );
73 int GetItemState( long item, long stateMask ) const;
74 bool SetItemState( long item, long state, long stateMask);
75 bool SetItemImage( long item, int image, int selImage = -1 );
76 bool SetItemColumnImage( long item, long column, int image );
77 wxString GetItemText( long item ) const;
78 void SetItemText( long item, const wxString& str );
79 wxUIntPtr GetItemData( long item ) const;
81 bool SetItemPtrData(long item, wxUIntPtr data);
83 bool SetItemData(long item, long data);
84 bool GetItemRect( long item, wxRect& rect, int code = wxLIST_RECT_BOUNDS ) const;
85 bool GetItemPosition( long item, wxPoint& pos ) const;
86 bool SetItemPosition( long item, const wxPoint& pos ); // not supported in wxGLC
91 void SetItemTextColour( long item, const wxColour& col);
92 wxColour GetItemTextColour( long item ) const;
93 void SetItemBackgroundColour( long item, const wxColour &col);
94 wxColour GetItemBackgroundColour( long item ) const;
95 void SetItemFont( long item, const wxFont &f);
96 wxFont GetItemFont( long item ) const;
105 long GetNextItem( long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE ) const;
112 bool DeleteItem( long item );
119 wxTextCtrl *EditLabel(long item,
122 void Edit( long item ) { EditLabel(item); }
124 bool EnsureVisible( long item );
138 bool Update( long item );
152 void RefreshItem(long item);
222 // return the text for the given column of the given item
223 virtual wxString OnGetItemText(long item, long column) const;
225 // return the icon for the given item. In report view, OnGetItemImage will
228 virtual int OnGetItemImage(long item) const;
230 // return the icon for the given item and column.
231 virtual int OnGetItemColumnImage(long item, long column) const;
233 // return the attribute for the item (may return NULL if none)
234 virtual wxListItemAttr *OnGetItemAttr(long item) const;