1. wxInputHandler::Map() can return a sequence of actions, not only one
2. wxControl::PerformAction() takes a wxEvent parameter 3. wxGTK fix: send enter/leave events even when the mouse is captured 4. renamed "highlighted" state to "current" git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/wxUNIVERSAL@8140 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -37,10 +37,10 @@ class WXDLLEXPORT wxWindow;
|
||||
enum
|
||||
{
|
||||
wxRENDER_ENABLED = 0x00000001,
|
||||
wxRENDER_FOCUSED = 0x00000002,
|
||||
wxRENDER_FOCUSED = 0x00000002, // control currently has keyboard focus
|
||||
wxRENDER_PRESSED = 0x00000004,
|
||||
wxRENDER_DEFAULT = 0x00000008, // button...
|
||||
wxRENDER_HIGHLIGHT = 0x00000010,
|
||||
wxRENDER_DEFAULT = 0x00000008, // only applies to the buttons
|
||||
wxRENDER_CURRENT = 0x00000010, // mouse is currently over the control
|
||||
|
||||
wxRENDER_FLAGS_MASK = 0x0000001f
|
||||
};
|
||||
|
Reference in New Issue
Block a user