1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
24 #include <com/sun/star/lang/XServiceInfo.hpp>
25 #include <com/sun/star/beans/XPropertySet.hpp>
26 #include <com/sun/star/container/XNameAccess.hpp>
27 #include <com/sun/star/container/XEnumeration.hpp>
28 #include <com/sun/star/container/XIndexAccess.hpp>
29 #include <cppuhelper/implbase.hxx>
30 #include <cppuhelper/supportsservice.hxx>
31 #include <osl/diagnose.h>
34 #define SC_SIMPLE_SERVICE_INFO_IMPL( ClassName, ClassNameAscii ) \
35 OUString SAL_CALL ClassName::getImplementationName() \
37 return ClassNameAscii; \
39 sal_Bool SAL_CALL ClassName::supportsService( const OUString& ServiceName ) \
41 return cppu::supportsService(this, ServiceName); \
44 #define SC_SIMPLE_SERVICE_INFO_NAME( ClassName, ServiceAscii ) \
45 css::uno::Sequence< OUString > \
46 SAL_CALL ClassName::getSupportedServiceNames() \
48 css::uno::Sequence< OUString > aRet { ServiceAscii }; \
52 // Place the old mistyped variant as first element so existing code can
53 // continue to ask aRet[0] if it doesn't iterate; new code can iterate over the
54 // sequence. This mostly should be used by supportsService() iterating anyway.
55 #define SC_SIMPLE_SERVICE_INFO_TYPO( ClassName, ServiceAscii, ServiceAsciiMistyped ) \
56 css::uno::Sequence< OUString > \
57 SAL_CALL ClassName::getSupportedServiceNames() \
59 css::uno::Sequence< OUString > aRet { ServiceAsciiMistyped, ServiceAscii }; \
63 #define SC_SIMPLE_SERVICE_INFO( ClassName, ClassNameAscii, ServiceAscii ) \
64 SC_SIMPLE_SERVICE_INFO_IMPL( ClassName, ClassNameAscii ) \
65 SC_SIMPLE_SERVICE_INFO_NAME( ClassName, ServiceAscii )
67 #define SC_SIMPLE_SERVICE_INFO_COMPAT( ClassName, ClassNameAscii, ServiceAscii, ServiceAsciiMistyped ) \
68 SC_SIMPLE_SERVICE_INFO_IMPL( ClassName, ClassNameAscii ) \
69 SC_SIMPLE_SERVICE_INFO_TYPO( ClassName, ServiceAscii, ServiceAsciiMistyped )
72 #define SC_IMPL_DUMMY_PROPERTY_LISTENER( ClassName ) \
73 void SAL_CALL ClassName::addPropertyChangeListener( const OUString&, \
74 const uno::Reference<beans::XPropertyChangeListener>&) \
75 { OSL_FAIL("not implemented"); } \
76 void SAL_CALL ClassName::removePropertyChangeListener( const OUString&, \
77 const uno::Reference<beans::XPropertyChangeListener>&) \
78 { OSL_FAIL("not implemented"); } \
79 void SAL_CALL ClassName::addVetoableChangeListener( const OUString&, \
80 const uno::Reference<beans::XVetoableChangeListener>&) \
81 { OSL_FAIL("not implemented"); } \
82 void SAL_CALL ClassName::removeVetoableChangeListener( const OUString&, \
83 const uno::Reference<beans::XVetoableChangeListener>&) \
84 { OSL_FAIL("not implemented"); }
86 #define SC_QUERYINTERFACE(x) \
87 if (rType == cppu::UnoType<x>::get()) \
88 { return uno::makeAny(uno::Reference<x>(this)); }
90 // SC_QUERY_MULTIPLE( XElementAccess, XIndexAccess ):
91 // use if interface is used several times in one class
93 #define SC_QUERY_MULTIPLE(x,y) \
94 if (rType == cppu::UnoType<x>::get()) \
95 { uno::Any aR; aR <<= uno::Reference<x>(static_cast<y*>(this)); return aR; }
97 class ScIndexEnumeration final
: public cppu::WeakImplHelper
<
98 css::container::XEnumeration
,
99 css::lang::XServiceInfo
>
102 css::uno::Reference
<css::container::XIndexAccess
> xIndex
;
103 OUString sServiceName
;
107 ScIndexEnumeration(const css::uno::Reference
<
108 css::container::XIndexAccess
>& rInd
, const OUString
& rServiceName
);
109 virtual ~ScIndexEnumeration() override
;
112 virtual sal_Bool SAL_CALL
hasMoreElements() override
;
113 virtual css::uno::Any SAL_CALL
nextElement() override
;
116 virtual OUString SAL_CALL
getImplementationName( ) override
;
117 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
118 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames( ) override
;
121 // new (uno 3) variant
122 class ScNameToIndexAccess final
: public cppu::WeakImplHelper
<
123 css::container::XIndexAccess
,
124 css::lang::XServiceInfo
>
127 css::uno::Reference
<css::container::XNameAccess
> xNameAccess
;
128 css::uno::Sequence
<OUString
> aNames
;
132 const css::uno::Reference
< css::container::XNameAccess
>& rNameObj
);
133 virtual ~ScNameToIndexAccess() override
;
136 virtual sal_Int32 SAL_CALL
getCount( ) override
;
137 virtual css::uno::Any SAL_CALL
getByIndex( sal_Int32 Index
) override
;
140 virtual css::uno::Type SAL_CALL
getElementType( ) override
;
141 virtual sal_Bool SAL_CALL
hasElements( ) override
;
144 virtual OUString SAL_CALL
getImplementationName( ) override
;
145 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
146 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames( ) override
;
149 class SC_DLLPUBLIC ScUnoHelpFunctions
152 static bool GetBoolProperty( const css::uno::Reference
< css::beans::XPropertySet
>& xProp
,
153 const OUString
& rName
, bool bDefault
= false );
154 static sal_Int16
GetShortProperty( const css::uno::Reference
< css::beans::XPropertySet
>& xProp
,
155 const OUString
& rName
, sal_Int16 nDefault
);
156 static sal_Int32
GetLongProperty( const css::uno::Reference
< css::beans::XPropertySet
>& xProp
,
157 const OUString
& rName
);
158 template<typename EnumT
>
159 static EnumT
GetEnumProperty( const css::uno::Reference
< css::beans::XPropertySet
>& xProp
,
160 const OUString
& rName
, EnumT nDefault
)
161 { return static_cast<EnumT
>(GetEnumPropertyImpl(xProp
, rName
, static_cast<sal_Int32
>(nDefault
))); }
163 static OUString
GetStringProperty(
164 const css::uno::Reference
<css::beans::XPropertySet
>& xProp
,
165 const OUString
& rName
, const OUString
& rDefault
);
167 static bool GetBoolFromAny( const css::uno::Any
& aAny
);
168 static sal_Int16
GetInt16FromAny( const css::uno::Any
& aAny
);
169 static sal_Int32
GetInt32FromAny( const css::uno::Any
& aAny
);
170 static sal_Int32
GetEnumFromAny( const css::uno::Any
& aAny
);
172 static void SetOptionalPropertyValue(
173 const css::uno::Reference
< css::beans::XPropertySet
>& rPropSet
,
174 const char* pPropName
, const css::uno::Any
& rVal
);
176 template<typename ValueType
>
177 static void SetOptionalPropertyValue(
178 const css::uno::Reference
< css::beans::XPropertySet
>& rPropSet
,
179 const char* pPropName
, const ValueType
& rVal
)
183 SetOptionalPropertyValue(rPropSet
, pPropName
, any
);
186 template<typename ValueType
>
187 static css::uno::Sequence
<ValueType
> VectorToSequence( const std::vector
<ValueType
>& rVector
)
190 return css::uno::Sequence
<ValueType
>();
192 return css::uno::Sequence
<ValueType
>(&rVector
[0], static_cast<sal_Int32
>(rVector
.size()));
195 static sal_Int32
GetEnumPropertyImpl( const css::uno::Reference
< css::beans::XPropertySet
>& xProp
,
196 const OUString
& rName
, sal_Int32 nDefault
);
199 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */