Version 7.1.7.1, tag libreoffice-7.1.7.1
[LibreOffice.git] / svx / source / inc / findtextfield.hxx
blob982b70f69b59c6f8de9d6218a3ed5e381c05a00a
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>
24 namespace svt
26 class AcceleratorExecute;
29 class FindTextFieldControl final : public InterimItemWindow
31 public:
32 FindTextFieldControl(vcl::Window* pParent,
33 css::uno::Reference<css::frame::XFrame> const& xFrame,
34 const css::uno::Reference<css::uno::XComponentContext>& xContext);
36 virtual void dispose() override;
38 virtual ~FindTextFieldControl() override;
40 void Remember_Impl(const OUString& rStr);
41 void SetTextToSelected_Impl();
43 void connect_changed(const Link<weld::ComboBox&, void>& rLink);
45 int get_count() const;
46 OUString get_text(int nIndex) const;
47 OUString get_active_text() const;
48 void append_text(const OUString& rText);
49 void set_entry_message_type(weld::EntryMessageType eType);
51 private:
52 ImplSVEvent* m_nAsyncGetFocusId;
53 std::unique_ptr<weld::ComboBox> m_xWidget;
54 css::uno::Reference<css::frame::XFrame> m_xFrame;
55 css::uno::Reference<css::uno::XComponentContext> m_xContext;
56 std::unique_ptr<svt::AcceleratorExecute> m_pAcc;
57 Link<weld::ComboBox&, void> m_aChangeHdl;
59 DECL_LINK(FocusInHdl, weld::Widget&, void);
60 DECL_LINK(KeyInputHdl, const KeyEvent&, bool);
61 DECL_LINK(ActivateHdl, weld::ComboBox&, bool);
62 DECL_LINK(OnAsyncGetFocus, void*, void);
64 void FocusIn();
65 void ActivateFind(bool bShift);
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */