/src/libreoffice/sfx2/source/dialog/quickfind.cxx
Line | Count | Source |
1 | | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
2 | | /* |
3 | | * This file is part of the LibreOffice project. |
4 | | * |
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/. |
8 | | * |
9 | | */ |
10 | | |
11 | | #include <sal/config.h> |
12 | | |
13 | | #include <sfx2/bindings.hxx> |
14 | | #include <sfx2/quickfind.hxx> |
15 | | #include <sfx2/strings.hrc> |
16 | | #include <sfx2/sfxresid.hxx> |
17 | | #include <helpids.h> |
18 | | |
19 | | SfxQuickFindWrapper::SfxQuickFindWrapper(vcl::Window* pParentWnd, sal_uInt16 nId) |
20 | 0 | : SfxChildWindow(pParentWnd, nId) |
21 | 0 | { |
22 | 0 | } |
23 | | |
24 | 0 | void SfxQuickFindWrapper::Initialize() { SetHideNotDelete(true); } |
25 | | |
26 | | SfxQuickFind::SfxQuickFind(SfxBindings* pBind, SfxChildWindow* pChildWin, vcl::Window* pParent, |
27 | | SfxChildWinInfo* pInfo) |
28 | 0 | : SfxDockingWindow(pBind, pChildWin, pParent, u"QuickFind"_ustr, u"sfx/ui/quickfind.ui"_ustr) |
29 | 0 | { |
30 | 0 | SetText(SfxResId(STR_SID_QUICKFIND)); |
31 | 0 | SetHelpId(HID_QUICKFIND_WINDOW); |
32 | 0 | SetOutputSizePixel(Size(270, 240)); |
33 | 0 | Initialize(pInfo); |
34 | 0 | } Unexecuted instantiation: SfxQuickFind::SfxQuickFind(SfxBindings*, SfxChildWindow*, vcl::Window*, SfxChildWinInfo*) Unexecuted instantiation: SfxQuickFind::SfxQuickFind(SfxBindings*, SfxChildWindow*, vcl::Window*, SfxChildWinInfo*) |
35 | | |
36 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |