xref: /aoo42x/main/svx/source/unodraw/unodtabl.cxx (revision f6e50924)
1*f6e50924SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*f6e50924SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*f6e50924SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*f6e50924SAndrew Rist  * distributed with this work for additional information
6*f6e50924SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*f6e50924SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*f6e50924SAndrew Rist  * "License"); you may not use this file except in compliance
9*f6e50924SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*f6e50924SAndrew Rist  *
11*f6e50924SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*f6e50924SAndrew Rist  *
13*f6e50924SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*f6e50924SAndrew Rist  * software distributed under the License is distributed on an
15*f6e50924SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*f6e50924SAndrew Rist  * KIND, either express or implied.  See the License for the
17*f6e50924SAndrew Rist  * specific language governing permissions and limitations
18*f6e50924SAndrew Rist  * under the License.
19*f6e50924SAndrew Rist  *
20*f6e50924SAndrew Rist  *************************************************************/
21*f6e50924SAndrew Rist 
22*f6e50924SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_svx.hxx"
26cdf0e10cSrcweir #include <com/sun/star/drawing/LineDash.hpp>
27cdf0e10cSrcweir #include <svl/itempool.hxx>
28cdf0e10cSrcweir #include <svl/itemset.hxx>
29cdf0e10cSrcweir 
30cdf0e10cSrcweir #include <vector>
31cdf0e10cSrcweir #include "UnoNameItemTable.hxx"
32cdf0e10cSrcweir #include <svx/xlndsit.hxx>
33cdf0e10cSrcweir #include <svx/unomid.hxx>
34cdf0e10cSrcweir 
35cdf0e10cSrcweir #include <svx/xdash.hxx>
36cdf0e10cSrcweir #include <svx/svdmodel.hxx>
37cdf0e10cSrcweir #include "svx/unofill.hxx"
38cdf0e10cSrcweir 
39cdf0e10cSrcweir using namespace ::com::sun::star;
40cdf0e10cSrcweir using namespace ::rtl;
41cdf0e10cSrcweir using namespace ::cppu;
42cdf0e10cSrcweir 
43cdf0e10cSrcweir class SvxUnoDashTable : public SvxUnoNameItemTable
44cdf0e10cSrcweir {
45cdf0e10cSrcweir public:
46cdf0e10cSrcweir 	SvxUnoDashTable( SdrModel* pModel ) throw();
47cdf0e10cSrcweir 	virtual	~SvxUnoDashTable() throw();
48cdf0e10cSrcweir 
49cdf0e10cSrcweir 	virtual NameOrIndex* createItem() const throw();
50cdf0e10cSrcweir 
51cdf0e10cSrcweir     // XServiceInfo
52cdf0e10cSrcweir     virtual OUString SAL_CALL getImplementationName(  ) throw( uno::RuntimeException );
53cdf0e10cSrcweir     virtual uno::Sequence<  OUString > SAL_CALL getSupportedServiceNames(  ) throw( uno::RuntimeException);
54cdf0e10cSrcweir 
55cdf0e10cSrcweir 	// XElementAccess
56cdf0e10cSrcweir     virtual uno::Type SAL_CALL getElementType(  ) throw( uno::RuntimeException);
57cdf0e10cSrcweir };
58cdf0e10cSrcweir 
SvxUnoDashTable(SdrModel * pModel)59cdf0e10cSrcweir SvxUnoDashTable::SvxUnoDashTable( SdrModel* pModel ) throw()
60cdf0e10cSrcweir : SvxUnoNameItemTable( pModel, XATTR_LINEDASH, MID_LINEDASH )
61cdf0e10cSrcweir {
62cdf0e10cSrcweir }
63cdf0e10cSrcweir 
~SvxUnoDashTable()64cdf0e10cSrcweir SvxUnoDashTable::~SvxUnoDashTable() throw()
65cdf0e10cSrcweir {
66cdf0e10cSrcweir }
67cdf0e10cSrcweir 
getImplementationName()68cdf0e10cSrcweir OUString SAL_CALL SvxUnoDashTable::getImplementationName() throw( uno::RuntimeException )
69cdf0e10cSrcweir {
70cdf0e10cSrcweir 	return OUString( RTL_CONSTASCII_USTRINGPARAM("SvxUnoDashTable") );
71cdf0e10cSrcweir }
72cdf0e10cSrcweir 
getSupportedServiceNames()73cdf0e10cSrcweir uno::Sequence< OUString > SAL_CALL SvxUnoDashTable::getSupportedServiceNames(  )
74cdf0e10cSrcweir 	throw( uno::RuntimeException )
75cdf0e10cSrcweir {
76cdf0e10cSrcweir     uno::Sequence< OUString > aSNS( 1 );
77cdf0e10cSrcweir     aSNS.getArray()[0] = OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.drawing.DashTable" ));
78cdf0e10cSrcweir     return aSNS;
79cdf0e10cSrcweir }
80cdf0e10cSrcweir 
createItem() const81cdf0e10cSrcweir NameOrIndex* SvxUnoDashTable::createItem() const throw()
82cdf0e10cSrcweir {
83cdf0e10cSrcweir 	XLineDashItem* pNewItem = new XLineDashItem();
84cdf0e10cSrcweir 	pNewItem->SetWhich( XATTR_LINEDASH ); // set which id for pooling
85cdf0e10cSrcweir 	return pNewItem;
86cdf0e10cSrcweir }
87cdf0e10cSrcweir 
88cdf0e10cSrcweir // XElementAccess
getElementType()89cdf0e10cSrcweir uno::Type SAL_CALL SvxUnoDashTable::getElementType(  )
90cdf0e10cSrcweir 	throw( uno::RuntimeException )
91cdf0e10cSrcweir {
92cdf0e10cSrcweir 	return ::getCppuType((const struct drawing::LineDash*)0);
93cdf0e10cSrcweir }
94cdf0e10cSrcweir 
95cdf0e10cSrcweir /**
96cdf0e10cSrcweir  * Create a gradienttable
97cdf0e10cSrcweir  */
SvxUnoDashTable_createInstance(SdrModel * pModel)98cdf0e10cSrcweir uno::Reference< uno::XInterface > SAL_CALL SvxUnoDashTable_createInstance( SdrModel* pModel )
99cdf0e10cSrcweir {
100cdf0e10cSrcweir 	return *new SvxUnoDashTable(pModel);
101cdf0e10cSrcweir }
102cdf0e10cSrcweir 
103cdf0e10cSrcweir 
104cdf0e10cSrcweir 
105