void Enable(bool enable) { m_enabled = enable; m_setEnabled = TRUE; }
void SetText(const wxString& text) { m_text = text; m_setText = TRUE; }
+ // Sets the interval between updates in milliseconds.
+ // Set to -1 to disable updates, or to 0 to update as frequently as possible.
+ static void SetUpdateInterval(long updateInterval) { m_updateInterval = updateInterval; }
+
+ // Returns the current interval between updates in milliseconds
+ static long GetUpdateInterval() { return m_updateInterval ; }
+
+ // Can we update?
+ static bool CanUpdate() ;
+
+ // Reset the update time to provide a delay until the next
+ // time we should update
+ static void ResetUpdateTime() ;
+
virtual wxEvent *Clone() const { return new wxUpdateUIEvent(*this); }
protected:
bool m_setText;
bool m_setChecked;
wxString m_text;
+#if wxUSE_LONGLONG
+ static wxLongLong m_lastUpdate;
+#endif
+ static long m_updateInterval;
private:
DECLARE_DYNAMIC_CLASS(wxUpdateUIEvent)
// event handlers
void OnIdle(wxIdleEvent& event);
+ void OnMenuOpen(wxMenuEvent& event);
void OnMenuHighlight(wxMenuEvent& event);
#if wxUSE_MENUS
#endif
#endif
+/* Choose which method we will use for updating menus
+ * - in OnIdle, or when we receive a wxEVT_MENU_OPEN event.
+ * Presently, only Windows and GTK+ support wxEVT_MENU_OPEN.
+ */
+#ifndef wxUSE_IDLEMENUUPDATES
+ #if defined(__WXMSW__) || defined(__WXGTK__)
+ #define wxUSE_IDLEMENUUPDATES 0
+ #else
+ #define wxUSE_IDLEMENUUPDATES 1
+ #endif
+#endif
+
#endif /* _WX_PLATFORM_H_ */
event.SetEventObject(this);
ProcessEvent(event);
+ wxUpdateUIEvent::ResetUpdateTime();
+
return event.MoreRequested();
}
#if wxUSE_GUI
#include "wx/validate.h"
+#if wxUSE_STOPWATCH
+ #include "wx/stopwatch.h"
+#endif
#endif // wxUSE_GUI
// ----------------------------------------------------------------------------
m_isCommandEvent = TRUE;
}
+/*
+ * UI update events
+ */
+
+#if wxUSE_LONGLONG
+wxLongLong wxUpdateUIEvent::m_lastUpdate = 0;
+#endif
+
+long wxUpdateUIEvent::m_updateInterval = 0;
+
+// Can we update?
+bool wxUpdateUIEvent::CanUpdate()
+{
+ if (m_updateInterval == -1)
+ return FALSE;
+ else if (m_updateInterval == 0)
+ return TRUE;
+ else
+ {
+#if wxUSE_STOPWATCH && wxUSE_LONGLONG
+ wxLongLong now = wxGetLocalTimeMillis();
+ if (now > (m_lastUpdate + m_updateInterval))
+ {
+ return TRUE;
+ }
+#else
+ // If we don't have wxStopWatch or wxLongLong, we
+ // should err on the safe side and update now anyway.
+ return TRUE;
+#endif
+ }
+ return FALSE;
+}
+
+// Reset the update time to provide a delay until the next
+// time we should update
+void wxUpdateUIEvent::ResetUpdateTime()
+{
+#if wxUSE_STOPWATCH && wxUSE_LONGLONG
+ if (m_updateInterval > 0)
+ {
+ wxLongLong now = wxGetLocalTimeMillis();
+ if (now > (m_lastUpdate + m_updateInterval))
+ {
+ m_lastUpdate = now;
+ }
+ }
+#endif
+}
+
+
/*
* Scroll events
*/
// ----------------------------------------------------------------------------
BEGIN_EVENT_TABLE(wxFrameBase, wxTopLevelWindow)
+#if wxUSE_MENUS && wxUSE_IDLEMENUUPDATES
EVT_IDLE(wxFrameBase::OnIdle)
+#endif
+#if wxUSE_MENUS && !wxUSE_IDLEMENUUPDATES
+ EVT_MENU_OPEN(wxFrameBase::OnMenuOpen)
+#endif
EVT_MENU_HIGHLIGHT_ALL(wxFrameBase::OnMenuHighlight)
END_EVENT_TABLE()
void wxFrameBase::OnIdle(wxIdleEvent& WXUNUSED(event) )
{
-#if wxUSE_MENUS
+#if wxUSE_MENUS && wxUSE_IDLEMENUUPDATES
+ if (wxUpdateUIEvent::CanUpdate())
+ DoMenuUpdates();
+#endif
+}
+
+void wxFrameBase::OnMenuOpen(wxMenuEvent& WXUNUSED(event))
+{
+#if wxUSE_MENUS && !wxUSE_IDLEMENUUPDATES
DoMenuUpdates();
-#endif // wxUSE_MENUS
+#endif
}
// ----------------------------------------------------------------------------
void wxToolBarBase::OnIdle(wxIdleEvent& event)
{
- DoToolbarUpdates();
+ if (wxUpdateUIEvent::CanUpdate())
+ DoToolbarUpdates();
event.Skip();
}
event.SetEventObject( this );
ProcessEvent( event );
+ wxUpdateUIEvent::ResetUpdateTime();
+
return event.MoreRequested();
}
}
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
wxSize wxCheckBox::DoGetBestSize() const
}
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
wxSize wxListBox::DoGetBestSize() const
}
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
wxSize wxRadioButton::DoGetBestSize() const
}
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
#endif // wxUSE_TOOLBAR_NATIVE
}
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
wxSize wxTextCtrl::DoGetBestSize() const
gdk_window_set_cursor(win, cursor.GetCursor());
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
// wxSize DoGetBestSize() const
}
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
void wxWindowGTK::DoGetSize( int *width, int *height ) const
event.SetEventObject( this );
ProcessEvent( event );
+ wxUpdateUIEvent::ResetUpdateTime();
+
return event.MoreRequested();
}
}
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
wxSize wxCheckBox::DoGetBestSize() const
}
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
wxSize wxListBox::DoGetBestSize() const
}
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
wxSize wxRadioButton::DoGetBestSize() const
}
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
#endif // wxUSE_TOOLBAR_NATIVE
}
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
wxSize wxTextCtrl::DoGetBestSize() const
gdk_window_set_cursor(win, cursor.GetCursor());
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
// wxSize DoGetBestSize() const
}
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
void wxWindowGTK::DoGetSize( int *width, int *height ) const
event.SetEventObject(this);
ProcessEvent(event);
+ wxUpdateUIEvent::ResetUpdateTime();
+
return event.MoreRequested();
}
event.SetEventObject(this);
ProcessEvent(event);
+ wxUpdateUIEvent::ResetUpdateTime();
+
return event.MoreRequested();
}
{
// This calls the UI-update mechanism (querying windows for
// menu/toolbar/control state information)
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
// Raise the window to the top of the Z order
{
// This calls the UI-update mechanism (querying windows for
// menu/toolbar/control state information)
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
// Raise the window to the top of the Z order
event.SetEventObject(this);
ProcessEvent(event);
+ wxUpdateUIEvent::ResetUpdateTime();
+
return event.MoreRequested();
}
{
wxIdleEvent event;
- return wxTheApp->ProcessEvent(event) && event.MoreRequested();
+ bool processed = wxTheApp->ProcessEvent(event);
+
+ wxUpdateUIEvent::ResetUpdateTime();
+
+ return processed && event.MoreRequested();
}
// ============================================================================
void wxWindowMGL::OnIdle(wxIdleEvent& WXUNUSED(event))
{
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
{
wxIdleEvent event;
- return ProcessEvent(event) && event.MoreRequested();
+ bool processed = ProcessEvent(event);
+
+ wxUpdateUIEvent::ResetUpdateTime();
+
+ return processed && event.MoreRequested();
}
void wxApp::ExitMainLoop()
{
// This calls the UI-update mechanism (querying windows for
// menu/toolbar/control state information)
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
// ----------------------------------------------------------------------------
event.SetEventObject(this);
ProcessEvent(event);
+ wxUpdateUIEvent::ResetUpdateTime();
+
return event.MoreRequested();
}
{
wxIdleEvent event;
- return wxTheApp->ProcessEvent(event) && event.MoreRequested();
+ bool processed = wxTheApp->ProcessEvent(event) ;
+
+ wxUpdateUIEvent::ResetUpdateTime();
+
+ return processed && event.MoreRequested();
}
// ============================================================================
}
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
}
// Set this window to be the child of 'parent'.
vEvent.SetEventObject(this);
ProcessEvent(vEvent);
+ wxUpdateUIEvent::ResetUpdateTime();
return vEvent.MoreRequested();
} // end of wxApp::ProcessIdle
{
wxIdleEvent event;
- return wxTheApp->ProcessEvent(event) && event.MoreRequested();
+ bool processed = wxTheApp->ProcessEvent(event) ;
+
+ wxUpdateUIEvent::ResetUpdateTime();
+
+ return processed && event.MoreRequested();
}
// ============================================================================
(void)GetEventHandler()->ProcessEvent(rEvent);
}
}
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
} // end of wxWindowOS2::OnIdle
//
event.SetEventObject(this);
ProcessEvent(event);
+ wxUpdateUIEvent::ResetUpdateTime();
+
return event.MoreRequested();
}
wxIdleEvent event;
event.SetEventObject(wxTheApp);
- return wxTheApp->ProcessEvent(event) && event.MoreRequested();
+ bool processed = wxTheApp->ProcessEvent(event) ;
+
+ wxUpdateUIEvent::ResetUpdateTime();
+
+ return processed && event.MoreRequested();
}
// ============================================================================
// This calls the UI-update mechanism (querying windows for
// menu/toolbar/control state information)
- UpdateWindowUI();
+ if (wxUpdateUIEvent::CanUpdate())
+ UpdateWindowUI();
// Set the input focus if couldn't do it before
if (m_needsInputFocus)