1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27#ifndef com_sun_star_chart_TimeIncrement_idl
28#define com_sun_star_chart_TimeIncrement_idl
29
30#include <com/sun/star/chart/TimeInterval.idl>
31
32//=============================================================================
33
34module com {  module sun {  module star {  module chart {
35
36//=============================================================================
37
38/** A TimeIncrement describes how tickmarks are positioned on the scale of a date-time axis.
39@since OOo 3.4
40*/
41published struct TimeIncrement
42{
43    /** if the any contains a struct of type <type>::com::sun::star::chart::TimeInterval</type>
44        this is used as a fixed distance value for the major tickmarks.  Otherwise, if the any is empty or contains an
45        incompatible type, the distance between major tickmarks is calculated automatically by the application.
46     */
47    any     MajorTimeInterval;
48
49    /** if the any contains a struct of type <type>::com::sun::star::chart::TimeInterval</type>
50        this is used as a fixed distance value for the minor tickmarks.  Otherwise, if the any is empty or contains an
51        incompatible type, the distance between minor tickmarks is calculated automatically by the application.
52     */
53    any     MinorTimeInterval;
54
55    /** if the any contains a constant of type <type>::com::sun::star::chart::TimeUnit</type>
56        this is the smallest time unit that is displayed on the date-time axis.
57        Otherwise, if the any is empty or contains an incompatible type,
58        the resolution is choosen automatically by the application.
59     */
60    any     TimeResolution;
61};
62
63//=============================================================================
64
65}; }; }; };
66
67#endif
68