summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-07-16 20:20:39 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-07-16 20:31:51 +0100
commit98d26079c57c873827beb2d00883547aa558e9a3 (patch)
tree01c5324db5017a274f701ce158b1be95a25668d9 /include
parentlibatomic-ops is only needed for internal firebird, so only check it then... (diff)
downloadcore-98d26079c57c873827beb2d00883547aa558e9a3.tar.gz
core-98d26079c57c873827beb2d00883547aa558e9a3.zip
add and use VclExpander::[g|s]et_expanded
Change-Id: I3b4e0947e85a7f6d6533dd17f39542584087c68a
Diffstat (limited to 'include')
-rw-r--r--include/vcl/layout.hxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/vcl/layout.hxx b/include/vcl/layout.hxx
index f72b93a1cd37..041f01b3029d 100644
--- a/include/vcl/layout.hxx
+++ b/include/vcl/layout.hxx
@@ -516,6 +516,14 @@ public:
virtual Window *get_child();
virtual const Window *get_child() const;
virtual bool set_property(const OString &rKey, const OString &rValue);
+ bool get_expanded() const
+ {
+ return m_aDisclosureButton.IsChecked();
+ }
+ void set_expanded(bool bExpanded)
+ {
+ m_aDisclosureButton.Check(bExpanded);
+ }
virtual void StateChanged(StateChangedType nType);
protected:
virtual Size calculateRequisition() const;