implemented Freeze/Thaw() for the generic listctrl

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12287 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-11-03 17:06:29 +00:00
parent 4fb788e466
commit c5c528fc7f
4 changed files with 76 additions and 13 deletions

View File

@@ -158,20 +158,24 @@ public:
// We have to hand down a few functions
bool SetBackgroundColour( const wxColour &colour );
bool SetForegroundColour( const wxColour &colour );
bool SetFont( const wxFont &font );
virtual void Freeze();
virtual void Thaw();
virtual bool SetBackgroundColour( const wxColour &colour );
virtual bool SetForegroundColour( const wxColour &colour );
virtual wxColour GetBackgroundColour() const;
virtual wxColour GetForegroundColour() const;
virtual bool SetFont( const wxFont &font );
virtual bool SetCursor( const wxCursor &cursor );
#if wxUSE_DRAG_AND_DROP
void SetDropTarget( wxDropTarget *dropTarget );
wxDropTarget *GetDropTarget() const;
virtual void SetDropTarget( wxDropTarget *dropTarget );
virtual wxDropTarget *GetDropTarget() const;
#endif
bool SetCursor( const wxCursor &cursor );
wxColour GetBackgroundColour() const;
wxColour GetForegroundColour() const;
bool DoPopupMenu( wxMenu *menu, int x, int y );
void SetFocus();
virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
virtual void SetFocus();
// implementation
// --------------