/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "documentcloser.hxx" using namespace ::com::sun::star; // ==================================================================== // MainThreadFrameCloserRequest // ==================================================================== class MainThreadFrameCloserRequest { uno::Reference< frame::XFrame > m_xFrame; public: MainThreadFrameCloserRequest( const uno::Reference< frame::XFrame >& xFrame ) : m_xFrame( xFrame ) {} DECL_STATIC_LINK( MainThreadFrameCloserRequest, worker, MainThreadFrameCloserRequest* ); static void Start( MainThreadFrameCloserRequest* pRequest ); }; // -------------------------------------------------------- void MainThreadFrameCloserRequest::Start( MainThreadFrameCloserRequest* pMTRequest ) { if ( pMTRequest ) { if ( Application::GetMainThreadIdentifier() == osl::Thread::getCurrentIdentifier() ) { // this is the main thread worker( NULL, pMTRequest ); } else Application::PostUserEvent( STATIC_LINK( NULL, MainThreadFrameCloserRequest, worker ), pMTRequest ); } } // -------------------------------------------------------- IMPL_STATIC_LINK( MainThreadFrameCloserRequest, worker, MainThreadFrameCloserRequest*, pMTRequest ) { (void) pThis; // unused if ( pMTRequest ) { if ( pMTRequest->m_xFrame.is() ) { // this is the main thread, the solar mutex must be locked SolarMutexGuard aGuard; try { uno::Reference< awt::XWindow > xWindow = pMTRequest->m_xFrame->getContainerWindow(); uno::Reference< awt::XVclWindowPeer > xWinPeer( xWindow, uno::UNO_QUERY_THROW ); xWindow->setVisible( sal_False ); // reparent the window xWinPeer->setProperty( OUString( "PluginParent" ), uno::makeAny( (sal_Int64) 0 ) ); Window* pWindow = VCLUnoHelper::GetWindow( xWindow ); if ( pWindow ) Dialog::EndAllDialogs( pWindow ); } catch( uno::Exception& ) { // ignore all the errors } try { uno::Reference< util::XCloseable > xCloseable( pMTRequest->m_xFrame, uno::UNO_QUERY_THROW ); xCloseable->close( sal_True ); } catch( uno::Exception& ) { // ignore all the errors } } delete pMTRequest; } return 0; } // ==================================================================== // ODocumentCloser // ==================================================================== // -------------------------------------------------------- ODocumentCloser::ODocumentCloser( const uno::Reference< uno::XComponentContext >& xContext ) : m_xContext( xContext ) , m_pListenersContainer( NULL ) , m_bDisposed( sal_False ) , m_bInitialized( sal_False ) { } // -------------------------------------------------------- ODocumentCloser::~ODocumentCloser() { if ( m_pListenersContainer ) { delete m_pListenersContainer; m_pListenersContainer = NULL; } } // XComponent // -------------------------------------------------------- void SAL_CALL ODocumentCloser::dispose() throw (uno::RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); if ( m_bDisposed ) throw lang::DisposedException(); lang::EventObject aSource( static_cast< ::cppu::OWeakObject* >(this) ); if ( m_pListenersContainer ) m_pListenersContainer->disposeAndClear( aSource ); // TODO: trigger a main thread execution to close the frame if ( m_xFrame.is() ) { // the created object will be deleted after thread execution MainThreadFrameCloserRequest* pCloser = new MainThreadFrameCloserRequest( m_xFrame ); MainThreadFrameCloserRequest::Start( pCloser ); } m_bDisposed = sal_True; } // -------------------------------------------------------- void SAL_CALL ODocumentCloser::addEventListener( const uno::Reference< lang::XEventListener >& xListener ) throw (uno::RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); if ( m_bDisposed ) throw lang::DisposedException(); // TODO if ( !m_pListenersContainer ) m_pListenersContainer = new ::cppu::OInterfaceContainerHelper( m_aMutex ); m_pListenersContainer->addInterface( xListener ); } // -------------------------------------------------------- void SAL_CALL ODocumentCloser::removeEventListener( const uno::Reference< lang::XEventListener >& xListener ) throw (uno::RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); if ( m_pListenersContainer ) m_pListenersContainer->removeInterface( xListener ); } // XInitialization // -------------------------------------------------------- void SAL_CALL ODocumentCloser::initialize( const uno::Sequence< uno::Any >& aArguments ) throw (uno::Exception, uno::RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); if ( m_bInitialized ) throw frame::DoubleInitializationException(); if ( m_bDisposed ) throw lang::DisposedException(); // TODO if ( !m_refCount ) throw uno::RuntimeException(); // the object must be refcounted already! sal_Int32 nLen = aArguments.getLength(); if ( nLen != 1 ) throw lang::IllegalArgumentException( OUString("Wrong count of parameters!" ), uno::Reference< uno::XInterface >(), 0 ); if ( !( aArguments[0] >>= m_xFrame ) || !m_xFrame.is() ) throw lang::IllegalArgumentException( OUString("Nonempty reference is expected as the first argument!" ), uno::Reference< uno::XInterface >(), 0 ); m_bInitialized = sal_True; } // XServiceInfo OUString SAL_CALL ODocumentCloser::getImplementationName( ) throw (uno::RuntimeException) { return impl_staticGetImplementationName(); } ::sal_Bool SAL_CALL ODocumentCloser::supportsService( const OUString& ServiceName ) throw (uno::RuntimeException) { return cppu::supportsService(this, ServiceName); } uno::Sequence< OUString > SAL_CALL ODocumentCloser::getSupportedServiceNames() throw (uno::RuntimeException) { return impl_staticGetSupportedServiceNames(); } // Static methods uno::Sequence< OUString > SAL_CALL ODocumentCloser::impl_staticGetSupportedServiceNames() { const OUString aServiceName( "com.sun.star.embed.DocumentCloser" ); return uno::Sequence< OUString >( &aServiceName, 1 ); } OUString SAL_CALL ODocumentCloser::impl_staticGetImplementationName() { return OUString( "com.sun.star.comp.embed.DocumentCloser" ); } // -------------------------------------------------------- uno::Reference< uno::XInterface > SAL_CALL ODocumentCloser::impl_staticCreateSelfInstance( const uno::Reference< lang::XMultiServiceFactory >& xServiceManager ) { uno::Reference< uno::XComponentContext > xContext( comphelper::getComponentContext( xServiceManager ) ); return static_cast< cppu::OWeakObject * >( new ODocumentCloser( xContext ) ); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ distro/vector/vector-24.2-release'>distro/vector/vector-24.2-release LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-02-09clang-format: improve error message when CI failsMiklos Vajna
2018-01-15git pre-commit hook: catch copy&pasted author identityMiklos Vajna
2017-12-15clang-format: restore lost warning on touching formatted file without checkMiklos Vajna
2017-12-13clang-format: ignore not staged hunksMiklos Vajna
2017-11-21git-hooks: fix pre-commit in submodulesMiklos Vajna
2017-11-20clang-format: enforce coding style via JenkinsMiklos Vajna
2017-11-16git-hooks: mention download link for clang-format when warning about itMiklos Vajna
2017-11-16Warn when commit touches new files, but no suitable clang-format is foundStephan Bergmann
2017-11-13First look for clang-format in CLANG_FORMT env varStephan Bergmann
2017-11-13clang-format: standardize on 5.0.0Miklos Vajna
2017-11-03Enforce coding style with clang-format for new codeMiklos Vajna
2017-10-30git-hooks: don't complain about large .ui filesMichael Stahl
2017-09-20pre-commit-hook: Also check xsl files for whitespace and tabsSamuel Mehrbrodt
2017-09-11insist in a domain in .ui filesCaolán McNamara
2017-09-11disallow .ui translatable entries without context at checkinCaolán McNamara
2017-03-24git pre-commit hook: Also check swift filesSamuel Mehrbrodt
2016-12-08tdf#102784 - Enhance git pre-commit hookMarina Latini
2015-09-08git-hooks: Info how to install them manually.Jan Holesovsky
2015-06-13Catch funny line-ends in pre-commit hook.Thorsten Behrens
2015-02-13git-hooks: post-merge script does not need /bin/bashThomas Klausner
2015-02-13git-hooks: recognize multiple bug idsMiklos Vajna
2015-02-12git hooks: reject suspicious fdo referencesMiklos Vajna
2014-05-16git pre-commit hook: block large filesMiklos Vajna