OnIdle -> OnInternalIdle
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21798 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -164,7 +164,7 @@ public:
|
||||
// implementation only from now on
|
||||
// -------------------------------
|
||||
|
||||
void OnIdle( wxIdleEvent &event );
|
||||
void OnInternalIdle( );
|
||||
void OnSize( wxSizeEvent &event );
|
||||
|
||||
// We have to hand down a few functions
|
||||
|
@@ -113,7 +113,7 @@ public:
|
||||
// callbacks
|
||||
// ---------
|
||||
void OnSize(wxSizeEvent& event);
|
||||
void OnIdle(wxIdleEvent& event);
|
||||
void OnInternalIdle();
|
||||
void OnSelChange(wxNotebookEvent& event);
|
||||
void OnSetFocus(wxFocusEvent& event);
|
||||
void OnNavigationKey(wxNavigationKeyEvent& event);
|
||||
|
@@ -190,7 +190,7 @@ public:
|
||||
void OnSize(wxSizeEvent& event);
|
||||
|
||||
// In live mode, resize child windows in idle time
|
||||
void OnIdle(wxIdleEvent& event);
|
||||
void OnInternalIdle();
|
||||
|
||||
// Draws borders
|
||||
virtual void DrawBorders(wxDC& dc);
|
||||
|
@@ -362,7 +362,7 @@ public:
|
||||
void OnKillFocus( wxFocusEvent &event );
|
||||
void OnChar( wxKeyEvent &event );
|
||||
void OnMouse( wxMouseEvent &event );
|
||||
void OnIdle( wxIdleEvent &event );
|
||||
void OnInternalIdle( );
|
||||
|
||||
// implementation helpers
|
||||
protected:
|
||||
|
@@ -214,7 +214,6 @@ protected:
|
||||
void OnMouseMove(wxMouseEvent& event);
|
||||
void OnMouseDown(wxMouseEvent& event);
|
||||
void OnMouseUp(wxMouseEvent& event);
|
||||
void OnIdle(wxIdleEvent& event);
|
||||
#if wxUSE_CLIPBOARD
|
||||
void OnKeyUp(wxKeyEvent& event);
|
||||
void OnDoubleClick(wxMouseEvent& event);
|
||||
@@ -223,6 +222,8 @@ protected:
|
||||
void OnMouseLeave(wxMouseEvent& event);
|
||||
#endif // wxUSE_CLIPBOARD
|
||||
|
||||
virtual void OnInternalIdle();
|
||||
|
||||
// Returns new filter (will be stored into m_DefaultFilter variable)
|
||||
virtual wxHtmlFilter *GetDefaultFilter() {return new wxHtmlFilterPlainText;}
|
||||
|
||||
|
Reference in New Issue
Block a user