diff options
author | Dan Gudmundsson <[email protected]> | 2015-09-16 11:49:14 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2015-09-16 11:49:14 +0200 |
commit | acc47d90e34e4552ffe99766da7ac95423db1e30 (patch) | |
tree | ba4b9838ac573456db2fe1b523b5bfa372888275 /lib/wx/api_gen/wx_extra/added_func.h | |
parent | e23ea97d7dce3c12f54f06cb90354a0b3a55d073 (diff) | |
parent | e7d0b4e0f19280daa03292214163880cd7337cb2 (diff) | |
download | otp-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/added_func.h')
-rw-r--r-- | lib/wx/api_gen/wx_extra/added_func.h | 28 |
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(); +}; |