Bump for 3.6-28
[LibreOffice.git] / offapi / com / sun / star / chart2 / XChartShapeContainer.idl
blob8415171a5320e0f303f6672736247dbd5ff15b08
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 #ifndef com_sun_star_chart2_XChartShapeContainer_idl
3 #define com_sun_star_chart2_XChartShapeContainer_idl
5 #include <com/sun/star/uno/XInterface.idl>
6 #include <com/sun/star/drawing/XShape.idl>
8 //=============================================================================
10 module com { module sun { module star { module chart2 {
12 //=============================================================================
14 interface XChartShapeContainer : ::com::sun::star::uno::XInterface
16 /** a renderer creates ChartShapes and adds it to this container
18 void addShape( [in] com::sun::star::drawing::XShape xShape );
20 /** a renderer can remove ChartShapes from this container (e.g. if the visible range has changed)
22 void removeShape( [in] com::sun::star::drawing::XShape xShape );
23 com::sun::star::drawing::XShape getShape();
25 //... provide something for creation of Transformation ...
28 //=============================================================================
30 }; }; }; };
32 #endif
34 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */