xref: /AOO41X/main/reportdesign/source/core/inc/FixedLine.hxx (revision 9ee13d1351a4b51ae8bed78e67629c7bd5f4481e) !
1*9ee13d13SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*9ee13d13SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*9ee13d13SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*9ee13d13SAndrew Rist  * distributed with this work for additional information
6*9ee13d13SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*9ee13d13SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*9ee13d13SAndrew Rist  * "License"); you may not use this file except in compliance
9*9ee13d13SAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11*9ee13d13SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13*9ee13d13SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*9ee13d13SAndrew Rist  * software distributed under the License is distributed on an
15*9ee13d13SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*9ee13d13SAndrew Rist  * KIND, either express or implied.  See the License for the
17*9ee13d13SAndrew Rist  * specific language governing permissions and limitations
18*9ee13d13SAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20*9ee13d13SAndrew Rist  *************************************************************/
21*9ee13d13SAndrew Rist 
22*9ee13d13SAndrew Rist 
23cdf0e10cSrcweir #ifndef RPT_FIXEDLINE_HXX
24cdf0e10cSrcweir #define RPT_FIXEDLINE_HXX
25cdf0e10cSrcweir 
26cdf0e10cSrcweir #include <cppuhelper/propertysetmixin.hxx>
27cdf0e10cSrcweir #include <com/sun/star/report/XFixedLine.hpp>
28cdf0e10cSrcweir #include "ReportControlModel.hxx"
29cdf0e10cSrcweir #include <cppuhelper/compbase2.hxx>
30cdf0e10cSrcweir #include <comphelper/broadcasthelper.hxx>
31cdf0e10cSrcweir #include <com/sun/star/lang/XServiceInfo.hpp>
32cdf0e10cSrcweir #include "ReportHelperDefines.hxx"
33cdf0e10cSrcweir 
34cdf0e10cSrcweir 
35cdf0e10cSrcweir namespace reportdesign
36cdf0e10cSrcweir {
37cdf0e10cSrcweir 	typedef ::cppu::PropertySetMixin<		 com::sun::star::report::XFixedLine	> FixedLinePropertySet;
38cdf0e10cSrcweir 	typedef ::cppu::WeakComponentImplHelper2<    com::sun::star::report::XFixedLine
39cdf0e10cSrcweir 												,com::sun::star::lang::XServiceInfo	> FixedLineBase;
40cdf0e10cSrcweir 
41cdf0e10cSrcweir     /** \class OFixedLine Defines the implementation of a \interface com:::sun::star::report::XFixedLine
42cdf0e10cSrcweir 	 * \ingroup reportdesign_api
43cdf0e10cSrcweir 	 *
44cdf0e10cSrcweir 	 */
45cdf0e10cSrcweir 	class OFixedLine :	public comphelper::OBaseMutex,
46cdf0e10cSrcweir 							public FixedLineBase,
47cdf0e10cSrcweir 							public FixedLinePropertySet
48cdf0e10cSrcweir 	{
49cdf0e10cSrcweir         friend class OShapeHelper;
50cdf0e10cSrcweir 		OReportControlModel		m_aProps;
51cdf0e10cSrcweir 		::com::sun::star::drawing::LineStyle	m_LineStyle;
52cdf0e10cSrcweir 		::com::sun::star::drawing::LineDash		m_LineDash;
53cdf0e10cSrcweir 		sal_Int32				m_nOrientation;
54cdf0e10cSrcweir 		::sal_Int32				m_LineColor;
55cdf0e10cSrcweir 		::sal_Int16				m_LineTransparence;
56cdf0e10cSrcweir 		::sal_Int32				m_LineWidth;
57cdf0e10cSrcweir 
58cdf0e10cSrcweir 	private:
59cdf0e10cSrcweir 		OFixedLine(const OFixedLine&);
60cdf0e10cSrcweir 		OFixedLine& operator=(const OFixedLine&);
61cdf0e10cSrcweir 
set(const::rtl::OUString & _sProperty,const T & _Value,T & _member)62cdf0e10cSrcweir 		template <typename T> void set(	 const ::rtl::OUString& _sProperty
63cdf0e10cSrcweir 										,const T& _Value
64cdf0e10cSrcweir 										,T& _member)
65cdf0e10cSrcweir 		{
66cdf0e10cSrcweir 			BoundListeners l;
67cdf0e10cSrcweir 			{
68cdf0e10cSrcweir 				::osl::MutexGuard aGuard(m_aMutex);
69cdf0e10cSrcweir 				prepareSet(_sProperty, ::com::sun::star::uno::makeAny(_member), ::com::sun::star::uno::makeAny(_Value), &l);
70cdf0e10cSrcweir 				_member = _Value;
71cdf0e10cSrcweir 			}
72cdf0e10cSrcweir 			l.notify();
73cdf0e10cSrcweir 		}
74cdf0e10cSrcweir         void checkIndex(sal_Int32 _nIndex);
75cdf0e10cSrcweir 	protected:
76cdf0e10cSrcweir 		virtual ~OFixedLine();
77cdf0e10cSrcweir 	public:
78cdf0e10cSrcweir 		explicit OFixedLine(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & _xContext);
79cdf0e10cSrcweir         explicit OFixedLine(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & _xContext
80cdf0e10cSrcweir                             ,const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > & _xFactory
81cdf0e10cSrcweir                             ,::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >& _xShape
82cdf0e10cSrcweir                             ,sal_Int32 _nOrientation);
83cdf0e10cSrcweir 
84cdf0e10cSrcweir 		DECLARE_XINTERFACE( )
85cdf0e10cSrcweir 		// ::com::sun::star::lang::XServiceInfo
86cdf0e10cSrcweir 		virtual ::sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
87cdf0e10cSrcweir 		virtual ::rtl::OUString SAL_CALL getImplementationName(  ) throw(::com::sun::star::uno::RuntimeException);
88cdf0e10cSrcweir 		virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames(  ) throw(::com::sun::star::uno::RuntimeException);
89cdf0e10cSrcweir 
90cdf0e10cSrcweir 		static ::com::sun::star::uno::Sequence< ::rtl::OUString > getSupportedServiceNames_Static(void) throw( ::com::sun::star::uno::RuntimeException );
91cdf0e10cSrcweir 		static ::rtl::OUString getImplementationName_Static(void) throw( ::com::sun::star::uno::RuntimeException );
92cdf0e10cSrcweir         static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL
93cdf0e10cSrcweir 			create(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & xContext);
94cdf0e10cSrcweir 		// com::sun::star::beans::XPropertySet
95cdf0e10cSrcweir 		virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo(  ) throw(::com::sun::star::uno::RuntimeException);
96cdf0e10cSrcweir 		virtual void SAL_CALL setPropertyValue( const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
97cdf0e10cSrcweir 		virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue( const ::rtl::OUString& PropertyName ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
98cdf0e10cSrcweir 		virtual void SAL_CALL addPropertyChangeListener( const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& xListener ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
99cdf0e10cSrcweir 		virtual void SAL_CALL removePropertyChangeListener( const ::rtl::OUString& aPropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& aListener ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
100cdf0e10cSrcweir 		virtual void SAL_CALL addVetoableChangeListener( const ::rtl::OUString& PropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& aListener ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
101cdf0e10cSrcweir 		virtual void SAL_CALL removeVetoableChangeListener( const ::rtl::OUString& PropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& aListener ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
102cdf0e10cSrcweir 
103cdf0e10cSrcweir 		// XReportComponent
104cdf0e10cSrcweir 		REPORTCOMPONENT_HEADER()
105cdf0e10cSrcweir 
106cdf0e10cSrcweir         // XShape
107cdf0e10cSrcweir         SHAPE_HEADER()
108cdf0e10cSrcweir 
109cdf0e10cSrcweir         // XShapeDescriptor
110cdf0e10cSrcweir         virtual ::rtl::OUString SAL_CALL getShapeType(  ) throw (::com::sun::star::uno::RuntimeException);
111cdf0e10cSrcweir 
112cdf0e10cSrcweir 		// XReportControlModel
113cdf0e10cSrcweir         REPORTCONTROLMODEL_HEADER()
114cdf0e10cSrcweir 
115cdf0e10cSrcweir 		// XFixedLine
116cdf0e10cSrcweir 		virtual ::sal_Int32 SAL_CALL getOrientation() throw (::com::sun::star::beans::UnknownPropertyException,::com::sun::star::uno::RuntimeException);
117cdf0e10cSrcweir 		virtual void SAL_CALL setOrientation( ::sal_Int32 _orientation ) throw (::com::sun::star::beans::UnknownPropertyException,::com::sun::star::uno::RuntimeException);
118cdf0e10cSrcweir 		virtual ::com::sun::star::drawing::LineStyle SAL_CALL getLineStyle() throw (::com::sun::star::uno::RuntimeException);
119cdf0e10cSrcweir 		virtual void SAL_CALL setLineStyle( ::com::sun::star::drawing::LineStyle _linestyle ) throw (::com::sun::star::uno::RuntimeException);
120cdf0e10cSrcweir 		virtual ::com::sun::star::drawing::LineDash SAL_CALL getLineDash() throw (::com::sun::star::uno::RuntimeException);
121cdf0e10cSrcweir 		virtual void SAL_CALL setLineDash( const ::com::sun::star::drawing::LineDash& _linedash ) throw (::com::sun::star::uno::RuntimeException);
122cdf0e10cSrcweir 		virtual ::sal_Int32 SAL_CALL getLineColor() throw (::com::sun::star::uno::RuntimeException);
123cdf0e10cSrcweir 		virtual void SAL_CALL setLineColor( ::sal_Int32 _linecolor ) throw (::com::sun::star::uno::RuntimeException);
124cdf0e10cSrcweir 		virtual ::sal_Int16 SAL_CALL getLineTransparence() throw (::com::sun::star::uno::RuntimeException);
125cdf0e10cSrcweir 		virtual void SAL_CALL setLineTransparence( ::sal_Int16 _linetransparence ) throw (::com::sun::star::uno::RuntimeException);
126cdf0e10cSrcweir 		virtual ::sal_Int32 SAL_CALL getLineWidth() throw (::com::sun::star::uno::RuntimeException);
127cdf0e10cSrcweir 		virtual void SAL_CALL setLineWidth( ::sal_Int32 _linewidth ) throw (::com::sun::star::uno::RuntimeException);
128cdf0e10cSrcweir 
129cdf0e10cSrcweir         // ::com::sun::star::report::XReportControlFormat
130cdf0e10cSrcweir         REPORTCONTROLFORMAT_HEADER()
131cdf0e10cSrcweir 
132cdf0e10cSrcweir 		// XCloneable
133cdf0e10cSrcweir 		virtual ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable > SAL_CALL createClone(  ) throw (::com::sun::star::uno::RuntimeException);
134cdf0e10cSrcweir 
135cdf0e10cSrcweir 		// XComponent
136cdf0e10cSrcweir 		virtual void SAL_CALL dispose() throw(::com::sun::star::uno::RuntimeException);
addEventListener(const::com::sun::star::uno::Reference<::com::sun::star::lang::XEventListener> & aListener)137cdf0e10cSrcweir 		virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & aListener) throw(::com::sun::star::uno::RuntimeException)
138cdf0e10cSrcweir 		{
139cdf0e10cSrcweir 			cppu::WeakComponentImplHelperBase::addEventListener(aListener);
140cdf0e10cSrcweir 		}
removeEventListener(const::com::sun::star::uno::Reference<::com::sun::star::lang::XEventListener> & aListener)141cdf0e10cSrcweir 		virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & aListener) throw(::com::sun::star::uno::RuntimeException)
142cdf0e10cSrcweir 		{
143cdf0e10cSrcweir 			cppu::WeakComponentImplHelperBase::removeEventListener(aListener);
144cdf0e10cSrcweir 		}
145cdf0e10cSrcweir 
146cdf0e10cSrcweir 		// XChild
147cdf0e10cSrcweir 		virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL getParent(  ) throw (::com::sun::star::uno::RuntimeException);
148cdf0e10cSrcweir 		virtual void SAL_CALL setParent( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& Parent ) throw (::com::sun::star::lang::NoSupportException, ::com::sun::star::uno::RuntimeException);
149cdf0e10cSrcweir 
150cdf0e10cSrcweir         // XContainer
151cdf0e10cSrcweir 		virtual void SAL_CALL addContainerListener( const ::com::sun::star::uno::Reference< ::com::sun::star::container::XContainerListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
152cdf0e10cSrcweir 		virtual void SAL_CALL removeContainerListener( const ::com::sun::star::uno::Reference< ::com::sun::star::container::XContainerListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
153cdf0e10cSrcweir 
154cdf0e10cSrcweir 		// XElementAccess
155cdf0e10cSrcweir 		virtual ::com::sun::star::uno::Type SAL_CALL getElementType(  ) throw (::com::sun::star::uno::RuntimeException);
156cdf0e10cSrcweir 		virtual ::sal_Bool SAL_CALL hasElements(  ) throw (::com::sun::star::uno::RuntimeException);
157cdf0e10cSrcweir 
158cdf0e10cSrcweir 		// XIndexReplace
159cdf0e10cSrcweir 		virtual void SAL_CALL replaceByIndex( ::sal_Int32 Index, const ::com::sun::star::uno::Any& Element ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
160cdf0e10cSrcweir 
161cdf0e10cSrcweir 		// XIndexContainer
162cdf0e10cSrcweir 		virtual void SAL_CALL insertByIndex( ::sal_Int32 Index, const ::com::sun::star::uno::Any& Element ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
163cdf0e10cSrcweir 		virtual void SAL_CALL removeByIndex( ::sal_Int32 Index ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
164cdf0e10cSrcweir 
165cdf0e10cSrcweir 		// XIndexAccess
166cdf0e10cSrcweir 		virtual ::sal_Int32 SAL_CALL getCount(  ) throw (::com::sun::star::uno::RuntimeException);
167cdf0e10cSrcweir 		virtual ::com::sun::star::uno::Any SAL_CALL getByIndex( ::sal_Int32 Index ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
168cdf0e10cSrcweir 	};
169cdf0e10cSrcweir }
170cdf0e10cSrcweir #endif //RPT_FIXEDLINE_HXX
171cdf0e10cSrcweir 
172