diff options
Diffstat (limited to 'include')
-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(); } }; |