summaryrefslogtreecommitdiff
path: root/include/vcl/weld.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-05-04 14:53:11 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-05-04 22:12:46 +0200
commit0920b04bca3d58d89b026bcf999ea43d0e855715 (patch)
treee819560b7822cda8cd76a0494a4ec6135f3585a9 /include/vcl/weld.hxx
parent2cab4acbe2aaaee6e5b9afeb68f3e555ecff2ec7 (diff)
weld SwOutlineTabDialog
Change-Id: I55c0e9a62dd9dd970a87ef295bb5fbb82c80d2d8 Reviewed-on: https://gerrit.libreoffice.org/53848 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/vcl/weld.hxx')
-rw-r--r--include/vcl/weld.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx
index 6c1078a04457..448a592fb15c 100644
--- a/include/vcl/weld.hxx
+++ b/include/vcl/weld.hxx
@@ -365,8 +365,10 @@ protected:
public:
void connect_selected(const Link<const OString&, void>& rLink) { m_aSelectHdl = rLink; }
-
- virtual void set_active(const OString& rIdent, bool bActive) = 0;
+ virtual void set_item_active(const OString& rIdent, bool bActive) = 0;
+ virtual void set_item_label(const OString& rIdent, const OUString& rLabel) = 0;
+ virtual void set_item_help_id(const OString& rIdent, const OString& rHelpId) = 0;
+ virtual OString get_item_help_id(const OString& rIdent) const = 0;
};
class VCL_DLLPUBLIC ToggleButton : virtual public Button