xref: /AOO41X/main/framework/inc/classes/imagewrapper.hxx (revision f8e07b45f7e1fb69563504f404bb0b75210f0be6)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef __FRAMEWORK_CLASSES_IMAGEWRAPPER_HXX_
25 #define __FRAMEWORK_CLASSES_IMAGEWRAPPER_HXX_
26 
27 #include <threadhelp/threadhelpbase.hxx>
28 #include <com/sun/star/awt/XBitmap.hpp>
29 #include <com/sun/star/lang/XUnoTunnel.hpp>
30 #include <com/sun/star/lang/XTypeProvider.hpp>
31 #include <cppuhelper/implbase2.hxx>
32 #include <vcl/image.hxx>
33 #include <framework/fwedllapi.h>
34 
35 namespace framework
36 {
37 
38 class FWE_DLLPUBLIC ImageWrapper : public ThreadHelpBase                            ,   // Struct for right initalization of mutex member! Must be first of baseclasses.
39                      public ::cppu::WeakImplHelper2< ::com::sun::star::awt::XBitmap,
40                                                     ::com::sun::star::lang::XUnoTunnel >
41 {
42     public:
43         ImageWrapper( const Image& aImage );
44         virtual ~ImageWrapper();
45 
GetImage() const46         const Image&    GetImage() const
47         {
48             return m_aImage;
49         }
50 
51         static ::com::sun::star::uno::Sequence< sal_Int8 > GetUnoTunnelId();
52 
53         // XBitmap
54         virtual ::com::sun::star::awt::Size SAL_CALL getSize() throw (::com::sun::star::uno::RuntimeException);
55         virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getDIB() throw (::com::sun::star::uno::RuntimeException);
56         virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getMaskDIB() throw (::com::sun::star::uno::RuntimeException);
57 
58         // XUnoTunnel
59         virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw (::com::sun::star::uno::RuntimeException);
60 
61     private:
62         Image   m_aImage;
63 };
64 
65 }
66 
67 #endif // __FRAMEWORK_CLASSES_IMAGEWRAPPER_HXX_
68