Line data Source code
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 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include "itemholder1.hxx"
21 :
22 : #include <comphelper/processfactory.hxx>
23 : #include <com/sun/star/lang/XComponent.hpp>
24 : #include <com/sun/star/configuration/theDefaultProvider.hpp>
25 :
26 : #include <unotools/misccfg.hxx>
27 : #include <unotools/useroptions.hxx>
28 : #include <unotools/cmdoptions.hxx>
29 : #include <unotools/compatibility.hxx>
30 : #include <unotools/defaultoptions.hxx>
31 : #include <unotools/dynamicmenuoptions.hxx>
32 : #include <unotools/eventcfg.hxx>
33 : #include <unotools/extendedsecurityoptions.hxx>
34 : #include <unotools/fltrcfg.hxx>
35 : #include <unotools/fontoptions.hxx>
36 : #include <unotools/historyoptions.hxx>
37 : #include <unotools/lingucfg.hxx>
38 : #include <unotools/localisationoptions.hxx>
39 : #include <unotools/moduleoptions.hxx>
40 : #include <unotools/pathoptions.hxx>
41 : #include <unotools/printwarningoptions.hxx>
42 : #include <unotools/optionsdlg.hxx>
43 : #include <unotools/saveopt.hxx>
44 : #include <unotools/searchopt.hxx>
45 : #include <unotools/securityoptions.hxx>
46 : #include <unotools/viewoptions.hxx>
47 : #include <unotools/xmlaccelcfg.hxx>
48 : #include <unotools/options.hxx>
49 : #include <unotools/syslocaleoptions.hxx>
50 :
51 0 : ItemHolder1::ItemHolder1()
52 0 : : ItemHolderMutexBase()
53 : {
54 : try
55 : {
56 0 : css::uno::Reference< css::uno::XComponentContext > xContext = ::comphelper::getProcessComponentContext();
57 : css::uno::Reference< css::lang::XComponent > xCfg(
58 : css::configuration::theDefaultProvider::get( xContext ),
59 0 : css::uno::UNO_QUERY_THROW );
60 0 : xCfg->addEventListener(static_cast< css::lang::XEventListener* >(this));
61 : }
62 : #ifdef DBG_UTIL
63 : catch(const css::uno::Exception& rEx)
64 : {
65 : static bool bMessage = true;
66 : if(bMessage)
67 : {
68 : bMessage = false;
69 : OString sMsg("CreateInstance with arguments exception: ");
70 : sMsg += OString(rEx.Message.getStr(),
71 : rEx.Message.getLength(),
72 : RTL_TEXTENCODING_ASCII_US);
73 : OSL_FAIL(sMsg.getStr());
74 : }
75 : }
76 : #else
77 0 : catch(css::uno::Exception&){}
78 : #endif
79 0 : }
80 :
81 0 : ItemHolder1::~ItemHolder1()
82 : {
83 0 : impl_releaseAllItems();
84 0 : }
85 :
86 0 : void ItemHolder1::holdConfigItem(EItem eItem)
87 : {
88 0 : static ItemHolder1* pHolder = new ItemHolder1();
89 0 : pHolder->impl_addItem(eItem);
90 0 : }
91 :
92 0 : void SAL_CALL ItemHolder1::disposing(const css::lang::EventObject&)
93 : throw(css::uno::RuntimeException, std::exception)
94 : {
95 0 : css::uno::Reference< css::uno::XInterface > xSelfHold(static_cast< css::lang::XEventListener* >(this), css::uno::UNO_QUERY);
96 0 : impl_releaseAllItems();
97 0 : }
98 :
99 0 : void ItemHolder1::impl_addItem(EItem eItem)
100 : {
101 0 : ::osl::ResettableMutexGuard aLock(m_aLock);
102 :
103 0 : TItems::const_iterator pIt;
104 0 : for ( pIt = m_lItems.begin();
105 0 : pIt != m_lItems.end();
106 : ++pIt )
107 : {
108 0 : const TItemInfo& rInfo = *pIt;
109 0 : if (rInfo.eItem == eItem)
110 0 : return;
111 : }
112 :
113 0 : TItemInfo aNewItem;
114 0 : aNewItem.eItem = eItem;
115 0 : impl_newItem(aNewItem);
116 0 : if (aNewItem.pItem)
117 0 : m_lItems.push_back(aNewItem);
118 : }
119 :
120 0 : void ItemHolder1::impl_releaseAllItems()
121 : {
122 0 : ::osl::ResettableMutexGuard aLock(m_aLock);
123 :
124 0 : TItems::iterator pIt;
125 0 : for ( pIt = m_lItems.begin();
126 0 : pIt != m_lItems.end();
127 : ++pIt )
128 : {
129 0 : TItemInfo& rInfo = *pIt;
130 0 : impl_deleteItem(rInfo);
131 : }
132 0 : m_lItems.clear();
133 0 : }
134 :
135 0 : void ItemHolder1::impl_newItem(TItemInfo& rItem)
136 : {
137 0 : switch(rItem.eItem)
138 : {
139 : case E_CMDOPTIONS :
140 0 : rItem.pItem = new SvtCommandOptions();
141 0 : break;
142 :
143 : case E_COMPATIBILITY :
144 0 : rItem.pItem = new SvtCompatibilityOptions();
145 0 : break;
146 :
147 : case E_DEFAULTOPTIONS :
148 0 : rItem.pItem = new SvtDefaultOptions();
149 0 : break;
150 :
151 : case E_DYNAMICMENUOPTIONS :
152 0 : rItem.pItem = new SvtDynamicMenuOptions();
153 0 : break;
154 :
155 : case E_EVENTCFG :
156 : //rItem.pItem = new GlobalEventConfig();
157 0 : break;
158 :
159 : case E_EXTENDEDSECURITYOPTIONS :
160 0 : rItem.pItem = new SvtExtendedSecurityOptions();
161 0 : break;
162 :
163 : case E_FLTRCFG :
164 : // no ref count rItem.pItem = new SvtFilterOptions();
165 0 : break;
166 :
167 : case E_FONTOPTIONS :
168 0 : rItem.pItem = new SvtFontOptions();
169 0 : break;
170 :
171 : case E_HISTORYOPTIONS :
172 0 : rItem.pItem = new SvtHistoryOptions();
173 0 : break;
174 :
175 : case E_LINGUCFG :
176 0 : rItem.pItem = new SvtLinguConfig();
177 0 : break;
178 :
179 : case E_LOCALISATIONOPTIONS :
180 0 : rItem.pItem = new SvtLocalisationOptions();
181 0 : break;
182 :
183 : case E_MODULEOPTIONS :
184 0 : rItem.pItem = new SvtModuleOptions();
185 0 : break;
186 :
187 : case E_OPTIONSDLGOPTIONS :
188 0 : rItem.pItem = new SvtOptionsDialogOptions();
189 0 : break;
190 :
191 : case E_PATHOPTIONS :
192 0 : rItem.pItem = new SvtPathOptions();
193 0 : break;
194 :
195 : case E_PRINTWARNINGOPTIONS :
196 0 : rItem.pItem = new SvtPrintWarningOptions();
197 0 : break;
198 :
199 : case E_MISCCFG :
200 0 : rItem.pItem = new ::utl::MiscCfg();
201 0 : break;
202 :
203 : case E_SAVEOPTIONS :
204 0 : rItem.pItem = new SvtSaveOptions();
205 0 : break;
206 :
207 : case E_SEARCHOPT :
208 : // no ref count rItem.pItem = new SvtSearchOptions();
209 0 : break;
210 :
211 : case E_SECURITYOPTIONS :
212 0 : rItem.pItem = new SvtSecurityOptions();
213 0 : break;
214 :
215 : case E_VIEWOPTIONS_DIALOG :
216 0 : rItem.pItem = new SvtViewOptions(E_DIALOG, OUString());
217 0 : break;
218 :
219 : case E_VIEWOPTIONS_TABDIALOG :
220 0 : rItem.pItem = new SvtViewOptions(E_TABDIALOG, OUString());
221 0 : break;
222 :
223 : case E_VIEWOPTIONS_TABPAGE :
224 0 : rItem.pItem = new SvtViewOptions(E_TABPAGE, OUString());
225 0 : break;
226 :
227 : case E_VIEWOPTIONS_WINDOW :
228 0 : rItem.pItem = new SvtViewOptions(E_WINDOW, OUString());
229 0 : break;
230 :
231 : case E_USEROPTIONS :
232 0 : rItem.pItem = new SvtUserOptions();
233 0 : break;
234 :
235 : case E_SYSLOCALEOPTIONS :
236 0 : rItem.pItem = new SvtSysLocaleOptions();
237 0 : break;
238 :
239 : default:
240 : OSL_FAIL( "unknown item type" );
241 0 : break;
242 : }
243 0 : }
244 :
245 0 : void ItemHolder1::impl_deleteItem(TItemInfo& rItem)
246 : {
247 0 : if (rItem.pItem)
248 : {
249 0 : delete rItem.pItem;
250 0 : rItem.pItem = 0;
251 : }
252 0 : }
253 :
254 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|