summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/chart2/XScaling.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/chart2/XScaling.idl')
-rw-r--r--offapi/com/sun/star/chart2/XScaling.idl32
1 files changed, 32 insertions, 0 deletions
diff --git a/offapi/com/sun/star/chart2/XScaling.idl b/offapi/com/sun/star/chart2/XScaling.idl
new file mode 100644
index 000000000000..569f29ff2128
--- /dev/null
+++ b/offapi/com/sun/star/chart2/XScaling.idl
@@ -0,0 +1,32 @@
+#ifndef com_sun_star_chart2_XScaling_idl
+#define com_sun_star_chart2_XScaling_idl
+
+#ifndef __com_sun_star_uno_XInterface_idl__
+#include <com/sun/star/uno/XInterface.idl>
+#endif
+
+//=============================================================================
+
+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