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 : #ifndef INCLUDED_TOOLKIT_AWT_VCLXCONTAINER_HXX
21 : #define INCLUDED_TOOLKIT_AWT_VCLXCONTAINER_HXX
22 :
23 :
24 : #include <com/sun/star/awt/XVclContainer.hpp>
25 : #include <com/sun/star/awt/XVclContainerPeer.hpp>
26 : #include <com/sun/star/lang/XTypeProvider.hpp>
27 : #include <cppuhelper/weak.hxx>
28 : #include <osl/mutex.hxx>
29 :
30 : #include <toolkit/awt/vclxwindow.hxx>
31 :
32 :
33 :
34 : // class VCLXContainer
35 :
36 :
37 : class TOOLKIT_DLLPUBLIC VCLXContainer : public ::com::sun::star::awt::XVclContainer,
38 : public ::com::sun::star::awt::XVclContainerPeer,
39 : public VCLXWindow
40 : {
41 : public:
42 : VCLXContainer();
43 : virtual ~VCLXContainer();
44 :
45 : // ::com::sun::star::uno::XInterface
46 : ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
47 0 : void SAL_CALL acquire() throw() SAL_OVERRIDE { OWeakObject::acquire(); }
48 0 : void SAL_CALL release() throw() SAL_OVERRIDE { OWeakObject::release(); }
49 :
50 : // ::com::sun::star::lang::XTypeProvider
51 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
52 : ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
53 :
54 : // ::com::sun::star::awt::XVclContainer
55 : void SAL_CALL addVclContainerListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XVclContainerListener >& l ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
56 : void SAL_CALL removeVclContainerListener( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XVclContainerListener >& l ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
57 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow > > SAL_CALL getWindows( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
58 :
59 : // ::com::sun::star::awt::XVclContainerPeer
60 : void SAL_CALL enableDialogControl( sal_Bool bEnable ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
61 : void SAL_CALL setTabOrder( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow > >& WindowOrder, const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& Tabs, sal_Bool GroupControl ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
62 : void SAL_CALL setGroup( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow > >& Windows ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
63 :
64 : // ::com::sun::star::awt::XVclWindowPeer
65 : void SAL_CALL setProperty( const OUString& PropertyName, const ::com::sun::star::uno::Any& Value ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
66 :
67 : static void ImplGetPropertyIds( std::list< sal_uInt16 > &aIds );
68 0 : virtual void GetPropertyIds( std::list< sal_uInt16 > &aIds ) SAL_OVERRIDE { return ImplGetPropertyIds( aIds ); }
69 : };
70 :
71 :
72 :
73 :
74 : #endif // INCLUDED_TOOLKIT_AWT_VCLXCONTAINER_HXX
75 :
76 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|