summaryrefslogtreecommitdiff
path: root/lib/wx/api_gen/wx_extra
diff options
context:
space:
mode:
Diffstat (limited to 'lib/wx/api_gen/wx_extra')
-rw-r--r--lib/wx/api_gen/wx_extra/added_func.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/lib/wx/api_gen/wx_extra/added_func.h b/lib/wx/api_gen/wx_extra/added_func.h
index 6ceed571f0..e98d1a0e69 100644
--- a/lib/wx/api_gen/wx_extra/added_func.h
+++ b/lib/wx/api_gen/wx_extra/added_func.h
@@ -1,5 +1,14 @@
// Added 3.0 functionality
+enum wxMouseWheelAxis
+ {
+ wxMOUSE_WHEEL_VERTICAL,
+ wxMOUSE_WHEEL_HORIZONTAL
+ };
+
+#define wxMOUSE_BTN_AUX1 4
+#define wxMOUSE_BTN_AUX2 5
+
class WXDLLIMPEXP_AUI wxAuiTabArt
{
public:
@@ -57,4 +66,10 @@ class wxMenuBar {
wxMenu *OSXGetAppleMenu() const { return m_appleMenu; }
static void SetAutoWindowMenu( bool enable ) { s_macAutoWindowMenu = enable ; }
static bool GetAutoWindowMenu() { return s_macAutoWindowMenu ; }
-}
+};
+
+
+class wxMouseEvent {
+ public:
+ wxMouseWheelAxis GetWheelAxis() const;
+};