]> git.saurik.com Git - wxWidgets.git/commitdiff
move default OnInternalIdle processing to wxWindowBase
authorPaul Cornett <paulcor@bullseye.com>
Fri, 7 Jan 2011 18:15:21 +0000 (18:15 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Fri, 7 Jan 2011 18:15:21 +0000 (18:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66633 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 files changed:
include/wx/dfb/window.h
include/wx/gtk/control.h
include/wx/gtk/toolbar.h
include/wx/mgl/window.h
include/wx/motif/window.h
include/wx/osx/window.h
include/wx/window.h
src/common/wincmn.cpp
src/dfb/window.cpp
src/gtk/control.cpp
src/gtk/toolbar.cpp
src/gtk/toplevel.cpp
src/gtk/window.cpp
src/gtk1/window.cpp
src/mgl/window.cpp
src/motif/window.cpp
src/msw/window.cpp
src/os2/window.cpp
src/osx/window_osx.cpp
src/x11/window.cpp

index b12d07ab87643459da6fc678f831ca31f4925ee9..f6018c7c3f65c2cd5f2f1ded7391ed83891def3f 100644 (file)
@@ -100,8 +100,6 @@ public:
     // returns toplevel window the window belongs to
     wxNonOwnedWindow *GetTLW() const { return m_tlw; }
 
-    void OnInternalIdle();
-
     virtual bool IsDoubleBuffered() const { return true; }
 
 protected:
index 73f03e2945d5238d1eed72955c041f282647e719..164337796cd909cb3ed49e0b6e8aedf8631715bb 100644 (file)
@@ -46,8 +46,6 @@ public:
 
     virtual wxVisualAttributes GetDefaultAttributes() const;
 
-    virtual void OnInternalIdle();
-
 protected:
     virtual wxSize DoGetBestSize() const;
     void PostCreation(const wxSize& size);
index c752a8dd45f1855eb31ee41990b3f3cdb25a40f1..6b15764910e45f088035f642cd073c1e4f069701 100644 (file)
@@ -59,8 +59,6 @@ public:
     // implementation from now on
     // --------------------------
 
-    void OnInternalIdle();
-
 protected:
     virtual wxSize DoGetBestSize() const;
     virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
index 92f50b208bd697c8fd9be6f501b8998767867999..8f72a2747612871618521c6f3d6d14c310793f80 100644 (file)
@@ -89,8 +89,6 @@ public:
     // implementation from now on
     // --------------------------
 
-    void OnInternalIdle();
-
 protected:
     virtual void DoFreeze();
     virtual void DoThaw();
index 0069899bff66001d0fa9b9b43317758a1099fe6b..82c17932209e3f68f7482907fb881e407eaddff6 100644 (file)
@@ -138,9 +138,6 @@ public:
     void ClearUpdateRegion() { m_updateRegion.Clear(); }
     void SetUpdateRegion(const wxRegion& region) { m_updateRegion = region; }
 
-    // Process idle (send update events)
-    void OnInternalIdle();
-
     // post-creation activities
     void PostCreation();
 
index 875a5ef093679dca137bee4c77777f189f768a9b..c548f2171ebb30041e470bad4840a30ea259ebca 100644 (file)
@@ -156,8 +156,6 @@ public:
     static long         MacRemoveBordersFromStyle( long style ) ;
 
 public:
-    void OnInternalIdle();
-
     // For implementation purposes:
     // sometimes decorations make the client area smaller
     virtual wxPoint GetClientAreaOrigin() const;
index 2260f8fe3de1fafcd85dde19aff943123c540427..cb68751aad97f6724f03fde5b4a214450f40f104 100644 (file)
@@ -1370,7 +1370,7 @@ public:
 
         // virtual function for implementing internal idle
         // behaviour
-        virtual void OnInternalIdle() {}
+        virtual void OnInternalIdle();
 
         // call internal idle recursively
 //        void ProcessInternalIdle() ;
index e458f80cda9458060481f821936f461071faa505..82e0f7a3ee686a8ab7489cb4395e24233c4d1fd8 100644 (file)
@@ -2600,6 +2600,16 @@ void wxWindowBase::DoUpdateWindowUI(wxUpdateUIEvent& event)
         Show(event.GetShown());
 }
 
+// ----------------------------------------------------------------------------
+// Idle processing
+// ----------------------------------------------------------------------------
+
+void wxWindowBase::OnInternalIdle()
+{
+    if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
+        UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
+}
+
 // ----------------------------------------------------------------------------
 // dialog units translations
 // ----------------------------------------------------------------------------
index bfe64b16f073298bb8a7b1f3d798b05ff89cf0d8..51707653a868e4ccb6cc636ff70365bd9d82ecfb 100644 (file)
@@ -1054,17 +1054,6 @@ void wxWindowDFB::HandleKeyEvent(const wxDFBWindowEvent& event_)
     }
 }
 
-// ---------------------------------------------------------------------------
-// idle events processing
-// ---------------------------------------------------------------------------
-
-void wxWindowDFB::OnInternalIdle()
-{
-    if (wxUpdateUIEvent::CanUpdate(this) && IsShown())
-        UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
-}
-
-
 // Find the wxWindow at the current mouse position, returning the mouse
 // position.
 wxWindow* wxFindWindowAtPointer(wxPoint& pt)
index 0191a2f91963ab654f5c73eab6b611b06677ccbb..7012a7572c67089da76672e00a96e2d63a83b4cb 100644 (file)
@@ -314,17 +314,4 @@ wxControl::GetDefaultAttributesFromGTKWidget(wxGtkWidgetNewFromAdj_t widget_new,
     return attr;
 }
 
-// ----------------------------------------------------------------------------
-// idle handling
-// ----------------------------------------------------------------------------
-
-void wxControl::OnInternalIdle()
-{
-    if ( GTKShowFromOnIdle() )
-        return;
-
-    if ( wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen() )
-        UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
-}
-
 #endif // wxUSE_CONTROLS
index b25f775019f4743eeb74771cd5bc9ee1f682d005..969c7f9f360f55b806ea72b459a3e10d662d4bff 100644 (file)
@@ -747,20 +747,6 @@ void wxToolBar::SetToolDisabledBitmap( int id, const wxBitmap& bitmap )
     }
 }
 
-// ----------------------------------------------------------------------------
-// wxToolBar idle handling
-// ----------------------------------------------------------------------------
-
-void wxToolBar::OnInternalIdle()
-{
-    // Check if we have to show window now
-    if (GTKShowFromOnIdle()) return;
-
-    if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
-        UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
-}
-
-
 // ----------------------------------------------------------------------------
 
 // static
index 18d5775a2fc73a5d5231e89189ea0b68d39485a1..4e3e5603235e8ba503b61951b562e5fb97b9daa2 100644 (file)
@@ -1144,7 +1144,7 @@ wxSize& wxTopLevelWindowGTK::GetCachedDecorSize()
 
 void wxTopLevelWindowGTK::OnInternalIdle()
 {
-    wxWindow::OnInternalIdle();
+    wxTopLevelWindowBase::OnInternalIdle();
 
     // Synthetize activate events.
     if ( g_sendActivateEvent != -1 )
index 26e7dc2b446f9b1a7d3ff0bde73b3230ed58d3a3..85c1dfc1d147c33d4275dce3e2b8b8f014b7592f 100644 (file)
@@ -2615,8 +2615,7 @@ void wxWindowGTK::OnInternalIdle()
         m_needsStyleChange = false;
     }
 
-    if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
-        UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
+    wxWindowBase::OnInternalIdle();
 }
 
 void wxWindowGTK::DoGetSize( int *width, int *height ) const
index dcefcff70ce710a6a875a3094043251c9ac568c3..c339054997730158a6f9bbb98ccbcd3a253211ed 100644 (file)
@@ -2960,8 +2960,7 @@ void wxWindowGTK::OnInternalIdle()
         }
     }
 
-    if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
-        UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
+    wxWindowBase::OnInternalIdle();
 }
 
 void wxWindowGTK::DoGetSize( int *width, int *height ) const
index d46081e8b1ae021a932cde887c4299998e53b600..aad3ea0e6b415f035fcc7ed73a093b8eb854e043 100644 (file)
@@ -1206,14 +1206,3 @@ wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
     window_t *wnd = MGL_wmGetWindowAtPosition(g_winMng, pt.x, pt.y);
     return (wxWindow*)wnd->userData;
 }
-
-
-// ---------------------------------------------------------------------------
-// idle events processing
-// ---------------------------------------------------------------------------
-
-void wxWindowMGL::OnInternalIdle()
-{
-    if (wxUpdateUIEvent::CanUpdate(this) && IsShown())
-        UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
-}
index 9fa2c9e3dc0898d3b57011a70daa6544a176c40d..6078beb09c89d91ae39443d11880e263370ded12 100644 (file)
@@ -1652,14 +1652,6 @@ void wxWindow::OnSysColourChanged(wxSysColourChangedEvent& event)
     }
 }
 
-void wxWindow::OnInternalIdle()
-{
-    // This calls the UI-update mechanism (querying windows for
-    // menu/toolbar/control state information)
-    if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
-        UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
-}
-
 // ----------------------------------------------------------------------------
 // accelerators
 // ----------------------------------------------------------------------------
index 6e3bd673e477894e2f866fb5cbaf2227bc4df197..0c442570e223e9e1b0e18d4cfbc849f351adcc62 100644 (file)
@@ -1507,8 +1507,7 @@ void wxWindowMSW::OnInternalIdle()
     }
 #endif // !HAVE_TRACKMOUSEEVENT
 
-    if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
-        UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
+    wxWindowBase::OnInternalIdle();
 }
 
 // Set this window to be the child of 'parent'.
index ddcc14e1d099eab510f2bcd2d5e8294824d730e6..2974b884e33aa61b55f5c132ea31759a82fc693f 100644 (file)
@@ -1087,8 +1087,6 @@ void wxWindowOS2::OnIdle(
             (void)HandleWindowEvent(rEvent);
         }
     }
-    if (wxUpdateUIEvent::CanUpdate(this))
-        UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
 } // end of wxWindowOS2::OnIdle
 
 //
index 6fe191e35995435ef8925544a93511dd422b0d4b..ce444b9913fe61f059964f7a0099167dd1d1f853 100644 (file)
@@ -1683,14 +1683,6 @@ wxWindow *wxWindowBase::DoFindFocus()
     return wxFindWindowFromWXWidget(wxWidgetImpl::FindFocus());
 }
 
-void wxWindowMac::OnInternalIdle()
-{
-    // This calls the UI-update mechanism (querying windows for
-    // menu/toolbar/control state information)
-    if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
-        UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
-}
-
 // Raise the window to the top of the Z order
 void wxWindowMac::Raise()
 {
index 7c2e5ae15b16978a61923ae1049b863f8cca598d..e9692b860084042ad59311d8c4f0e58b2812e38c 100644 (file)
@@ -1318,10 +1318,7 @@ void wxWindowX11::OnInternalIdle()
     // Update invalidated regions.
     Update();
 
-    // This calls the UI-update mechanism (querying windows for
-    // menu/toolbar/control state information)
-    if (wxUpdateUIEvent::CanUpdate((wxWindow*) this) && IsShownOnScreen())
-        UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
+    wxWindowBase::OnInternalIdle();
 
     // Set the input focus if couldn't do it before
     if (m_needsInputFocus)