diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-03-31 06:10:50 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-18 17:01:54 +0200 |
commit | e407b0e6861175dca85d08e013a639c11d372589 (patch) | |
tree | 807a000f2b5b737126363f93b7870c98d96318d7 /include | |
parent | 2a9253d3f5b0eba7b9129f7e64aec1e8867719f6 (diff) |
uitest: support selecting different tab pages in tab dialog
Change-Id: I541f83a87f5f3d459b2baf4587b76cb2fce5d5fc
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/tabdlg.hxx | 1 | ||||
-rw-r--r-- | include/vcl/tabctrl.hxx | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/include/sfx2/tabdlg.hxx b/include/sfx2/tabdlg.hxx index 99e223ab61b9..2f624453b87a 100644 --- a/include/sfx2/tabdlg.hxx +++ b/include/sfx2/tabdlg.hxx @@ -61,6 +61,7 @@ class SFX2_DLLPUBLIC SfxTabDialog : public TabDialog private: friend class SfxTabPage; friend class SfxTabDialogController; +friend class SfxTabDialogUIObject; VclPtr<VclBox> m_pBox; VclPtr<TabControl> m_pTabCtrl; diff --git a/include/vcl/tabctrl.hxx b/include/vcl/tabctrl.hxx index 4b34ae0f40e7..2d60b40f2608 100644 --- a/include/vcl/tabctrl.hxx +++ b/include/vcl/tabctrl.hxx @@ -189,6 +189,8 @@ public: mbLayoutDirty = true; } + std::vector<sal_uInt16> GetPageIDs() const; + virtual void queue_resize(StateChangedType eReason = StateChangedType::Layout) override; }; |