X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/873ff54b1f05225421d89b1256a808d673aeb269..5eeccdd52c8a7140bfa220d412aa9dc181f7a4d8:/interface/wx/bookctrl.h diff --git a/interface/wx/bookctrl.h b/interface/wx/bookctrl.h index 15f27c1abf..41ef787efe 100644 --- a/interface/wx/bookctrl.h +++ b/interface/wx/bookctrl.h @@ -6,6 +6,31 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// +/** + Bit flags returned by wxBookCtrl::HitTest(). + + Notice that wxOSX currently only returns wxBK_HITTEST_ONLABEL or + wxBK_HITTEST_NOWHERE and never the other values, so you should only test + for these two in the code that should be portable under OS X. + */ +enum +{ + /// No tab at the specified point. + wxBK_HITTEST_NOWHERE = 1, + + /// The point is over an icon. + wxBK_HITTEST_ONICON = 2, + + /// The point is over a tab label. + wxBK_HITTEST_ONLABEL = 4, + + /// The point if over a tab item but not over its icon or label. + wxBK_HITTEST_ONITEM = wxBK_HITTEST_ONICON | wxBK_HITTEST_ONLABEL, + + /// The point is over the page area. + wxBK_HITTEST_ONPAGE = 8 +}; + /** @class wxBookCtrlBase @@ -176,19 +201,10 @@ public: @param pt Specifies the point for the hit test. @param flags - Return value for detailed information. One of the following values: -
wxBK_HITTEST_NOWHERE | -There was no tab under this point. |
wxBK_HITTEST_ONICON | -The point was over an icon (currently wxMSW only). |
wxBK_HITTEST_ONLABEL | -The point was over a label (currently wxMSW only). |
wxBK_HITTEST_ONITEM | -The point was over an item, but not on the label or icon. |
wxBK_HITTEST_ONPAGE | -The point was over a currently selected page, not over any tab. - Note that this flag is present only if wxNOT_FOUND is returned. |