Update ooo320-m1
[ooovba.git] / sd / source / ui / animations / STLPropertySet.hxx
blobee11d06904fe603fc6995a92266f70be5388e7c0
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: STLPropertySet.hxx,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _SD_STLPROPERTYSET_HXX
32 #define _SD_STLPROPERTYSET_HXX
34 #include <com/sun/star/beans/PropertyValue.hpp>
36 #ifndef _UTL_STLTYPES_HXX_
37 #include <comphelper/stl_types.hxx>
38 #endif
40 #include <list>
41 #include <map>
43 namespace sd
46 const sal_Int32 STLPropertyState_DEFAULT = 0;
47 const sal_Int32 STLPropertyState_DIRECT = 1;
48 const sal_Int32 STLPropertyState_AMBIGUOUS = 3;
50 struct STLPropertyMapEntry
52 ::com::sun::star::uno::Any maValue;
53 sal_Int32 mnState;
55 STLPropertyMapEntry()
56 : mnState( STLPropertyState_AMBIGUOUS ) {}
57 STLPropertyMapEntry( ::com::sun::star::uno::Any aValue, sal_Int32 nState = STLPropertyState_DEFAULT )
58 : maValue( aValue ), mnState( nState ) {}
62 typedef std::map<sal_Int32, STLPropertyMapEntry > PropertyMap;
63 typedef PropertyMap::iterator PropertyMapIter;
64 typedef PropertyMap::const_iterator PropertyMapConstIter;
66 class STLPropertySet
68 public:
69 STLPropertySet();
70 ~STLPropertySet();
72 void setPropertyDefaultValue( sal_Int32 nHandle, const com::sun::star::uno::Any& rValue );
73 void setPropertyValue( sal_Int32 nHandle, const com::sun::star::uno::Any& rValue, sal_Int32 nState = STLPropertyState_DIRECT );
74 ::com::sun::star::uno::Any getPropertyValue( sal_Int32 nHandle ) const;
76 sal_Int32 getPropertyState( sal_Int32 nHandle ) const;
77 void setPropertyState( sal_Int32 nHandle, sal_Int32 nState );
79 private:
80 bool findProperty( sal_Int32 nHandle, PropertyMapIter& rIter );
81 bool findProperty( sal_Int32 nHandle, PropertyMapConstIter& rIter ) const;
83 private:
84 PropertyMap maPropertyMap;
89 #endif // _SD_STLPROPERTYSET_HXX