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 :
21 : #include "itemholder2.hxx"
22 :
23 : #include <comphelper/processfactory.hxx>
24 : #include <com/sun/star/lang/XComponent.hpp>
25 : #include <com/sun/star/configuration/theDefaultProvider.hpp>
26 :
27 : #include <svtools/accessibilityoptions.hxx>
28 : #include <svtools/apearcfg.hxx>
29 : #include <svtools/menuoptions.hxx>
30 : #include <svtools/colorcfg.hxx>
31 : #include <svtools/fontsubstconfig.hxx>
32 : #include <svtools/helpopt.hxx>
33 : #include <svtools/printoptions.hxx>
34 : #include <unotools/options.hxx>
35 : #include <svtools/miscopt.hxx>
36 :
37 : namespace svtools {
38 :
39 303 : ItemHolder2::ItemHolder2()
40 303 : : ItemHolderMutexBase()
41 : {
42 : try
43 : {
44 303 : css::uno::Reference< css::uno::XComponentContext > xContext = ::comphelper::getProcessComponentContext();
45 : css::uno::Reference< css::lang::XComponent > xCfg(
46 : css::configuration::theDefaultProvider::get( xContext ),
47 606 : css::uno::UNO_QUERY_THROW );
48 606 : xCfg->addEventListener(static_cast< css::lang::XEventListener* >(this));
49 : }
50 0 : catch(const css::uno::RuntimeException&)
51 : {
52 0 : throw;
53 : }
54 : #ifdef DBG_UTIL
55 : catch(const css::uno::Exception& rEx)
56 : {
57 : static bool bMessage = true;
58 : if(bMessage)
59 : {
60 : bMessage = false;
61 : OString sMsg("CreateInstance with arguments exception: ");
62 : sMsg += OString(rEx.Message.getStr(),
63 : rEx.Message.getLength(),
64 : RTL_TEXTENCODING_ASCII_US);
65 : OSL_FAIL(sMsg.getStr());
66 : }
67 : }
68 : #else
69 0 : catch(css::uno::Exception&){}
70 : #endif
71 303 : }
72 :
73 :
74 897 : ItemHolder2::~ItemHolder2()
75 : {
76 299 : impl_releaseAllItems();
77 598 : }
78 :
79 :
80 1185 : void ItemHolder2::holdConfigItem(EItem eItem)
81 : {
82 1185 : static ItemHolder2* pHolder = new ItemHolder2();
83 1185 : pHolder->impl_addItem(eItem);
84 1185 : }
85 :
86 :
87 299 : void SAL_CALL ItemHolder2::disposing(const css::lang::EventObject&)
88 : throw(css::uno::RuntimeException, std::exception)
89 : {
90 299 : impl_releaseAllItems();
91 299 : }
92 :
93 :
94 1185 : void ItemHolder2::impl_addItem(EItem eItem)
95 : {
96 1185 : ::osl::ResettableMutexGuard aLock(m_aLock);
97 :
98 1185 : TItems::const_iterator pIt;
99 9099 : for ( pIt = m_lItems.begin();
100 6066 : pIt != m_lItems.end() ;
101 : ++pIt )
102 : {
103 1848 : const TItemInfo& rInfo = *pIt;
104 1848 : if (rInfo.eItem == eItem)
105 1185 : return;
106 : }
107 :
108 1185 : TItemInfo aNewItem;
109 1185 : aNewItem.eItem = eItem;
110 1185 : impl_newItem(aNewItem);
111 1185 : if (aNewItem.pItem)
112 1185 : m_lItems.push_back(aNewItem);
113 : }
114 :
115 :
116 598 : void ItemHolder2::impl_releaseAllItems()
117 : {
118 598 : ::osl::ResettableMutexGuard aLock(m_aLock);
119 :
120 598 : TItems::iterator pIt;
121 5307 : for ( pIt = m_lItems.begin();
122 3538 : pIt != m_lItems.end() ;
123 : ++pIt )
124 : {
125 1171 : TItemInfo& rInfo = *pIt;
126 1171 : impl_deleteItem(rInfo);
127 : }
128 598 : m_lItems.clear();
129 598 : }
130 :
131 :
132 1185 : void ItemHolder2::impl_newItem(TItemInfo& rItem)
133 : {
134 1185 : switch(rItem.eItem)
135 : {
136 : case E_ACCESSIBILITYOPTIONS :
137 266 : rItem.pItem = new SvtAccessibilityOptions();
138 266 : break;
139 :
140 : case E_APEARCFG :
141 : // no ref count rItem.pItem = new SvtTabAppearanceCfg();
142 0 : break;
143 :
144 : case E_COLORCFG :
145 184 : rItem.pItem = new ::svtools::ColorConfig();
146 184 : break;
147 :
148 : case E_FONTSUBSTCONFIG :
149 : // no ref count rItem.pItem = new SvtFontSubstConfig();
150 0 : break;
151 :
152 : case E_HELPOPTIONS :
153 303 : rItem.pItem = new SvtHelpOptions();
154 303 : break;
155 :
156 : case E_MENUOPTIONS :
157 160 : rItem.pItem = new SvtMenuOptions();
158 160 : break;
159 :
160 : case E_PRINTOPTIONS :
161 0 : rItem.pItem = new SvtPrinterOptions();
162 0 : break;
163 :
164 : case E_PRINTFILEOPTIONS :
165 0 : rItem.pItem = new SvtPrintFileOptions();
166 0 : break;
167 :
168 : case E_MISCOPTIONS :
169 272 : rItem.pItem = new SvtMiscOptions();
170 272 : break;
171 :
172 : default:
173 : OSL_ASSERT(false);
174 0 : break;
175 : }
176 1185 : }
177 :
178 :
179 1171 : void ItemHolder2::impl_deleteItem(TItemInfo& rItem)
180 : {
181 1171 : if (rItem.pItem)
182 : {
183 1171 : delete rItem.pItem;
184 1171 : rItem.pItem = 0;
185 : }
186 1171 : }
187 :
188 : } // namespace svtools
189 :
190 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|