.\" This is a wxWidgets manpage page generated from the XML docs .TH wxUpdateUIEvent 3wx 2005-02-15 "wxWidgets" "wxWidgets class documentation" .SH NAME wxUpdateUIEvent \- A user interface update event .SH DESCRIPTION This class is used for pseudo-events which are called by wxWidgets to give an application the chance to update various user interface elements. .SH REMARKS Without update UI events, an application has to work hard to check/uncheck, enable/disable, and set the text for elements such as menu items and toolbar buttons. The code for doing this has to be mixed up with the code that is invoked when an action is invoked for a menu item or button. With update UI events, you define an event handler to look at the state of the application and change UI elements accordingly. wxWidgets will call your member functions in idle time, so you don't have to worry where to call this code. In addition to being a clearer and more declarative method, it also means you don't have to worry whether you're updating a toolbar or menubar identifier. The same handler can update a menu item and toolbar button, if the identifier is the same. Instead of directly manipulating the menu or button, you call functions in the event object, such as wxUpdateUIEvent::Check . wxWidgets will determine whether such a call has been made, and which UI element to update. These events will work for popup menus as well as menubars. Just before a menu is popped up, wxMenu::UpdateUI is called to process any UI events for the window that owns the menu. If you find that the overhead of UI update processing is affecting your application, you can do one or both of the following: Call wxUpdateUIEvent::SetMode with a value of wxUPDATE_UI_PROCESS_SPECIFIED, and set the extra style wxWS_EX_PROCESS_UPDATE_EVENTS for every window that should receive update events. No other windows will receive update events. Call wxUpdateUIEvent::SetUpdateInterval with a millisecond value to set the delay between updates. You may need to call wxWindow::UpdateWindowUI at critical points, for example when a dialog is about to be shown, in case the user sees a slight delay before windows are updated. Note that although events are sent in idle time, defining a wxIdleEvent handler for a window does not affect this because the events are sent from wxWindow::OnInternalIdle which is always called in idle time. wxWidgets tries to optimize update events on some platforms. On Windows and GTK+, events for menubar items are only sent when the menu is about to be shown, and not in idle time. .SH "PARENTS" wxCommandEvent wxEvent wxObject .SH "INCLUDE FILES" wx/event.h .SH MEMBERS .SS wxUpdateUIEvent (wxWindowID commandId = 0) Constructor. .SS static bool CanUpdate (wxWindow* window) .SS void Check (bool check) Check or uncheck the UI element. .SS void Enable (bool enable) Enable or disable the UI element. .SS bool GetChecked () Returns true if the UI element should be checked. .SS bool GetEnabled () Returns true if the UI element should be enabled. .SS bool GetSetChecked () Returns true if the application has called wxUpdateUIEvent::Check . For wxWidgets internal use only. .SS bool GetSetEnabled () Returns true if the application has called wxUpdateUIEvent::Enable . For wxWidgets internal use only. .SS bool GetSetText () Returns true if the application has called wxUpdateUIEvent::SetText . For wxWidgets internal use only. .SS wxString GetText () Returns the text that should be set for the UI element. .SS static wxUpdateUIMode GetMode () Static function returning a value specifying how wxWidgets will send update events: to all windows, or only to those which specify that they will process the events. See wxUpdateUIEvent::SetMode . .SS static long GetUpdateInterval () Returns the current interval between updates in milliseconds. -1 disables updates, 0 updates as frequently as possible. See wxUpdateUIEvent::SetUpdateInterval . .SS static void ResetUpdateTime () .SS static void SetMode (wxUpdateUIMode mode) Specify how wxWidgets will send update events: to all windows, or only to those which specify that they will process the events. mode may be one of the following values. The default is wxUPDATE_UI_PROCESS_ALL. enum wxUpdateUIMode { // Send UI update events to all windows wxUPDATE_UI_PROCESS_ALL, // Send UI update events to windows that have // the wxWS_EX_PROCESS_UI_UPDATES flag specified wxUPDATE_UI_PROCESS_SPECIFIED }; .SS void SetText (const wxString& text) Sets the text for this UI element. .SS static void SetUpdateInterval (long updateInterval) Sets the interval between updates in milliseconds. Set to -1 to disable updates, or to 0 to update as frequently as possible. The default is 0. Use this to reduce the overhead of UI update events if your application has a lot of windows. If you set the value to -1 or greater than 0, you may also need to call wxWindow::UpdateWindowUI at appropriate points in your application, such as when a dialog is about to be shown. .SH EVENTS .SS EVT_UPDATE_UI(id, func) Process a wxEVT_UPDATE_UI event for the command with the given id. .SS EVT_UPDATE_UI_RANGE(id1, id2, func) Process a wxEVT_UPDATE_UI event for any command with id included in the given range. .SH "SEE ALSO" wxCommandEvent wxEvent wxObject Event handling overview .SH "AUTHORS" Documentation content by Julian Smart, Robert Roebling, Vadim Zeitlin, Robin Dunn, et al Conversion to manpage format by Arnout Engelen (http://bzzt.net), bugreports welcome.