X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b3b61cdaa039a459942dadbb811024f5f32789f2..42f8298f6f42d5d63bb3caf65682b7d9d9f8b702:/wxPython/src/_event.i diff --git a/wxPython/src/_event.i b/wxPython/src/_event.i index b564f3ef59..23f7064cc7 100644 --- a/wxPython/src/_event.i +++ b/wxPython/src/_event.i @@ -1139,6 +1139,11 @@ public: bool IsWindowChange() const; void SetWindowChange(bool ischange); + // Set to true under MSW if the event was generated using the tab key. + // This is required for proper navogation over radio buttons + bool IsFromTab() const; + void SetFromTab(bool bIs); + void SetFlags(long flags); // the child which has the focus currently (may be NULL - use @@ -1149,7 +1154,8 @@ public: enum { IsBackward, IsForward, - WinChange + WinChange, + FromTab }; };