xref: /aoo41x/main/cui/source/options/cuisrchdlg.cxx (revision cdf0e10c)
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
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.
14  *
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).
20  *
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.
25  *
26  ************************************************************************/
27 
28 // MARKER(update_precomp.py): autogen include statement, do not remove
29 #include "precompiled_cui.hxx"
30 
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>
46 
47 #define _CUI_SRCHDLG_CXX
48 #include "cuisrchdlg.hxx"
49 
50 #include <cuires.hrc>
51 
52 #define	ITEMID_SETITEM		0
53 
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"
61 
62 
63 // class SvxJSearchOptionsDialog -----------------------------------------
64 
65 SvxJSearchOptionsDialog::SvxJSearchOptionsDialog(
66 			Window *pParent,
67             const SfxItemSet& rOptionsSet, sal_Int32 nInitialFlags ) :
68 	SfxSingleTabDialog	( pParent, rOptionsSet, RID_SVXPAGE_JSEARCH_OPTIONS ),
69 	nInitialTlFlags( nInitialFlags )
70 {
71 	pPage = (SvxJSearchOptionsPage *)
72 					SvxJSearchOptionsPage::Create( this, rOptionsSet );
73 	SetTabPage( pPage );	//! implicitly calls pPage->Reset(...)!
74 	pPage->EnableSaveOptions( sal_False );
75 }
76 
77 
78 SvxJSearchOptionsDialog::~SvxJSearchOptionsDialog()
79 {
80 	// pPage will be implicitly destroyed by the
81 	// SfxSingleTabDialog destructor
82 }
83 
84 
85 void SvxJSearchOptionsDialog::Activate()
86 {
87 	pPage->SetTransliterationFlags( nInitialTlFlags );
88 }
89 
90 
91 sal_Int32 SvxJSearchOptionsDialog::GetTransliterationFlags() const
92 {
93 	return pPage->GetTransliterationFlags();
94 }
95