fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / svtools / source / hatchwindow / documentcloser.hxx
blobf5658229d80fcbab70f861ebd10509aa0995d408
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 .
20 #ifndef __DOCUMENTCLOSER_HXX_
21 #define __DOCUMENTCLOSER_HXX_
23 #include <com/sun/star/uno/XComponentContext.hpp>
24 #include <com/sun/star/lang/XComponent.hpp>
25 #include <com/sun/star/frame/XFrame.hpp>
26 #include <com/sun/star/lang/XInitialization.hpp>
27 #include <com/sun/star/lang/XServiceInfo.hpp>
28 #include <com/sun/star/embed/XActionsApproval.hpp>
29 #include <com/sun/star/embed/Actions.hpp>
30 #include <cppuhelper/weakref.hxx>
31 #include <osl/mutex.hxx>
32 #include <cppuhelper/implbase3.hxx>
33 #include <cppuhelper/interfacecontainer.h>
36 // the service is implemented as a wrapper to be able to die by refcount
37 // the disposing mechanics is required for java related scenarios
38 class ODocumentCloser : public ::cppu::WeakImplHelper3< ::com::sun::star::lang::XComponent,
39 ::com::sun::star::lang::XInitialization,
40 ::com::sun::star::lang::XServiceInfo >
42 ::osl::Mutex m_aMutex;
43 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext;
45 ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > m_xFrame;
47 ::cppu::OInterfaceContainerHelper* m_pListenersContainer; // list of listeners
49 sal_Bool m_bDisposed;
50 sal_Bool m_bInitialized;
52 public:
53 ODocumentCloser( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& xContext );
54 ~ODocumentCloser();
56 static ::com::sun::star::uno::Sequence< OUString > SAL_CALL
57 impl_staticGetSupportedServiceNames();
59 static OUString SAL_CALL impl_staticGetImplementationName();
61 static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL
62 impl_staticCreateSelfInstance(
63 const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xServiceManager );
65 // XComponent
66 virtual void SAL_CALL dispose() throw (::com::sun::star::uno::RuntimeException);
67 virtual void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
68 virtual void SAL_CALL removeEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& aListener ) throw (::com::sun::star::uno::RuntimeException);
70 // XInitialization
71 virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
73 // XServiceInfo
74 virtual OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException);
75 virtual ::sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
76 virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException);
80 #endif
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */