xref: /trunk/main/svx/source/form/fmdpage.cxx (revision cdf0e10c)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_svx.hxx"
30*cdf0e10cSrcweir #include <svx/fmpage.hxx>
31*cdf0e10cSrcweir #include "fmobj.hxx"
32*cdf0e10cSrcweir #include <svx/fmglob.hxx>
33*cdf0e10cSrcweir #include <svx/fmdpage.hxx>
34*cdf0e10cSrcweir #include <svx/unoshape.hxx>
35*cdf0e10cSrcweir #include <cppuhelper/queryinterface.hxx>
36*cdf0e10cSrcweir #include <cppuhelper/typeprovider.hxx>
37*cdf0e10cSrcweir 
38*cdf0e10cSrcweir using ::com::sun::star::uno::Any;
39*cdf0e10cSrcweir using ::com::sun::star::uno::RuntimeException;
40*cdf0e10cSrcweir using ::com::sun::star::form::XFormsSupplier2;
41*cdf0e10cSrcweir 
42*cdf0e10cSrcweir DBG_NAME(SvxFmDrawPage)
43*cdf0e10cSrcweir SvxFmDrawPage::SvxFmDrawPage( SdrPage* pInPage ) :
44*cdf0e10cSrcweir 	SvxDrawPage( pInPage )
45*cdf0e10cSrcweir {
46*cdf0e10cSrcweir 	DBG_CTOR(SvxFmDrawPage,NULL);
47*cdf0e10cSrcweir }
48*cdf0e10cSrcweir 
49*cdf0e10cSrcweir SvxFmDrawPage::~SvxFmDrawPage() throw ()
50*cdf0e10cSrcweir {
51*cdf0e10cSrcweir 	DBG_DTOR(SvxFmDrawPage,NULL);
52*cdf0e10cSrcweir }
53*cdf0e10cSrcweir 
54*cdf0e10cSrcweir ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL SvxFmDrawPage::getImplementationId() throw(::com::sun::star::uno::RuntimeException)
55*cdf0e10cSrcweir {
56*cdf0e10cSrcweir     static ::cppu::OImplementationId* pId = 0;
57*cdf0e10cSrcweir 	if (! pId)
58*cdf0e10cSrcweir 	{
59*cdf0e10cSrcweir         ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
60*cdf0e10cSrcweir 		if (! pId)
61*cdf0e10cSrcweir 		{
62*cdf0e10cSrcweir 			static ::cppu::OImplementationId aId;
63*cdf0e10cSrcweir 			pId = &aId;
64*cdf0e10cSrcweir 		}
65*cdf0e10cSrcweir 	}
66*cdf0e10cSrcweir 	return pId->getImplementationId();
67*cdf0e10cSrcweir }
68*cdf0e10cSrcweir 
69*cdf0e10cSrcweir Any SAL_CALL SvxFmDrawPage::queryAggregation( const ::com::sun::star::uno::Type& _rType ) throw(RuntimeException)
70*cdf0e10cSrcweir {
71*cdf0e10cSrcweir 	Any aRet = ::cppu::queryInterface   (   _rType
72*cdf0e10cSrcweir 		                                ,   static_cast< XFormsSupplier2* >( this )
73*cdf0e10cSrcweir 		                                ,   static_cast< XFormsSupplier* >( this )
74*cdf0e10cSrcweir                                         );
75*cdf0e10cSrcweir 	if ( !aRet.hasValue() )
76*cdf0e10cSrcweir 		aRet = SvxDrawPage::queryAggregation( _rType );
77*cdf0e10cSrcweir 
78*cdf0e10cSrcweir     return aRet;
79*cdf0e10cSrcweir }
80*cdf0e10cSrcweir 
81*cdf0e10cSrcweir /***********************************************************************
82*cdf0e10cSrcweir *                                                                      *
83*cdf0e10cSrcweir ***********************************************************************/
84*cdf0e10cSrcweir ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL SvxFmDrawPage::getTypes(  ) throw(::com::sun::star::uno::RuntimeException)
85*cdf0e10cSrcweir {
86*cdf0e10cSrcweir 	::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > aTypes(SvxDrawPage::getTypes());
87*cdf0e10cSrcweir 	aTypes.realloc(aTypes.getLength() + 1);
88*cdf0e10cSrcweir 	::com::sun::star::uno::Type* pTypes = aTypes.getArray();
89*cdf0e10cSrcweir 
90*cdf0e10cSrcweir 	pTypes[aTypes.getLength()-1] = ::getCppuType((const ::com::sun::star::uno::Reference< ::com::sun::star::form::XFormsSupplier>*)0);
91*cdf0e10cSrcweir 	return aTypes;
92*cdf0e10cSrcweir }
93*cdf0e10cSrcweir 
94*cdf0e10cSrcweir SdrObject *SvxFmDrawPage::_CreateSdrObject( const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > & xDescr ) throw ()
95*cdf0e10cSrcweir {
96*cdf0e10cSrcweir 	::rtl::OUString aShapeType( xDescr->getShapeType() );
97*cdf0e10cSrcweir 
98*cdf0e10cSrcweir 	if  (   aShapeType.equalsAscii( "com.sun.star.drawing.ShapeControl" )   // compatibility
99*cdf0e10cSrcweir         ||  aShapeType.equalsAscii( "com.sun.star.drawing.ControlShape" )
100*cdf0e10cSrcweir         )
101*cdf0e10cSrcweir 		return new FmFormObj( OBJ_FM_CONTROL );
102*cdf0e10cSrcweir 	else
103*cdf0e10cSrcweir 		return SvxDrawPage::_CreateSdrObject( xDescr );
104*cdf0e10cSrcweir 
105*cdf0e10cSrcweir }
106*cdf0e10cSrcweir 
107*cdf0e10cSrcweir ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >  SvxFmDrawPage::_CreateShape( SdrObject *pObj ) const throw ()
108*cdf0e10cSrcweir {
109*cdf0e10cSrcweir 	if( FmFormInventor == pObj->GetObjInventor() )
110*cdf0e10cSrcweir 	{
111*cdf0e10cSrcweir 		::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >  xShape = (SvxShape*)new SvxShapeControl( pObj );
112*cdf0e10cSrcweir 		return xShape;
113*cdf0e10cSrcweir 	}
114*cdf0e10cSrcweir 	else
115*cdf0e10cSrcweir 		return SvxDrawPage::_CreateShape( pObj );
116*cdf0e10cSrcweir }
117*cdf0e10cSrcweir 
118*cdf0e10cSrcweir // XFormsSupplier
119*cdf0e10cSrcweir ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > SAL_CALL SvxFmDrawPage::getForms(void) throw( ::com::sun::star::uno::RuntimeException )
120*cdf0e10cSrcweir {
121*cdf0e10cSrcweir 	::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >  xForms;
122*cdf0e10cSrcweir 
123*cdf0e10cSrcweir 	FmFormPage *pFmPage = PTR_CAST( FmFormPage, GetSdrPage() );
124*cdf0e10cSrcweir 	if( pFmPage )
125*cdf0e10cSrcweir 		xForms = pFmPage->GetForms();
126*cdf0e10cSrcweir 
127*cdf0e10cSrcweir 	return xForms;
128*cdf0e10cSrcweir }
129*cdf0e10cSrcweir 
130*cdf0e10cSrcweir // XFormsSupplier2
131*cdf0e10cSrcweir sal_Bool SAL_CALL SvxFmDrawPage::hasForms(void) throw( ::com::sun::star::uno::RuntimeException )
132*cdf0e10cSrcweir {
133*cdf0e10cSrcweir     sal_Bool bHas = sal_False;
134*cdf0e10cSrcweir 	FmFormPage* pFormPage = PTR_CAST( FmFormPage, GetSdrPage() );
135*cdf0e10cSrcweir 	if ( pFormPage )
136*cdf0e10cSrcweir 		bHas = pFormPage->GetForms( false ).is();
137*cdf0e10cSrcweir 	return bHas;
138*cdf0e10cSrcweir }
139*cdf0e10cSrcweir 
140*cdf0e10cSrcweir // ::com::sun::star::lang::XServiceInfo
141*cdf0e10cSrcweir ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL SvxFmDrawPage::getSupportedServiceNames(void) throw( ::com::sun::star::uno::RuntimeException )
142*cdf0e10cSrcweir {
143*cdf0e10cSrcweir 	return SvxDrawPage::getSupportedServiceNames();
144*cdf0e10cSrcweir }
145*cdf0e10cSrcweir 
146*cdf0e10cSrcweir 
147