1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: STLPropertySet.hxx,v $
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>
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
;
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
;
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
);
80 bool findProperty( sal_Int32 nHandle
, PropertyMapIter
& rIter
);
81 bool findProperty( sal_Int32 nHandle
, PropertyMapConstIter
& rIter
) const;
84 PropertyMap maPropertyMap
;
89 #endif // _SD_STLPROPERTYSET_HXX