1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <vcl/InterimItemWindow.hxx>
23 #include <com/sun/star/frame/XFrame.hpp>
24 #include <com/sun/star/uno/XComponentContext.hpp>
28 class AcceleratorExecute
;
31 class FindTextFieldControl final
: public InterimItemWindow
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
);
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);
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: */