xref: /aoo42x/main/svx/source/unodraw/unobtabl.cxx (revision 70d3707a)
1f6e50924SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3f6e50924SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4f6e50924SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5f6e50924SAndrew Rist  * distributed with this work for additional information
6f6e50924SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7f6e50924SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8f6e50924SAndrew Rist  * "License"); you may not use this file except in compliance
9f6e50924SAndrew Rist  * with the License.  You may obtain a copy of the License at
10f6e50924SAndrew Rist  *
11f6e50924SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12f6e50924SAndrew Rist  *
13f6e50924SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14f6e50924SAndrew Rist  * software distributed under the License is distributed on an
15f6e50924SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16f6e50924SAndrew Rist  * KIND, either express or implied.  See the License for the
17f6e50924SAndrew Rist  * specific language governing permissions and limitations
18f6e50924SAndrew Rist  * under the License.
19f6e50924SAndrew Rist  *
20f6e50924SAndrew Rist  *************************************************************/
21f6e50924SAndrew Rist 
22f6e50924SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_svx.hxx"
26cdf0e10cSrcweir #include <svl/itempool.hxx>
27cdf0e10cSrcweir #include <vcl/cvtgrf.hxx>
28cdf0e10cSrcweir #include <svl/itemset.hxx>
29cdf0e10cSrcweir #include <svx/xit.hxx>
30cdf0e10cSrcweir #include "UnoNameItemTable.hxx"
31cdf0e10cSrcweir 
32cdf0e10cSrcweir #include <svx/xbtmpit.hxx>
33cdf0e10cSrcweir #include <svx/svdmodel.hxx>
34cdf0e10cSrcweir #include <svx/xflhtit.hxx>
35cdf0e10cSrcweir #include "svx/unoapi.hxx"
36cdf0e10cSrcweir #include <svx/unomid.hxx>
37cdf0e10cSrcweir #include <editeng/unoprnms.hxx>
38cdf0e10cSrcweir #include "svx/unofill.hxx"
39cdf0e10cSrcweir #include <editeng/memberids.hrc>
40cdf0e10cSrcweir 
41cdf0e10cSrcweir using namespace ::com::sun::star;
42cdf0e10cSrcweir using namespace ::rtl;
43cdf0e10cSrcweir using namespace ::cppu;
44cdf0e10cSrcweir 
45cdf0e10cSrcweir class SvxUnoBitmapTable : public SvxUnoNameItemTable
46cdf0e10cSrcweir {
47cdf0e10cSrcweir public:
48cdf0e10cSrcweir 	SvxUnoBitmapTable( SdrModel* pModel ) throw();
49cdf0e10cSrcweir 	virtual	~SvxUnoBitmapTable() throw();
50cdf0e10cSrcweir 
51cdf0e10cSrcweir 	virtual NameOrIndex* createItem() const throw();
52cdf0e10cSrcweir 	virtual bool isValid( const NameOrIndex* pItem ) const;
53cdf0e10cSrcweir 
54cdf0e10cSrcweir     // XServiceInfo
55cdf0e10cSrcweir     virtual OUString SAL_CALL getImplementationName(  ) throw( uno::RuntimeException );
56cdf0e10cSrcweir     virtual uno::Sequence<  OUString > SAL_CALL getSupportedServiceNames(  ) throw( uno::RuntimeException);
57cdf0e10cSrcweir 
58cdf0e10cSrcweir 	// XElementAccess
59cdf0e10cSrcweir     virtual uno::Type SAL_CALL getElementType(  ) throw( uno::RuntimeException);
60cdf0e10cSrcweir };
61cdf0e10cSrcweir 
SvxUnoBitmapTable(SdrModel * pModel)62cdf0e10cSrcweir SvxUnoBitmapTable::SvxUnoBitmapTable( SdrModel* pModel ) throw()
63cdf0e10cSrcweir : SvxUnoNameItemTable( pModel, XATTR_FILLBITMAP, MID_GRAFURL )
64cdf0e10cSrcweir {
65cdf0e10cSrcweir }
66cdf0e10cSrcweir 
~SvxUnoBitmapTable()67cdf0e10cSrcweir SvxUnoBitmapTable::~SvxUnoBitmapTable() throw()
68cdf0e10cSrcweir {
69cdf0e10cSrcweir }
70cdf0e10cSrcweir 
isValid(const NameOrIndex * pItem) const71cdf0e10cSrcweir bool SvxUnoBitmapTable::isValid( const NameOrIndex* pItem ) const
72cdf0e10cSrcweir {
73cdf0e10cSrcweir 	if( SvxUnoNameItemTable::isValid( pItem ) )
74cdf0e10cSrcweir 	{
75cdf0e10cSrcweir 		const XFillBitmapItem* pBitmapItem = dynamic_cast< const XFillBitmapItem* >( pItem );
76cdf0e10cSrcweir 		if( pBitmapItem )
77cdf0e10cSrcweir 		{
78*70d3707aSArmin Le Grand 			const Graphic& rGraphic = pBitmapItem->GetGraphicObject().GetGraphic();
79*70d3707aSArmin Le Grand 
80*70d3707aSArmin Le Grand             return rGraphic.GetSizeBytes() > 0;
81cdf0e10cSrcweir 		}
82cdf0e10cSrcweir 	}
83cdf0e10cSrcweir 
84cdf0e10cSrcweir 	return false;
85cdf0e10cSrcweir }
86cdf0e10cSrcweir 
getImplementationName()87cdf0e10cSrcweir OUString SAL_CALL SvxUnoBitmapTable::getImplementationName() throw( uno::RuntimeException )
88cdf0e10cSrcweir {
89cdf0e10cSrcweir 	return OUString( RTL_CONSTASCII_USTRINGPARAM("SvxUnoBitmapTable") );
90cdf0e10cSrcweir }
91cdf0e10cSrcweir 
getSupportedServiceNames()92cdf0e10cSrcweir uno::Sequence< OUString > SAL_CALL SvxUnoBitmapTable::getSupportedServiceNames(  )
93cdf0e10cSrcweir 	throw( uno::RuntimeException )
94cdf0e10cSrcweir {
95cdf0e10cSrcweir     uno::Sequence< OUString > aSNS( 1 );
96cdf0e10cSrcweir     aSNS.getArray()[0] = OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.drawing.BitmapTable" ));
97cdf0e10cSrcweir     return aSNS;
98cdf0e10cSrcweir }
99cdf0e10cSrcweir 
createItem() const100cdf0e10cSrcweir NameOrIndex* SvxUnoBitmapTable::createItem() const throw()
101cdf0e10cSrcweir {
102cdf0e10cSrcweir 	return new XFillBitmapItem();
103cdf0e10cSrcweir }
104cdf0e10cSrcweir 
105cdf0e10cSrcweir // XElementAccess
getElementType()106cdf0e10cSrcweir uno::Type SAL_CALL SvxUnoBitmapTable::getElementType(  )
107cdf0e10cSrcweir 	throw( uno::RuntimeException )
108cdf0e10cSrcweir {
109cdf0e10cSrcweir 	return ::getCppuType( (const ::rtl::OUString*)0 );
110cdf0e10cSrcweir }
111cdf0e10cSrcweir 
112cdf0e10cSrcweir /**
113cdf0e10cSrcweir  * Create a bitmaptable
114cdf0e10cSrcweir  */
SvxUnoBitmapTable_createInstance(SdrModel * pModel)115cdf0e10cSrcweir uno::Reference< uno::XInterface > SAL_CALL SvxUnoBitmapTable_createInstance( SdrModel* pModel )
116cdf0e10cSrcweir {
117cdf0e10cSrcweir 	return *new SvxUnoBitmapTable(pModel);
118cdf0e10cSrcweir }
119cdf0e10cSrcweir 
120