aboutsummaryrefslogtreecommitdiffstats
path: root/lib/wx/api_gen/wx_extra
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2015-09-16 11:49:14 +0200
committerDan Gudmundsson <[email protected]>2015-09-16 11:49:14 +0200
commitacc47d90e34e4552ffe99766da7ac95423db1e30 (patch)
treeba4b9838ac573456db2fe1b523b5bfa372888275 /lib/wx/api_gen/wx_extra
parente23ea97d7dce3c12f54f06cb90354a0b3a55d073 (diff)
parente7d0b4e0f19280daa03292214163880cd7337cb2 (diff)
downloadotp-acc47d90e34e4552ffe99766da7ac95423db1e30.tar.gz
otp-acc47d90e34e4552ffe99766da7ac95423db1e30.tar.bz2
otp-acc47d90e34e4552ffe99766da7ac95423db1e30.zip
Merge branch 'dgud/wx/add-missing-aui-func/OTP-12961' into maint
* dgud/wx/add-missing-aui-func/OTP-12961: wx: Fix wxAuiManager:getAllPanes/1 wx: Add missing aui functionality
Diffstat (limited to 'lib/wx/api_gen/wx_extra')
-rw-r--r--lib/wx/api_gen/wx_extra/added_func.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/wx/api_gen/wx_extra/added_func.h b/lib/wx/api_gen/wx_extra/added_func.h
new file mode 100644
index 0000000000..2323529368
--- /dev/null
+++ b/lib/wx/api_gen/wx_extra/added_func.h
@@ -0,0 +1,28 @@
+// Added 3.0 functionality
+
+class WXDLLIMPEXP_AUI wxAuiTabArt
+{
+public:
+ virtual void SetColour(const wxColour& colour) = 0;
+ virtual void SetActiveColour(const wxColour& colour) = 0;
+};
+
+// Api to get data out of paneinfo
+class WXDLLIMPEXP_AUI wxAuiPaneInfo
+{
+ public:
+ wxString GetName();
+ wxString GetCaption();
+ wxIcon GetIcon();
+
+ wxWindow* GetWindow();
+ wxFrame* GetFrame();
+
+ int GetDirection();
+ int GetLayer();
+ int GetRow();
+ int GetPosition();
+
+ wxPoint GetFloatingPosition();
+ wxSize GetFloatingSize();
+};