bool ScrollList( int dx, int dy );
bool SortItems( wxListCtrlCompare fn, long data );
bool Update( long item );
+ // Must provide overload to avoid hiding it (and warnings about it)
+ virtual void Update() { wxControl::Update(); }
// are we in report mode?
bool InReportView() const { return HasFlag(wxLC_REPORT); }
virtual wxDropTarget *GetDropTarget() const;
#endif
- virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
-
virtual bool ShouldInheritColours() const { return false; }
virtual void SetFocus();
- virtual wxSize DoGetBestSize() const;
-
// implementation
// --------------
wxCoord m_headerHeight;
protected:
+ virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
+
+ virtual wxSize DoGetBestSize() const;
+
// return the text for the given column of the given item
virtual wxString OnGetItemText(long item, long column) const;
friend class WXDLLEXPORT wxListMainWindow;
private:
- // Virtual function hiding supression
- virtual void Update() { wxWindow::Update(); }
-
// create the header window
void CreateHeaderWindow();