diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-02-13 13:28:47 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-02-13 20:55:46 +0100 |
commit | 3b8c42a94b5448364d47daa103b3452f54990524 (patch) | |
tree | 36c281fdcd34355a2c080d4a4aa2f84cdc802fad /include | |
parent | 8eab16d46f0c70cf9f7afb307ab4a56c49919ac4 (diff) |
weld FindTextFieldControl
Change-Id: Ib5861855d37c72d2be2b11b77173a141db90444e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88614
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/weld.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx index 9d62ffe6391d..8621a7415615 100644 --- a/include/vcl/weld.hxx +++ b/include/vcl/weld.hxx @@ -675,6 +675,7 @@ public: virtual void select_entry_region(int nStartPos, int nEndPos) = 0; virtual bool get_entry_selection_bounds(int& rStartPos, int& rEndPos) = 0; virtual void set_entry_completion(bool bEnable, bool bCaseSensitive = false) = 0; + virtual void set_entry_placeholder_text(const OUString& rText) = 0; virtual bool get_popup_shown() const = 0; @@ -1336,6 +1337,7 @@ public: virtual void set_editable(bool bEditable) = 0; virtual bool get_editable() const = 0; virtual void set_message_type(EntryMessageType eType) = 0; + virtual void set_placeholder_text(const OUString& rText) = 0; // font size is in points, not pixels, e.g. see Window::[G]etPointFont virtual void set_font(const vcl::Font& rFont) = 0; |