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 "uielement/buttontoolbarcontroller.hxx"
21 :
22 : #include <com/sun/star/util/URLTransformer.hpp>
23 : #include <com/sun/star/util/XURLTransformer.hpp>
24 : #include <com/sun/star/frame/XDispatchProvider.hpp>
25 : #include <com/sun/star/beans/PropertyValue.hpp>
26 : #include <com/sun/star/lang/DisposedException.hpp>
27 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
28 : #include <com/sun/star/util/XMacroExpander.hpp>
29 : #include <com/sun/star/uno/XComponentContext.hpp>
30 : #include <com/sun/star/beans/XPropertySet.hpp>
31 :
32 : #include <rtl/uri.hxx>
33 : #include <osl/mutex.hxx>
34 : #include <cppuhelper/queryinterface.hxx>
35 : #include <comphelper/processfactory.hxx>
36 : #include <unotools/ucbstreamhelper.hxx>
37 : #include <vcl/svapp.hxx>
38 : #include <vcl/mnemonic.hxx>
39 : #include <vcl/window.hxx>
40 : #include <vcl/graph.hxx>
41 : #include <vcl/bitmap.hxx>
42 : #include <vcl/graphicfilter.hxx>
43 : #include <vcl/toolbox.hxx>
44 : #include <svtools/miscopt.hxx>
45 :
46 : using namespace ::com::sun::star;
47 : using namespace ::com::sun::star::awt;
48 : using namespace ::com::sun::star::uno;
49 : using namespace ::com::sun::star::beans;
50 : using namespace ::com::sun::star::lang;
51 : using namespace ::com::sun::star::frame;
52 : using namespace ::com::sun::star::util;
53 :
54 : namespace framework
55 : {
56 :
57 0 : ButtonToolbarController::ButtonToolbarController(
58 : const uno::Reference< uno::XComponentContext >& rxContext,
59 : ToolBox* pToolBar,
60 : const OUString& aCommand ) :
61 : cppu::OWeakObject(),
62 : m_bInitialized( false ),
63 : m_bDisposed( false ),
64 : m_aCommandURL( aCommand ),
65 : m_xContext( rxContext ),
66 0 : m_pToolbar( pToolBar )
67 : {
68 0 : }
69 :
70 0 : ButtonToolbarController::~ButtonToolbarController()
71 : {
72 0 : }
73 :
74 : // XInterface
75 0 : uno::Any SAL_CALL ButtonToolbarController::queryInterface( const uno::Type& rType )
76 : throw (::com::sun::star::uno::RuntimeException, std::exception)
77 : {
78 : Any a = ::cppu::queryInterface(
79 : rType ,
80 : static_cast< frame::XStatusListener* >( this ),
81 : static_cast< frame::XToolbarController* >( this ),
82 : static_cast< lang::XInitialization* >( this ),
83 : static_cast< lang::XComponent* >( this ),
84 0 : static_cast< util::XUpdatable* >( this ));
85 :
86 0 : if ( a.hasValue() )
87 0 : return a;
88 :
89 0 : return cppu::OWeakObject::queryInterface( rType );
90 : }
91 :
92 0 : void SAL_CALL ButtonToolbarController::acquire() throw ()
93 : {
94 0 : cppu::OWeakObject::acquire();
95 0 : }
96 :
97 0 : void SAL_CALL ButtonToolbarController::release() throw ()
98 : {
99 0 : cppu::OWeakObject::release();
100 0 : }
101 :
102 : // XInitialization
103 0 : void SAL_CALL ButtonToolbarController::initialize(
104 : const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments )
105 : throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException, std::exception)
106 : {
107 0 : bool bInitialized( true );
108 :
109 : {
110 0 : SolarMutexGuard aSolarMutexGuard;
111 :
112 0 : if ( m_bDisposed )
113 0 : throw DisposedException();
114 :
115 0 : bInitialized = m_bInitialized;
116 : }
117 :
118 0 : if ( !bInitialized )
119 : {
120 0 : SolarMutexGuard aSolarMutexGuard;
121 0 : m_bInitialized = true;
122 :
123 0 : PropertyValue aPropValue;
124 0 : for ( int i = 0; i < aArguments.getLength(); i++ )
125 : {
126 0 : if ( aArguments[i] >>= aPropValue )
127 : {
128 0 : if ( aPropValue.Name == "Frame" )
129 0 : m_xFrame.set(aPropValue.Value,UNO_QUERY);
130 0 : else if ( aPropValue.Name == "CommandURL" )
131 0 : aPropValue.Value >>= m_aCommandURL;
132 0 : else if ( aPropValue.Name == "ServiceManager" )
133 : {
134 0 : Reference<XMultiServiceFactory> xServiceManager(aPropValue.Value,UNO_QUERY);
135 0 : m_xContext = comphelper::getComponentContext(xServiceManager);
136 : }
137 : }
138 0 : }
139 : }
140 0 : }
141 :
142 : // XComponent
143 0 : void SAL_CALL ButtonToolbarController::dispose() throw (::com::sun::star::uno::RuntimeException, std::exception)
144 : {
145 0 : Reference< XComponent > xThis( static_cast< OWeakObject* >(this), UNO_QUERY );
146 :
147 : {
148 0 : SolarMutexGuard aSolarMutexGuard;
149 0 : if ( m_bDisposed )
150 0 : throw DisposedException();
151 :
152 0 : m_xContext.clear();
153 0 : m_xURLTransformer.clear();
154 0 : m_xFrame.clear();
155 0 : m_pToolbar.clear();
156 0 : m_bDisposed = true;
157 0 : }
158 0 : }
159 :
160 0 : void SAL_CALL ButtonToolbarController::addEventListener(
161 : const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& )
162 : throw (::com::sun::star::uno::RuntimeException, std::exception)
163 : {
164 : // do nothing
165 0 : }
166 :
167 0 : void SAL_CALL ButtonToolbarController::removeEventListener(
168 : const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& )
169 : throw (::com::sun::star::uno::RuntimeException, std::exception)
170 : {
171 : // do nothing
172 0 : }
173 :
174 : // XUpdatable
175 0 : void SAL_CALL ButtonToolbarController::update()
176 : throw (::com::sun::star::uno::RuntimeException, std::exception)
177 : {
178 0 : SolarMutexGuard aSolarMutexGuard;
179 0 : if ( m_bDisposed )
180 0 : throw DisposedException();
181 0 : }
182 :
183 : // XEventListener
184 0 : void SAL_CALL ButtonToolbarController::disposing(
185 : const com::sun::star::lang::EventObject& Source )
186 : throw ( ::com::sun::star::uno::RuntimeException, std::exception )
187 : {
188 0 : uno::Reference< uno::XInterface > xSource( Source.Source );
189 :
190 0 : SolarMutexGuard aSolarMutexGuard;
191 :
192 0 : if ( m_bDisposed )
193 0 : return;
194 :
195 0 : uno::Reference< uno::XInterface > xIfac( m_xFrame, uno::UNO_QUERY );
196 0 : if ( xIfac == xSource )
197 0 : m_xFrame.clear();
198 : }
199 :
200 0 : void SAL_CALL ButtonToolbarController::statusChanged( const ::com::sun::star::frame::FeatureStateEvent& )
201 : throw ( ::com::sun::star::uno::RuntimeException, std::exception )
202 : {
203 : // do nothing
204 0 : if ( m_bDisposed )
205 0 : throw DisposedException();
206 0 : }
207 :
208 : // XToolbarController
209 0 : void SAL_CALL ButtonToolbarController::execute( sal_Int16 KeyModifier )
210 : throw (::com::sun::star::uno::RuntimeException, std::exception)
211 : {
212 0 : uno::Reference< frame::XDispatch > xDispatch;
213 0 : uno::Reference< frame::XFrame > xFrame;
214 0 : uno::Reference< util::XURLTransformer > xURLTransformer;
215 0 : OUString aCommandURL;
216 0 : ::com::sun::star::util::URL aTargetURL;
217 :
218 : {
219 0 : SolarMutexGuard aSolarMutexGuard;
220 :
221 0 : if ( m_bDisposed )
222 0 : throw DisposedException();
223 :
224 0 : if ( m_bInitialized &&
225 0 : m_xFrame.is() &&
226 0 : m_xContext.is() &&
227 0 : !m_aCommandURL.isEmpty() )
228 : {
229 0 : if ( !m_xURLTransformer.is() )
230 : {
231 0 : m_xURLTransformer = util::URLTransformer::create( m_xContext );
232 : }
233 :
234 0 : xFrame = m_xFrame;
235 0 : aCommandURL = m_aCommandURL;
236 0 : xURLTransformer = m_xURLTransformer;
237 0 : }
238 : }
239 :
240 0 : uno::Reference< frame::XDispatchProvider > xDispatchProvider( xFrame, uno::UNO_QUERY );
241 0 : if ( xDispatchProvider.is() )
242 : {
243 0 : aTargetURL.Complete = aCommandURL;
244 0 : xURLTransformer->parseStrict( aTargetURL );
245 0 : xDispatch = xDispatchProvider->queryDispatch( aTargetURL, OUString(), 0 );
246 : }
247 :
248 0 : if ( xDispatch.is() )
249 : {
250 : try
251 : {
252 0 : Sequence<PropertyValue> aArgs( 1 );
253 :
254 : // Provide key modifier information to dispatch function
255 0 : aArgs[0].Name = "KeyModifier";
256 0 : aArgs[0].Value <<= KeyModifier;
257 :
258 0 : xDispatch->dispatch( aTargetURL, aArgs );
259 : }
260 0 : catch ( const DisposedException& )
261 : {
262 : }
263 0 : }
264 0 : }
265 :
266 0 : void SAL_CALL ButtonToolbarController::click()
267 : throw (::com::sun::star::uno::RuntimeException, std::exception)
268 : {
269 0 : SolarMutexGuard aSolarMutexGuard;
270 :
271 0 : if ( m_bDisposed )
272 0 : throw DisposedException();
273 :
274 0 : sal_Int16 nKeyModifier( (sal_Int16)m_pToolbar->GetModifier() );
275 0 : execute( nKeyModifier );
276 0 : }
277 :
278 0 : void SAL_CALL ButtonToolbarController::doubleClick()
279 : throw (::com::sun::star::uno::RuntimeException, std::exception)
280 : {
281 : // do nothing
282 0 : if ( m_bDisposed )
283 0 : throw DisposedException();
284 0 : }
285 :
286 0 : uno::Reference< awt::XWindow > SAL_CALL ButtonToolbarController::createPopupWindow()
287 : throw (::com::sun::star::uno::RuntimeException, std::exception)
288 : {
289 0 : if ( m_bDisposed )
290 0 : throw DisposedException();
291 :
292 0 : return uno::Reference< awt::XWindow >();
293 : }
294 :
295 0 : uno::Reference< awt::XWindow > SAL_CALL ButtonToolbarController::createItemWindow(
296 : const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow >& )
297 : throw (::com::sun::star::uno::RuntimeException, std::exception)
298 : {
299 0 : if ( m_bDisposed )
300 0 : throw DisposedException();
301 :
302 0 : return uno::Reference< awt::XWindow >();
303 : }
304 :
305 648 : } // namespace
306 :
307 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|