• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/extern/wxWidgets/

Lines Matching refs:item

26 // Fix for bug in wx's implementation, which uses longs for item*
73 bool GetColumn( int col, wxListItem& item ) const;
74 bool SetColumn( int col, wxListItem& item );
84 int GetItemState( long item, long stateMask ) const;
85 bool SetItemState( long item, long state, long stateMask);
86 bool SetItemImage( long item, int image, int selImage = -1 );
87 bool SetItemColumnImage( long item, long column, int image );
88 wxString GetItemText( long item ) const;
89 void SetItemText( long item, const wxString& str );
90 wxUIntPtr GetItemData( long item ) const;
92 bool SetItemPtrData(long item, wxUIntPtr data);
96 // just about only use pointers as item-data, I've choosen to disable
99 bool SetItemData(long item, long data);
101 bool GetItemRect( long item, wxRect& rect, int code = wxLIST_RECT_BOUNDS ) const;
102 bool GetItemPosition( long item, wxPoint& pos ) const;
103 bool SetItemPosition( long item, const wxPoint& pos ); // not supported in wxGLC
108 void SetItemTextColour( long item, const wxColour& col);
109 wxColour GetItemTextColour( long item ) const;
110 void SetItemBackgroundColour( long item, const wxColour &col);
111 wxColour GetItemBackgroundColour( long item ) const;
112 void SetItemFont( long item, const wxFont &f);
113 wxFont GetItemFont( long item ) const;
122 long GetNextItem( long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE ) const;
129 bool DeleteItem( long item );
136 wxTextCtrl *EditLabel(long item,
139 void Edit( long item ) { EditLabel(item); }
141 bool EnsureVisible( long item );
155 bool Update( long item );
170 void RefreshItem(long item);
198 virtual void OnDrawItem(int item, wxDC* dc, const wxRect& rect, const wxRect& rectHL, bool highlighted);
242 // return the text for the given column of the given item
243 virtual wxString OnGetItemText(long item, long column) const;
245 // return the icon for the given item. In report view, OnGetItemImage will
248 virtual int OnGetItemImage(long item) const;
250 // return the icon for the given item and column.
251 virtual int OnGetItemColumnImage(long item, long column) const;
253 // return the attribute for the item (may return NULL if none)
254 virtual wxListItemAttr *OnGetItemAttr(long item) const;