tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / svx / source / inc / findtextfield.hxx
blob2c79a529b3f40cea555957434b8287276bad6667
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #pragma once
22 #include <vcl/InterimItemWindow.hxx>
23 #include <com/sun/star/frame/XFrame.hpp>
24 #include <com/sun/star/uno/XComponentContext.hpp>
26 namespace svt
28 class AcceleratorExecute;
31 class FindTextFieldControl final : public InterimItemWindow
33 public:
34 FindTextFieldControl(vcl::Window* pParent, css::uno::Reference<css::frame::XFrame> xFrame,
35 css::uno::Reference<css::uno::XComponentContext> xContext);
37 virtual void dispose() override;
39 virtual ~FindTextFieldControl() override;
41 void Remember_Impl(const OUString& rStr);
42 void SetTextToSelected_Impl();
44 void connect_changed(const Link<weld::ComboBox&, void>& rLink);
46 int get_count() const;
47 OUString get_text(int nIndex) const;
48 OUString get_active_text() const;
49 void append_text(const OUString& rText);
50 void set_entry_message_type(weld::EntryMessageType eType);
52 private:
53 ImplSVEvent* m_nAsyncGetFocusId;
54 std::unique_ptr<weld::ComboBox> m_xWidget;
55 css::uno::Reference<css::frame::XFrame> m_xFrame;
56 css::uno::Reference<css::uno::XComponentContext> m_xContext;
57 std::unique_ptr<svt::AcceleratorExecute> m_pAcc;
58 Link<weld::ComboBox&, void> m_aChangeHdl;
60 DECL_LINK(FocusInHdl, weld::Widget&, void);
61 DECL_LINK(KeyInputHdl, const KeyEvent&, bool);
62 DECL_LINK(ActivateHdl, weld::ComboBox&, bool);
63 DECL_LINK(OnAsyncGetFocus, void*, void);
65 void FocusIn();
66 void ActivateFind(bool bShift);
68 // tdf#154269 - respect FindReplaceRememberedSearches expert option
69 sal_uInt16 m_nRememberSize;
70 // tdf#154818 - remember last search string
71 static OUString m_sRememberedSearchString;
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */