masterfix DEV300: #i10000# build fix
[LibreOffice.git] / cui / source / options / cuisrchdlg.cxx
blob93b9247366c105b48b729ac995fb85e9d3cd878f
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
28 // MARKER(update_precomp.py): autogen include statement, do not remove
29 #include "precompiled_cui.hxx"
31 // include ---------------------------------------------------------------
32 #include <vcl/wrkwin.hxx>
33 #include <vcl/morebtn.hxx>
34 #include <vcl/msgbox.hxx>
35 #include <svl/slstitm.hxx>
36 #include <svl/itemiter.hxx>
37 #include <svl/style.hxx>
38 #include <unotools/searchopt.hxx>
39 #include <sfx2/dispatch.hxx>
40 #include <sfx2/objsh.hxx>
41 #include <sfx2/module.hxx>
42 #include <sfx2/viewsh.hxx>
43 #include <sfx2/basedlgs.hxx>
44 #include <svl/cjkoptions.hxx>
45 #include <com/sun/star/i18n/TransliterationModules.hpp>
47 #define _CUI_SRCHDLG_CXX
48 #include "cuisrchdlg.hxx"
50 #include <cuires.hrc>
52 #define ITEMID_SETITEM 0
54 #include <svl/srchitem.hxx>
55 #include <svx/pageitem.hxx>
56 #include <dialmgr.hxx>
57 #include <svx/dlgutil.hxx>
58 #include <optjsearch.hxx>
59 #include <editeng/brshitem.hxx>
60 #include "backgrnd.hxx"
63 // class SvxJSearchOptionsDialog -----------------------------------------
65 SvxJSearchOptionsDialog::SvxJSearchOptionsDialog(
66 Window *pParent,
67 const SfxItemSet& rOptionsSet, sal_Int32 nInitialFlags ) :
68 SfxSingleTabDialog ( pParent, rOptionsSet, RID_SVXPAGE_JSEARCH_OPTIONS ),
69 nInitialTlFlags( nInitialFlags )
71 pPage = (SvxJSearchOptionsPage *)
72 SvxJSearchOptionsPage::Create( this, rOptionsSet );
73 SetTabPage( pPage ); //! implicitly calls pPage->Reset(...)!
74 pPage->EnableSaveOptions( sal_False );
78 SvxJSearchOptionsDialog::~SvxJSearchOptionsDialog()
80 // pPage will be implicitly destroyed by the
81 // SfxSingleTabDialog destructor
85 void SvxJSearchOptionsDialog::Activate()
87 pPage->SetTransliterationFlags( nInitialTlFlags );
91 sal_Int32 SvxJSearchOptionsDialog::GetTransliterationFlags() const
93 return pPage->GetTransliterationFlags();