1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 #ifndef _INC_SPECIALOBJECT_HXX_
29 #define _INC_SPECIALOBJECT_HXX_
30 
31 #include <com/sun/star/awt/Size.hpp>
32 
33 #include "commonembobj.hxx"
34 
35 class OSpecialEmbeddedObject : public OCommonEmbeddedObject
36 {
37 private:
38     com::sun::star::awt::Size         maSize;
39 public:
40     OSpecialEmbeddedObject(
41 		const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xFactory,
42         const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >& aObjectProps );
43 
44     // XInterface
45 	virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& rType )
46 		throw( ::com::sun::star::uno::RuntimeException ) ;
47 
48     // XTypeProvider
49 	virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes()
50 		throw( ::com::sun::star::uno::RuntimeException ) ;
51 
52     // XVisualObject
53     virtual ::com::sun::star::embed::VisualRepresentation SAL_CALL getPreferredVisualRepresentation( ::sal_Int64 nAspect )
54 		throw ( ::com::sun::star::lang::IllegalArgumentException,
55 				::com::sun::star::embed::WrongStateException,
56 				::com::sun::star::uno::Exception,
57 				::com::sun::star::uno::RuntimeException );
58 
59     virtual void SAL_CALL setVisualAreaSize( sal_Int64 nAspect, const ::com::sun::star::awt::Size& aSize )
60 		throw ( ::com::sun::star::lang::IllegalArgumentException,
61 				::com::sun::star::embed::WrongStateException,
62 				::com::sun::star::uno::Exception,
63 				::com::sun::star::uno::RuntimeException );
64 
65     virtual ::com::sun::star::awt::Size SAL_CALL getVisualAreaSize( sal_Int64 nAspect )
66 		throw ( ::com::sun::star::lang::IllegalArgumentException,
67 				::com::sun::star::embed::WrongStateException,
68 				::com::sun::star::uno::Exception,
69 				::com::sun::star::uno::RuntimeException );
70 
71     virtual sal_Int32 SAL_CALL getMapUnit( sal_Int64 nAspect )
72 		throw ( ::com::sun::star::uno::Exception,
73 				::com::sun::star::uno::RuntimeException);
74 
75     virtual void SAL_CALL changeState( sal_Int32 nNewState )
76 		throw ( ::com::sun::star::embed::UnreachableStateException,
77 				::com::sun::star::embed::WrongStateException,
78 				::com::sun::star::uno::Exception,
79 				::com::sun::star::uno::RuntimeException );
80 
81     virtual void SAL_CALL doVerb( sal_Int32 nVerbID )
82 		throw ( ::com::sun::star::lang::IllegalArgumentException,
83 				::com::sun::star::embed::WrongStateException,
84 				::com::sun::star::embed::UnreachableStateException,
85 				::com::sun::star::uno::Exception,
86 				::com::sun::star::uno::RuntimeException );
87 };
88 
89 #endif
90 
91