xref: /aoo41x/main/editeng/source/uno/unopracc.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_editeng.hxx"
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir //------------------------------------------------------------------------
32*cdf0e10cSrcweir //
33*cdf0e10cSrcweir // Global header
34*cdf0e10cSrcweir //
35*cdf0e10cSrcweir //------------------------------------------------------------------------
36*cdf0e10cSrcweir #include <vos/mutex.hxx>
37*cdf0e10cSrcweir #include <com/sun/star/uno/Any.hxx>
38*cdf0e10cSrcweir #include <com/sun/star/uno/Reference.hxx>
39*cdf0e10cSrcweir #include <cppuhelper/weakref.hxx>
40*cdf0e10cSrcweir #include <com/sun/star/lang/XComponent.hpp>
41*cdf0e10cSrcweir #include <cppuhelper/typeprovider.hxx>
42*cdf0e10cSrcweir 
43*cdf0e10cSrcweir 
44*cdf0e10cSrcweir //------------------------------------------------------------------------
45*cdf0e10cSrcweir //
46*cdf0e10cSrcweir // Project-local header
47*cdf0e10cSrcweir //
48*cdf0e10cSrcweir //------------------------------------------------------------------------
49*cdf0e10cSrcweir 
50*cdf0e10cSrcweir #include <editeng/unopracc.hxx>
51*cdf0e10cSrcweir #include <editeng/unoedsrc.hxx>
52*cdf0e10cSrcweir 
53*cdf0e10cSrcweir using namespace ::com::sun::star;
54*cdf0e10cSrcweir 
55*cdf0e10cSrcweir //------------------------------------------------------------------------
56*cdf0e10cSrcweir //
57*cdf0e10cSrcweir // SvxAccessibleTextPropertySet implementation
58*cdf0e10cSrcweir //
59*cdf0e10cSrcweir //------------------------------------------------------------------------
60*cdf0e10cSrcweir 
61*cdf0e10cSrcweir SvxAccessibleTextPropertySet::SvxAccessibleTextPropertySet( const SvxEditSource* pEditSrc, const SvxItemPropertySet* pPropSet )
62*cdf0e10cSrcweir     : SvxUnoTextRangeBase( pEditSrc, pPropSet )
63*cdf0e10cSrcweir {
64*cdf0e10cSrcweir }
65*cdf0e10cSrcweir 
66*cdf0e10cSrcweir SvxAccessibleTextPropertySet::~SvxAccessibleTextPropertySet() throw()
67*cdf0e10cSrcweir {
68*cdf0e10cSrcweir }
69*cdf0e10cSrcweir 
70*cdf0e10cSrcweir uno::Reference< text::XText > SAL_CALL SvxAccessibleTextPropertySet::getText() throw (uno::RuntimeException)
71*cdf0e10cSrcweir {
72*cdf0e10cSrcweir   // TODO (empty?)
73*cdf0e10cSrcweir   return uno::Reference< text::XText > ();
74*cdf0e10cSrcweir }
75*cdf0e10cSrcweir 
76*cdf0e10cSrcweir uno::Any SAL_CALL SvxAccessibleTextPropertySet::queryAggregation( const uno::Type & ) throw(uno::RuntimeException)
77*cdf0e10cSrcweir {
78*cdf0e10cSrcweir   // TODO (empty?)
79*cdf0e10cSrcweir   return uno::Any();
80*cdf0e10cSrcweir }
81*cdf0e10cSrcweir 
82*cdf0e10cSrcweir uno::Any SAL_CALL SvxAccessibleTextPropertySet::queryInterface( const uno::Type & rType )
83*cdf0e10cSrcweir 	throw(uno::RuntimeException)
84*cdf0e10cSrcweir {
85*cdf0e10cSrcweir 	return OWeakObject::queryInterface(rType);
86*cdf0e10cSrcweir }
87*cdf0e10cSrcweir 
88*cdf0e10cSrcweir void SAL_CALL SvxAccessibleTextPropertySet::acquire()
89*cdf0e10cSrcweir 	throw()
90*cdf0e10cSrcweir {
91*cdf0e10cSrcweir 	OWeakObject::acquire();
92*cdf0e10cSrcweir }
93*cdf0e10cSrcweir 
94*cdf0e10cSrcweir void SAL_CALL SvxAccessibleTextPropertySet::release()
95*cdf0e10cSrcweir 	throw()
96*cdf0e10cSrcweir {
97*cdf0e10cSrcweir 	OWeakObject::release();
98*cdf0e10cSrcweir }
99*cdf0e10cSrcweir 
100*cdf0e10cSrcweir // XTypeProvider
101*cdf0e10cSrcweir uno::Sequence< uno::Type > SAL_CALL SvxAccessibleTextPropertySet::getTypes() throw ( uno::RuntimeException )
102*cdf0e10cSrcweir {
103*cdf0e10cSrcweir 	static ::cppu::OTypeCollection* pTypeCollection = NULL ;
104*cdf0e10cSrcweir 
105*cdf0e10cSrcweir     // double-checked locking pattern.
106*cdf0e10cSrcweir 	if ( pTypeCollection == NULL )
107*cdf0e10cSrcweir 	{
108*cdf0e10cSrcweir 		osl::MutexGuard aGuard( osl::Mutex::getGlobalMutex() ) ;
109*cdf0e10cSrcweir 
110*cdf0e10cSrcweir 		// Control these pointer again ... it can be, that another instance will be faster then these!
111*cdf0e10cSrcweir 		if ( pTypeCollection == NULL )
112*cdf0e10cSrcweir 		{
113*cdf0e10cSrcweir 			// Create a static typecollection ...
114*cdf0e10cSrcweir 			static ::cppu::OTypeCollection aTypeCollection(
115*cdf0e10cSrcweir                 ::getCppuType( static_cast< const uno::Reference< beans::XPropertySet >* > (0) ),
116*cdf0e10cSrcweir                 ::getCppuType( static_cast< const uno::Reference< beans::XMultiPropertySet >* > (0) ),
117*cdf0e10cSrcweir                 ::getCppuType( static_cast< const uno::Reference< beans::XPropertyState >* > (0) ),
118*cdf0e10cSrcweir                 ::getCppuType( static_cast< const uno::Reference< lang::XServiceInfo >* > (0) ),
119*cdf0e10cSrcweir                 ::getCppuType( static_cast< const uno::Reference< lang::XTypeProvider >* > (0) ) );
120*cdf0e10cSrcweir 
121*cdf0e10cSrcweir 			// ... and set his address to static pointer!
122*cdf0e10cSrcweir 			pTypeCollection = &aTypeCollection ;
123*cdf0e10cSrcweir 		}
124*cdf0e10cSrcweir 	}
125*cdf0e10cSrcweir 
126*cdf0e10cSrcweir 	return pTypeCollection->getTypes() ;
127*cdf0e10cSrcweir }
128*cdf0e10cSrcweir 
129*cdf0e10cSrcweir uno::Sequence< sal_Int8 > SAL_CALL SvxAccessibleTextPropertySet::getImplementationId()
130*cdf0e10cSrcweir 	throw (uno::RuntimeException)
131*cdf0e10cSrcweir {
132*cdf0e10cSrcweir 	static uno::Sequence< sal_Int8 > aId;
133*cdf0e10cSrcweir 	if( aId.getLength() == 0 )
134*cdf0e10cSrcweir 	{
135*cdf0e10cSrcweir 		aId.realloc( 16 );
136*cdf0e10cSrcweir 		rtl_createUuid( reinterpret_cast< sal_uInt8* > (aId.getArray()), 0, sal_True );
137*cdf0e10cSrcweir 	}
138*cdf0e10cSrcweir 	return aId;
139*cdf0e10cSrcweir }
140*cdf0e10cSrcweir 
141*cdf0e10cSrcweir // XServiceInfo
142*cdf0e10cSrcweir ::rtl::OUString SAL_CALL SAL_CALL SvxAccessibleTextPropertySet::getImplementationName (void) throw (uno::RuntimeException)
143*cdf0e10cSrcweir {
144*cdf0e10cSrcweir 	return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM ("SvxAccessibleTextPropertySet"));
145*cdf0e10cSrcweir }
146*cdf0e10cSrcweir 
147*cdf0e10cSrcweir sal_Bool SAL_CALL SvxAccessibleTextPropertySet::supportsService (const ::rtl::OUString& sServiceName) throw (uno::RuntimeException)
148*cdf0e10cSrcweir {
149*cdf0e10cSrcweir     //  Iterate over all supported service names and return true if on of them
150*cdf0e10cSrcweir     //  matches the given name.
151*cdf0e10cSrcweir     uno::Sequence< ::rtl::OUString> aSupportedServices (
152*cdf0e10cSrcweir         getSupportedServiceNames ());
153*cdf0e10cSrcweir     for (int i=0; i<aSupportedServices.getLength(); i++)
154*cdf0e10cSrcweir         if (sServiceName == aSupportedServices[i])
155*cdf0e10cSrcweir             return sal_True;
156*cdf0e10cSrcweir     return sal_False;
157*cdf0e10cSrcweir }
158*cdf0e10cSrcweir 
159*cdf0e10cSrcweir uno::Sequence< ::rtl::OUString> SAL_CALL SvxAccessibleTextPropertySet::getSupportedServiceNames (void) throw (uno::RuntimeException)
160*cdf0e10cSrcweir {
161*cdf0e10cSrcweir     // TODO
162*cdf0e10cSrcweir 	return SvxUnoTextRangeBase::getSupportedServiceNames();
163*cdf0e10cSrcweir }
164*cdf0e10cSrcweir 
165*cdf0e10cSrcweir // XServiceName
166*cdf0e10cSrcweir ::rtl::OUString SAL_CALL SvxAccessibleTextPropertySet::getServiceName() throw (uno::RuntimeException)
167*cdf0e10cSrcweir {
168*cdf0e10cSrcweir 	return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.beans.PropertyValue"));
169*cdf0e10cSrcweir }
170*cdf0e10cSrcweir 
171*cdf0e10cSrcweir 
172