f7141ba275
2005/10/07 11:40:48 bm 1.1.4.12: RESYNC: (1.1-1.2); FILE MERGED 2005/07/14 14:42:44 iha 1.1.4.11: cleanup Fillproperties 2005/07/14 12:03:41 iha 1.1.4.10: use identical fast-property-IDs for lineproperties everywhere 2005/07/12 12:57:05 bm 1.1.4.9: use named properties for gradients etc. in chart model 2005/07/04 08:38:32 iha 1.1.4.8: offer stock properties 'Volume' and 'UpDown' 2005/06/22 08:14:24 iha 1.1.4.7: support property DataCaption at diagram, series and data point 2005/06/17 20:13:24 iha 1.1.4.6: support spline propeties 2005/05/09 16:32:47 iha 1.1.4.5: added support for property Symboltype 2005/04/22 18:50:08 iha 1.1.4.4: old api support - statistic properties 2005/04/19 17:23:16 iha 1.1.4.3: improved old api support (introduced wrappedpropertyset ...) 2004/06/04 08:05:53 bm 1.1.4.2: named fill and line properties 2004/05/07 13:45:34 bm 1.1.4.1: +SceneProperties
63 lines
2.6 KiB
C++
63 lines
2.6 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: FastPropertyIdRanges.hxx,v $
|
|
*
|
|
* $Revision: 1.3 $
|
|
*
|
|
* last change: $Author: vg $ $Date: 2007-05-22 18:16:32 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
#ifndef CHART_FASTPROPERTYIDRANGES_HXX
|
|
#define CHART_FASTPROPERTYIDRANGES_HXX
|
|
|
|
namespace chart
|
|
{
|
|
|
|
enum FastPropertyIdRanges
|
|
{
|
|
FAST_PROPERTY_ID_START = 10000,
|
|
FAST_PROPERTY_ID_START_DATA_SERIES = FAST_PROPERTY_ID_START + 1000,
|
|
FAST_PROPERTY_ID_START_DATA_POINT = FAST_PROPERTY_ID_START + 2000,
|
|
FAST_PROPERTY_ID_START_CHAR_PROP = FAST_PROPERTY_ID_START + 3000,
|
|
FAST_PROPERTY_ID_START_LINE_PROP = FAST_PROPERTY_ID_START + 4000,
|
|
FAST_PROPERTY_ID_START_FILL_PROP = FAST_PROPERTY_ID_START + 5000,
|
|
FAST_PROPERTY_ID_START_USERDEF_PROP= FAST_PROPERTY_ID_START + 6000,
|
|
FAST_PROPERTY_ID_START_SCENE_PROP = FAST_PROPERTY_ID_START + 7000,
|
|
// FAST_PROPERTY_ID_START_NAMED_FILL_PROP = FAST_PROPERTY_ID_START + 8000,
|
|
// FAST_PROPERTY_ID_START_NAMED_LINE_PROP = FAST_PROPERTY_ID_START + 9000,
|
|
FAST_PROPERTY_ID_START_CHART_STATISTIC_PROP = FAST_PROPERTY_ID_START + 12000,
|
|
FAST_PROPERTY_ID_START_CHART_SYMBOL_PROP = FAST_PROPERTY_ID_START + 13000,
|
|
FAST_PROPERTY_ID_START_CHART_DATACAPTION_PROP = FAST_PROPERTY_ID_START + 14000,
|
|
FAST_PROPERTY_ID_START_CHART_SPLINE_PROP = FAST_PROPERTY_ID_START + 15000,
|
|
FAST_PROPERTY_ID_START_CHART_STOCK_PROP = FAST_PROPERTY_ID_START + 16000
|
|
};
|
|
|
|
} // namespace chart
|
|
|
|
// CHART_FASTPROPERTYIDRANGES_HXX
|
|
#endif
|