Bump version to 6.4-15
[LibreOffice.git] / svx / source / inc / findtextfield.hxx
blob1ac5519a2dcd08a048132a633133b0dba28a4270
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 virtual void GetFocus() override;
42 void Remember_Impl(const OUString& rStr);
43 void SetTextToSelected_Impl();
45 void connect_changed(const Link<weld::ComboBox&, void>& rLink);
47 int get_count() const;
48 OUString get_text(int nIndex) const;
49 OUString get_active_text() const;
50 void append_text(const OUString& rText);
51 void set_entry_message_type(weld::EntryMessageType eType);
53 private:
54 ImplSVEvent* m_nAsyncGetFocusId;
55 std::unique_ptr<weld::ComboBox> m_xWidget;
56 css::uno::Reference<css::frame::XFrame> m_xFrame;
57 css::uno::Reference<css::uno::XComponentContext> m_xContext;
58 std::unique_ptr<svt::AcceleratorExecute> m_pAcc;
59 Link<weld::ComboBox&, void> m_aChangeHdl;
61 DECL_LINK(FocusInHdl, weld::Widget&, void);
62 DECL_LINK(KeyInputHdl, const KeyEvent&, bool);
63 DECL_LINK(ActivateHdl, weld::ComboBox&, bool);
64 DECL_LINK(OnAsyncGetFocus, void*, void);
66 void ActivateFind(bool bShift);
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */