diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-03-17 21:01:06 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-03-19 12:10:13 +0100 |
commit | 7bf4edd62fd0e34a0bd79cc918155ac5043b091b (patch) | |
tree | 8e82d0dc6609329a5291844d588b0377c252981e /include/vcl | |
parent | 62c634d6e8d55f71fa9ebd8c4b78774f8946f39d (diff) |
weld SwFieldDBPage
Change-Id: Ic4919fa3caa2106598ed8da3cec5deffa506eee1
Reviewed-on: https://gerrit.libreoffice.org/69401
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/weld.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx index a88cfe5ea04f..910f977db66c 100644 --- a/include/vcl/weld.hxx +++ b/include/vcl/weld.hxx @@ -138,6 +138,9 @@ public: virtual OUString get_accessible_description() const = 0; + virtual void set_accessible_relation_labeled_by(weld::Widget* pLabel) = 0; + virtual void set_accessible_relation_label_for(weld::Widget* pLabeled) = 0; + virtual void set_tooltip_text(const OUString& rTip) = 0; virtual OUString get_tooltip_text() const = 0; @@ -954,6 +957,7 @@ public: } void save_value() { m_sSavedValue = get_text(); } + OUString const& get_saved_value() const { return m_sSavedValue; } bool get_value_changed_from_saved() const { return m_sSavedValue != get_text(); } }; |