summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/chart2/XScaling.idl
blob: cf78fafc5ecbf7c5f96caafcf3b432a28accd5f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#ifndef com_sun_star_chart2_XScaling_idl
#define com_sun_star_chart2_XScaling_idl

#include <com/sun/star/uno/XInterface.idl>

//=============================================================================

module com {  module sun {  module star {  module chart2 {

//=============================================================================

interface XScaling : ::com::sun::star::uno::XInterface
{
    /** needs to keep relative ordering
    */
    double doScaling([in] double value);
    com::sun::star::chart2::XScaling getInverseScaling();

    //maybe provide correction for Min/Max
    //double getMinimum(); ?adjust <-> min/max may not exist
    //double getMaximum();

    //... or better/additionally?: provide default values for Min&Max
};

//=============================================================================

}; }; }; };

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */