Home | Trees | Index | Help |
|
---|
Package wx :: Class UpdateUIEvent |
|
object
--+ |Object
--+ |Event
--+ |CommandEvent
--+ | UpdateUIEvent
This class is used for EVT_UPDATE_UI pseudo-events which are sent by wxWidgets to give an application the chance to update various user interface elements.
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 handler 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 ID values are the same.
Instead of directly manipulating the menu or button, you call
functions in the event object, such as 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, wx.Menu.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
wx.UpdateUIEvent.SetMode
with a value of wx.UPDATE_UI_PROCESS_SPECIFIED, and set the extra style wx.WS_EX_PROCESS_UPDATE_EVENTS for every window that should receive update events. No other windows will receive update events.- Call
wx.UpdateUIEvent.SetUpdateInterval
with a millisecond value to set the delay between updates. You may need to callwx.Window.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 EVT_IDLE handler for a window does not affect this because the events are sent from an internal idle handler.
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.
Method Summary | |
---|---|
UpdateUIEvent |
Constructor |
bool |
Returns True if it is appropriate to update (send UI update events to) this window. (Static method) |
Check or uncheck the UI element. | |
Enable or disable the UI element. | |
bool |
Returns True if the UI element should be checked. |
bool |
Returns True if the UI element should be enabled. |
int |
Returns a value specifying how wxWidgets will send update events: to all windows, or only to those which specify that they will process the events. (Static method) |
bool |
Returns True if the application has called Check . |
bool |
Returns True if the application has called Enable . |
bool |
Returns True if the application has called Show . |
bool |
Returns True if the application has called SetText . |
bool |
Returns True if the UI element should be shown. |
String |
Returns the text that should be set for the UI element. |
long |
Returns the current interval between updates in milliseconds. (Static method) |
Used internally to reset the last-updated time to the current time. (Static method) | |
Specify how wxWidgets will send update events: to all windows, or only to those which specify that they will process the events. (Static method) | |
Sets the text for this UI element. | |
Sets the interval between updates in milliseconds. (Static method) | |
Show or hide the UI element. |
Property Summary | |
---|---|
Checked : See GetChecked | |
Enabled : See GetEnabled | |
Shown : See GetShown | |
Text : See GetText and SetText | |
thisown : The membership flag |
Instance Method Details |
---|
__init__(self,
commandId=0)
|
Check(self, check)Check or uncheck the UI element.
|
Enable(self, enable)Enable or disable the UI element.
|
GetChecked(self)Returns True if the UI element should be checked.
|
GetEnabled(self)Returns True if the UI element should be enabled.
|
GetSetChecked(self)Returns True if the application has called
|
GetSetEnabled(self)Returns True if the application has called
|
GetSetShown(self)Returns True if the application has called
|
GetSetText(self)Returns True if the application has called
|
GetShown(self)Returns True if the UI element should be shown.
|
GetText(self)Returns the text that should be set for the UI element.
|
SetText(self, text)Sets the text for this UI element.
|
Show(self, show)Show or hide the UI element.
|
Static Method Details |
---|
CanUpdate(win)Returns True if it is appropriate to update (send UI update events to) this window. This function looks at the mode used (see
|
GetMode()Returns a value specifying how wxWidgets will send update events: to all windows, or only to those which specify that they will process the events.
|
GetUpdateInterval()Returns the current interval between updates in milliseconds. -1 disables updates, 0 updates as frequently as possible.
|
ResetUpdateTime()Used internally to reset the last-updated time to the current time. It is assumed that update events are normally sent in idle time, so this is called at the end of idle processing. |
SetMode(mode)Specify how wxWidgets will send update events: to all windows, or only to those which specify that they will process the events. The mode may be one of the following values:
|
SetUpdateInterval(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
|
Property Details |
---|
CheckedSee
|
EnabledSee
|
ShownSee |
Text |
thisownThe membership flag |
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1.20050511.rpd on Thu Mar 22 12:08:39 2007 | http://epydoc.sf.net |