xref: /trunk/main/svx/source/unodraw/unohtabl.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/Hatch.hpp>
27cdf0e10cSrcweir #include <svl/itempool.hxx>
28cdf0e10cSrcweir #include <svl/itemset.hxx>
29cdf0e10cSrcweir #include "UnoNameItemTable.hxx"
30cdf0e10cSrcweir 
31cdf0e10cSrcweir #include <svx/xhatch.hxx>
32cdf0e10cSrcweir #include <svx/svdmodel.hxx>
33cdf0e10cSrcweir #include <svx/xdef.hxx>
34cdf0e10cSrcweir #include <svx/xflhtit.hxx>
35cdf0e10cSrcweir #include <svx/unomid.hxx>
36cdf0e10cSrcweir #include "svx/unofill.hxx"
37cdf0e10cSrcweir 
38cdf0e10cSrcweir using namespace ::com::sun::star;
39cdf0e10cSrcweir using namespace ::rtl;
40cdf0e10cSrcweir using namespace ::cppu;
41cdf0e10cSrcweir 
42cdf0e10cSrcweir class SvxUnoHatchTable : public SvxUnoNameItemTable
43cdf0e10cSrcweir {
44cdf0e10cSrcweir public:
45cdf0e10cSrcweir 	SvxUnoHatchTable( SdrModel* pModel ) throw();
46cdf0e10cSrcweir 	virtual	~SvxUnoHatchTable() throw();
47cdf0e10cSrcweir 
48cdf0e10cSrcweir 	virtual NameOrIndex* createItem() const throw();
49cdf0e10cSrcweir 
50cdf0e10cSrcweir     // XServiceInfo
51cdf0e10cSrcweir     virtual OUString SAL_CALL getImplementationName(  ) throw( uno::RuntimeException );
52cdf0e10cSrcweir     virtual uno::Sequence<  OUString > SAL_CALL getSupportedServiceNames(  ) throw( uno::RuntimeException);
53cdf0e10cSrcweir 
54cdf0e10cSrcweir 	// XElementAccess
55cdf0e10cSrcweir     virtual uno::Type SAL_CALL getElementType(  ) throw( uno::RuntimeException);
56cdf0e10cSrcweir };
57cdf0e10cSrcweir 
SvxUnoHatchTable(SdrModel * pModel)58cdf0e10cSrcweir SvxUnoHatchTable::SvxUnoHatchTable( SdrModel* pModel ) throw()
59cdf0e10cSrcweir : SvxUnoNameItemTable( pModel, XATTR_FILLHATCH, MID_FILLHATCH )
60cdf0e10cSrcweir {
61cdf0e10cSrcweir }
62cdf0e10cSrcweir 
~SvxUnoHatchTable()63cdf0e10cSrcweir SvxUnoHatchTable::~SvxUnoHatchTable() throw()
64cdf0e10cSrcweir {
65cdf0e10cSrcweir }
66cdf0e10cSrcweir 
getImplementationName()67cdf0e10cSrcweir OUString SAL_CALL SvxUnoHatchTable::getImplementationName() throw( uno::RuntimeException )
68cdf0e10cSrcweir {
69cdf0e10cSrcweir 	return OUString( RTL_CONSTASCII_USTRINGPARAM("SvxUnoHatchTable") );
70cdf0e10cSrcweir }
71cdf0e10cSrcweir 
getSupportedServiceNames()72cdf0e10cSrcweir uno::Sequence< OUString > SAL_CALL SvxUnoHatchTable::getSupportedServiceNames(  )
73cdf0e10cSrcweir 	throw( uno::RuntimeException )
74cdf0e10cSrcweir {
75cdf0e10cSrcweir     uno::Sequence< OUString > aSNS( 1 );
76cdf0e10cSrcweir     aSNS.getArray()[0] = OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.drawing.HatchTable" ));
77cdf0e10cSrcweir     return aSNS;
78cdf0e10cSrcweir }
79cdf0e10cSrcweir 
createItem() const80cdf0e10cSrcweir NameOrIndex* SvxUnoHatchTable::createItem() const throw()
81cdf0e10cSrcweir {
82cdf0e10cSrcweir 	return new XFillHatchItem();
83cdf0e10cSrcweir }
84cdf0e10cSrcweir 
85cdf0e10cSrcweir // XElementAccess
getElementType()86cdf0e10cSrcweir uno::Type SAL_CALL SvxUnoHatchTable::getElementType(  )
87cdf0e10cSrcweir 	throw( uno::RuntimeException )
88cdf0e10cSrcweir {
89cdf0e10cSrcweir 	return ::getCppuType((const struct drawing::Hatch*)0);
90cdf0e10cSrcweir }
91cdf0e10cSrcweir 
92cdf0e10cSrcweir /**
93cdf0e10cSrcweir  * Create a hatchtable
94cdf0e10cSrcweir  */
SvxUnoHatchTable_createInstance(SdrModel * pModel)95cdf0e10cSrcweir uno::Reference< uno::XInterface > SAL_CALL SvxUnoHatchTable_createInstance( SdrModel* pModel )
96cdf0e10cSrcweir {
97cdf0e10cSrcweir 	return *new SvxUnoHatchTable(pModel);
98cdf0e10cSrcweir }
99cdf0e10cSrcweir 
100cdf0e10cSrcweir 
101cdf0e10cSrcweir 
102