From: Robin Dunn Date: Sat, 19 Feb 2005 22:39:17 +0000 (+0000) Subject: Add tab methods to NavigationKeyEvent X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b7189025866e6d6ebe2f5f0cb1d0459921bcfecb Add tab methods to NavigationKeyEvent git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32217 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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 }; };