diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-04-19 10:44:22 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-04-19 17:57:22 +0200 |
commit | a1533910d896f18980a37c7a9c15154366dacae3 (patch) | |
tree | 97f53cdba75a7ecb20d8ed37186e58d889311dbd /include/svtools | |
parent | 4bacf58f4af44ac8c4632b43289ccfcc07e5820c (diff) |
weld XMLFilterTabDialog
Change-Id: I5ef92805690f55913e6366fce1fd4dc5180bb5a6
Reviewed-on: https://gerrit.libreoffice.org/53146
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/svtools')
-rw-r--r-- | include/svtools/inettbc.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/svtools/inettbc.hxx b/include/svtools/inettbc.hxx index c3fa0e4bf530..b78ad021791a 100644 --- a/include/svtools/inettbc.hxx +++ b/include/svtools/inettbc.hxx @@ -97,6 +97,7 @@ class SVT_DLLPUBLIC URLBox friend class SvtURLBox_Impl; Idle aChangedIdle; + OUString aBaseURL; rtl::Reference< MatchContext_Impl > pCtx; std::unique_ptr<SvtURLBox_Impl> pImpl; @@ -117,10 +118,14 @@ public: void Clear() { m_xWidget->clear(); } void connect_entry_activate(const Link<weld::ComboBoxText&, void>& rLink) { m_xWidget->connect_entry_activate(rLink); } void append_text(const OUString& rStr) { m_xWidget->append_text(rStr); } + OUString get_active_text() const { return m_xWidget->get_active_text(); } void EnableAutocomplete() { m_xWidget->set_entry_completion(true); } + void SetBaseURL( const OUString& rURL ); OUString GetURL(); + weld::Widget* getWidget() { return m_xWidget.get(); } + static OUString ParseSmart( const OUString& aText, const OUString& aBaseURL ); }; |