• 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

30     // Double-clicking cycles item if wxCB_READONLY is also used.
45 // when set, we are painting the selected item in control,
50 // when set, we are painting an item which should have
64 // wxGenericComboControl, then remember that vast majority of item manipulation
96 void SetSelection( int item );
97 void Insert( const wxString& item, int pos );
98 int Append(const wxString& item);
100 void Delete( unsigned int item );
103 void SetString( int item, const wxString& str );
104 wxString GetString( int item ) const;
130 void ItemWidthChanged(unsigned int item)
132 m_widths[item] = -1;
140 // item: item index to be drawn, may be wxNOT_FOUND when painting combo control itself
145 virtual void OnDrawItem( wxDC& dc, const wxRect& rect, int item, int flags ) const;
148 virtual wxCoord OnMeasureItem( size_t item ) const;
150 // Return item width, or -1 for calculating from text extent (default)
151 virtual wxCoord OnMeasureItemWidth( size_t item ) const;
153 // Draw item and combo control background. Flags are same as with OnDrawItem.
155 virtual void OnDrawBg(wxDC& dc, const wxRect& rect, int item, int flags) const;
168 // Return the widest item width (recalculating it if necessary)
171 // Return the index of the widest item (recalculating it if necessary)
191 int m_itemHover; // on which item the cursor is
192 int m_itemHeight; // default item height (calculate from font size
198 // Cached item widths (in pixels).
201 // Width of currently widest item.
204 // Index of currently widest item.
210 // Find widest item in next GetAdjustedSize?
331 // Return the widest item width (recalculating it if necessary)
334 // Return the index of the widest item (recalculating it if necessary)
343 // item: item index to be drawn, may be wxNOT_FOUND when painting combo control itself
346 virtual void OnDrawItem( wxDC& dc, const wxRect& rect, int item, int flags ) const;
348 // Callback for item height, or -1 for default
349 virtual wxCoord OnMeasureItem( size_t item ) const;
351 // Callback for item width, or -1 for default/undetermined
352 virtual wxCoord OnMeasureItemWidth( size_t item ) const;
356 virtual void OnDrawBackground( wxDC& dc, const wxRect& rect, int item, int flags ) const;
369 virtual int DoAppend(const wxString& item);
370 virtual int DoInsert(const wxString& item, unsigned int pos);