blob: dc0dca6c34ce76d573fcc969a15dba9ed4d776c7 [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef com_sun_star_chart2_XChartShape_idl
#define com_sun_star_chart2_XChartShape_idl
#ifndef __com_sun_star_uno_XInterface_idl__
#include <com/sun/star/uno/XInterface.idl>
#endif
#ifndef com_sun_star_chart2_XTransformation_idl
#include <com/sun/star/chart2/XTransformation.idl>
#endif
#ifndef __com_sun_star_beans_UnknownPropertyException_idl__
#include <com/sun/star/beans/UnknownPropertyException.idl>
#endif
#ifndef __com_sun_star_beans_PropertyVetoException_idl__
#include <com/sun/star/beans/PropertyVetoException.idl>
#endif
#ifndef __com_sun_star_lang_IllegalArgumentException_idl__
#include <com/sun/star/lang/IllegalArgumentException.idl>
#endif
#ifndef __com_sun_star_lang_WrappedTargetException_idl__
#include <com/sun/star/lang/WrappedTargetException.idl>
#endif
#ifndef __com_sun_star_awt_Point_idl__
#include <com/sun/star/awt/Point.idl>
#endif
#ifndef __com_sun_star_awt_Size_idl__
#include <com/sun/star/awt/Size.idl>
#endif
//=============================================================================
module com { module sun { module star { module chart2 {
//=============================================================================
/**
this interface is used for a wrapper of objects implementing the service com::sun::star::drawing::Shape
*/
//interface XChartShape : ::com::sun::star::beans::XPropertySet
interface XChartShape : ::com::sun::star::uno::XInterface
{
/** the method corresponds to the identical methods of the interface com::sun::star::beans::XPropertySet
*/
void setPropertyValue( [in] string aPropertyName,
[in] any aValue )
raises( com::sun::star::beans::UnknownPropertyException,
com::sun::star::beans::PropertyVetoException,
com::sun::star::lang::IllegalArgumentException,
com::sun::star::lang::WrappedTargetException );
//-------------------------------------------------------------------------
/** the method corresponds to the identical methods of the interface com::sun::star::beans::XPropertySet
*/
any getPropertyValue( [in] string PropertyName )
raises( com::sun::star::beans::UnknownPropertyException,
com::sun::star::lang::WrappedTargetException );
//-------------------------------------------------------------------------
/** the method corresponds to the identical methods of the interface com::sun::star::drawing::XShape
*/
com::sun::star::awt::Point getPosition();
//-------------------------------------------------------------------------
/** the method corresponds to the identical methods of the interface com::sun::star::drawing::XShape
*/
void setPosition( [in] com::sun::star::awt::Point aPosition );
//-------------------------------------------------------------------------
/** the method corresponds to the identical methods of the interface com::sun::star::drawing::XShape
*/
com::sun::star::awt::Size getSize();
//-------------------------------------------------------------------------
/** the method corresponds to the identical methods of the interface com::sun::star::drawing::XShape
*/
void setSize( [in] com::sun::star::awt::Size aSize )
raises( com::sun::star::beans::PropertyVetoException );
//-------------------------------------------------------------------------
/** the method corresponds to the identical methods of the interface com::sun::star::drawing::XShape
* ??????????? deprecated
*
*/
string getShapeType();
};
//=============================================================================
}; }; }; };
#endif