diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-11-02 09:50:31 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-11-05 13:21:29 +0100 |
commit | e3c6c89588fc6b85663444d701f782e73bb572c1 (patch) | |
tree | 47ecffe8be56efa3e150841d7de791308ef8ee03 /include/vcl | |
parent | 13b4c191cb251e9218bb9c99140cff7c52fd04db (diff) |
weld SwIndexMarkModalDlg cluster
Change-Id: Iff45d9deb5409cf0dbb35723da6bad886379531f
Reviewed-on: https://gerrit.libreoffice.org/62775
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 7ec022e13c39..14b06007c3f1 100644 --- a/include/vcl/weld.hxx +++ b/include/vcl/weld.hxx @@ -355,6 +355,8 @@ public: virtual bool get_entry_selection_bounds(int& rStartPos, int& rEndPos) = 0; virtual void set_entry_completion(bool bEnable) = 0; + virtual bool get_popup_shown() const = 0; + void connect_entry_activate(const Link<ComboBox&, void>& rLink) { m_aEntryActivateHdl = rLink; } void save_value() { m_sSavedValue = get_active_text(); } @@ -783,6 +785,8 @@ public: m_xTreeView->connect_row_activated(rLink); } + virtual bool get_popup_shown() const override { return false; } + void set_height_request_by_rows(int nRows); }; |