diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-06-03 10:01:37 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-06-03 12:27:48 +0200 |
commit | 6697257931f8e9ed76b2c6a32b310456c94f2848 (patch) | |
tree | f0999d4f3a3509706ddaec20e735247dea8c8768 /include/vcl/tabctrl.hxx | |
parent | 73dde4733fdf66408d9ed6b048dfab4f77f088d8 (diff) |
implement "show-tabs" for TabControl
defaults to the current status of "true"
Change-Id: Id4fa50d359e29fa3a7db845edbcb86a3b1caa790
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135345
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/vcl/tabctrl.hxx')
-rw-r--r-- | include/vcl/tabctrl.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/vcl/tabctrl.hxx b/include/vcl/tabctrl.hxx index 1597845df562..40fdd54f285c 100644 --- a/include/vcl/tabctrl.hxx +++ b/include/vcl/tabctrl.hxx @@ -57,6 +57,7 @@ protected: sal_uInt16 mnActPageId; sal_uInt16 mnCurPageId; bool mbFormat; + bool mbShowTabs; bool mbRestoreHelpId; bool mbSmallInvalidate; bool mbLayoutDirty; @@ -188,6 +189,8 @@ public: virtual void queue_resize(StateChangedType eReason = StateChangedType::Layout) override; + virtual bool set_property(const OString &rKey, const OUString &rValue) override; + virtual void DumpAsPropertyTree(tools::JsonWriter&) override; }; |