xref: /aoo42x/main/svx/inc/svx/xlnstit.hxx (revision 97e8a929)
13334a7e6SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
33334a7e6SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
43334a7e6SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
53334a7e6SAndrew Rist  * distributed with this work for additional information
63334a7e6SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
73334a7e6SAndrew Rist  * to you under the Apache License, Version 2.0 (the
83334a7e6SAndrew Rist  * "License"); you may not use this file except in compliance
93334a7e6SAndrew Rist  * with the License.  You may obtain a copy of the License at
103334a7e6SAndrew Rist  *
113334a7e6SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
123334a7e6SAndrew Rist  *
133334a7e6SAndrew Rist  * Unless required by applicable law or agreed to in writing,
143334a7e6SAndrew Rist  * software distributed under the License is distributed on an
153334a7e6SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
163334a7e6SAndrew Rist  * KIND, either express or implied.  See the License for the
173334a7e6SAndrew Rist  * specific language governing permissions and limitations
183334a7e6SAndrew Rist  * under the License.
193334a7e6SAndrew Rist  *
203334a7e6SAndrew Rist  *************************************************************/
213334a7e6SAndrew Rist 
223334a7e6SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef _SVX_XLNSTIT_HXX
25cdf0e10cSrcweir #define _SVX_XLNSTIT_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include <svx/xit.hxx>
28cdf0e10cSrcweir #include "svx/svxdllapi.h"
29cdf0e10cSrcweir #include <basegfx/polygon/b2dpolypolygon.hxx>
30cdf0e10cSrcweir 
31cdf0e10cSrcweir class SdrModel;
32cdf0e10cSrcweir 
33cdf0e10cSrcweir //------------------------
34cdf0e10cSrcweir // class XLineStartItem
35cdf0e10cSrcweir //------------------------
36cdf0e10cSrcweir class SVX_DLLPUBLIC XLineStartItem : public NameOrIndex
37cdf0e10cSrcweir {
38cdf0e10cSrcweir 	basegfx::B2DPolyPolygon		maPolyPolygon;
39cdf0e10cSrcweir 
40cdf0e10cSrcweir public:
41cdf0e10cSrcweir 			TYPEINFO();
42cdf0e10cSrcweir 			XLineStartItem(sal_Int32 nIndex = -1);
43cdf0e10cSrcweir 			XLineStartItem(const String& rName, const basegfx::B2DPolyPolygon& rPolyPolygon);
44cdf0e10cSrcweir 			XLineStartItem(SfxItemPool* pPool, const basegfx::B2DPolyPolygon& rPolyPolygon);
45cdf0e10cSrcweir 			XLineStartItem(SfxItemPool* pPool );
46cdf0e10cSrcweir 			XLineStartItem(const XLineStartItem& rItem);
47cdf0e10cSrcweir 			XLineStartItem(SvStream& rIn);
48cdf0e10cSrcweir 
49cdf0e10cSrcweir 	virtual int             operator==(const SfxPoolItem& rItem) const;
50cdf0e10cSrcweir 	virtual SfxPoolItem*    Clone(SfxItemPool* pPool = 0) const;
51cdf0e10cSrcweir 	virtual SfxPoolItem*    Create(SvStream& rIn, sal_uInt16 nVer) const;
52cdf0e10cSrcweir 	virtual SvStream&       Store(SvStream& rOut, sal_uInt16 nItemVersion ) const;
53cdf0e10cSrcweir 
54cdf0e10cSrcweir 	virtual	sal_Bool        	 QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const;
55cdf0e10cSrcweir 	virtual	sal_Bool			 PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 );
56cdf0e10cSrcweir 
57cdf0e10cSrcweir 	virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres,
58cdf0e10cSrcweir 									SfxMapUnit eCoreMetric,
59cdf0e10cSrcweir 									SfxMapUnit ePresMetric,
60cdf0e10cSrcweir                                     String &rText, const IntlWrapper * = 0 ) const;
61cdf0e10cSrcweir 
62*97e8a929SArmin Le Grand 	basegfx::B2DPolyPolygon GetLineStartValue(const XLineEndList* pTable = 0) const;
SetLineStartValue(const basegfx::B2DPolyPolygon & rPolyPolygon)63cdf0e10cSrcweir 	void SetLineStartValue(const basegfx::B2DPolyPolygon& rPolyPolygon) { maPolyPolygon = rPolyPolygon; Detach(); }
64cdf0e10cSrcweir 
65cdf0e10cSrcweir 	XLineStartItem* checkForUniqueItem( SdrModel* pModel ) const;
66cdf0e10cSrcweir };
67cdf0e10cSrcweir 
68cdf0e10cSrcweir #endif
69