bump product version to 5.0.4.1
[LibreOffice.git] / basic / source / basmgr / vbahelper.cxx
blobdbd82c8aa44c6dde47990ecb44eb55b63b7022d0
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
21 #include <basic/vbahelper.hxx>
23 #include <map>
24 #include <vector>
25 #include <com/sun/star/container/XEnumeration.hpp>
26 #include <com/sun/star/frame/Desktop.hpp>
27 #include <com/sun/star/frame/XModel2.hpp>
28 #include <com/sun/star/frame/ModuleManager.hpp>
29 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
30 #include <comphelper/processfactory.hxx>
31 #include <cppuhelper/implbase1.hxx>
32 #include <rtl/instance.hxx>
34 namespace basic {
35 namespace vba {
37 using namespace ::com::sun::star;
41 namespace {
43 /** Create an instance of a module manager.
45 uno::Reference< frame::XModuleManager2 > lclCreateModuleManager()
47 uno::Reference< uno::XComponentContext > xContext( ::comphelper::getProcessComponentContext(), uno::UNO_QUERY_THROW );
48 return frame::ModuleManager::create(xContext);
53 /** Implementation of an enumeration of all open documents of the same type.
55 class DocumentsEnumeration : public ::cppu::WeakImplHelper1< container::XEnumeration >
57 public:
58 DocumentsEnumeration( const uno::Reference< frame::XModel >& rxModel );
59 virtual sal_Bool SAL_CALL hasMoreElements() throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
60 virtual uno::Any SAL_CALL nextElement() throw (container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception) SAL_OVERRIDE;
61 private:
62 typedef ::std::vector< uno::Reference< frame::XModel > > ModelVector;
63 ModelVector maModels;
64 ModelVector::iterator maModelIt;
67 DocumentsEnumeration::DocumentsEnumeration( const uno::Reference< frame::XModel >& rxModel )
69 try
71 uno::Reference< frame::XModuleManager2 > xModuleManager( lclCreateModuleManager() );
72 OUString aIdentifier = xModuleManager->identify( rxModel );
73 uno::Reference< frame::XDesktop2 > xDesktop = frame::Desktop::create( ::comphelper::getProcessComponentContext() );
74 uno::Reference< container::XEnumerationAccess > xComponentsEA( xDesktop->getComponents(), uno::UNO_SET_THROW );
75 uno::Reference< container::XEnumeration > xEnumeration( xComponentsEA->createEnumeration(), uno::UNO_SET_THROW );
76 while( xEnumeration->hasMoreElements() )
78 uno::Reference< frame::XModel > xCurrModel( xEnumeration->nextElement(), uno::UNO_QUERY_THROW );
79 if( xModuleManager->identify( xCurrModel ) == aIdentifier )
80 maModels.push_back( xCurrModel );
83 catch(const uno::Exception& )
86 maModelIt = maModels.begin();
89 sal_Bool SAL_CALL DocumentsEnumeration::hasMoreElements() throw (uno::RuntimeException, std::exception)
91 return maModelIt != maModels.end();
94 uno::Any SAL_CALL DocumentsEnumeration::nextElement() throw (container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception)
96 if( maModelIt == maModels.end() )
97 throw container::NoSuchElementException();
98 return uno::Any( *maModelIt++ );
103 /** Locks or unlocks the controllers of the specified document model.
105 void lclLockControllers( const uno::Reference< frame::XModel >& rxModel, bool bLockControllers )
107 if( rxModel.is() ) try
109 if( bLockControllers )
110 rxModel->lockControllers();
111 else
112 rxModel->unlockControllers();
114 catch(const uno::Exception& )
121 /** Enables or disables the container windows of all controllers of the
122 specified document model.
124 void lclEnableContainerWindows( const uno::Reference< frame::XModel >& rxModel, bool bEnableWindows )
128 uno::Reference< frame::XModel2 > xModel2( rxModel, uno::UNO_QUERY_THROW );
129 uno::Reference< container::XEnumeration > xControllersEnum( xModel2->getControllers(), uno::UNO_SET_THROW );
130 // iterate over all controllers
131 while( xControllersEnum->hasMoreElements() )
135 uno::Reference< frame::XController > xController( xControllersEnum->nextElement(), uno::UNO_QUERY_THROW );
136 uno::Reference< frame::XFrame > xFrame( xController->getFrame(), uno::UNO_SET_THROW );
137 uno::Reference< awt::XWindow > xWindow( xFrame->getContainerWindow(), uno::UNO_SET_THROW );
138 xWindow->setEnable( bEnableWindows );
140 catch(const uno::Exception& )
145 catch(const uno::Exception& )
152 typedef void (*ModifyDocumentFunc)( const uno::Reference< frame::XModel >&, bool );
154 /** Implementation iterating over all documents that have the same type as the
155 specified model, and calling the passed functor.
157 void lclIterateDocuments( ModifyDocumentFunc pModifyDocumentFunc, const uno::Reference< frame::XModel >& rxModel, bool bModificator )
159 uno::Reference< container::XEnumeration > xDocumentsEnum( new DocumentsEnumeration( rxModel ) );
160 // iterate over all open documents
161 while( xDocumentsEnum->hasMoreElements() ) try
163 uno::Reference< frame::XModel > xCurrModel( xDocumentsEnum->nextElement(), uno::UNO_QUERY_THROW );
164 pModifyDocumentFunc( xCurrModel, bModificator );
166 catch(const uno::Exception& )
173 struct CurrDirPool
175 ::osl::Mutex maMutex;
176 ::std::map< OUString, OUString > maCurrDirs;
179 struct StaticCurrDirPool : public ::rtl::Static< CurrDirPool, StaticCurrDirPool > {};
181 } // namespace
185 void lockControllersOfAllDocuments( const uno::Reference< frame::XModel >& rxModel, bool bLockControllers )
187 lclIterateDocuments( &lclLockControllers, rxModel, bLockControllers );
192 void enableContainerWindowsOfAllDocuments( const uno::Reference< frame::XModel >& rxModel, bool bEnableWindows )
194 lclIterateDocuments( &lclEnableContainerWindows, rxModel, bEnableWindows );
199 void registerCurrentDirectory( const uno::Reference< frame::XModel >& rxModel, const OUString& rPath )
201 if( !rPath.isEmpty() )
203 CurrDirPool& rPool = StaticCurrDirPool::get();
204 ::osl::MutexGuard aGuard( rPool.maMutex );
207 uno::Reference< frame::XModuleManager2 > xModuleManager( lclCreateModuleManager() );
208 OUString aIdentifier = xModuleManager->identify( rxModel );
209 if( !aIdentifier.isEmpty() )
210 rPool.maCurrDirs[ aIdentifier ] = rPath;
212 catch(const uno::Exception& )
220 } // namespace vba
221 } // namespace basic
223 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */