1*cdf0e10cSrcweir/************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir#ifndef __ooo_vba_excel_XTitle_idl__ 29*cdf0e10cSrcweir#define __ooo_vba_excel_XTitle_idl__ 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir#ifndef __ooo_vba_XHelperInterface_idl__ 32*cdf0e10cSrcweir#include <ooo/vba/XHelperInterface.idl> 33*cdf0e10cSrcweir#endif 34*cdf0e10cSrcweir 35*cdf0e10cSrcweir#ifndef __com_sun_star_script_BasicErrorException_idl__ 36*cdf0e10cSrcweir#include <com/sun/star/script/BasicErrorException.idl> 37*cdf0e10cSrcweir#endif 38*cdf0e10cSrcweir 39*cdf0e10cSrcweirmodule ooo { module vba { module excel { 40*cdf0e10cSrcweir 41*cdf0e10cSrcweirinterface XCharacters; 42*cdf0e10cSrcweirinterface XFont; 43*cdf0e10cSrcweirinterface XBorder; 44*cdf0e10cSrcweirinterface XInterior; 45*cdf0e10cSrcweir 46*cdf0e10cSrcweirinterface XTitle 47*cdf0e10cSrcweir{ 48*cdf0e10cSrcweir interface ::ooo::vba::XHelperInterface; 49*cdf0e10cSrcweir // XBorder Border( ) raises ( com::sun::star::script::BasicErrorException ); 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir XInterior Interior() raises(com::sun::star::script::BasicErrorException); 52*cdf0e10cSrcweir 53*cdf0e10cSrcweir XFont Font() raises(com::sun::star::script::BasicErrorException); 54*cdf0e10cSrcweir 55*cdf0e10cSrcweir void setText([in] string Text) raises(com::sun::star::script::BasicErrorException); 56*cdf0e10cSrcweir 57*cdf0e10cSrcweir string getText() raises(com::sun::star::script::BasicErrorException); 58*cdf0e10cSrcweir // #FIXME existing implementation object needs to be usable for shape, chart 59*cdf0e10cSrcweir // axes etc. 60*cdf0e10cSrcweir //XCharacters Characters() raises(com::sun::star::script::BasicErrorException); 61*cdf0e10cSrcweir 62*cdf0e10cSrcweir void setTop([in] double Top) raises(com::sun::star::script::BasicErrorException); 63*cdf0e10cSrcweir 64*cdf0e10cSrcweir double getTop() raises(com::sun::star::script::BasicErrorException); 65*cdf0e10cSrcweir 66*cdf0e10cSrcweir void setLeft([in] double Left) raises(com::sun::star::script::BasicErrorException); 67*cdf0e10cSrcweir 68*cdf0e10cSrcweir double getLeft() raises(com::sun::star::script::BasicErrorException); 69*cdf0e10cSrcweir 70*cdf0e10cSrcweir void setOrientation([in] long Orientation) raises(com::sun::star::script::BasicErrorException); 71*cdf0e10cSrcweir 72*cdf0e10cSrcweir long getOrientation() raises(com::sun::star::script::BasicErrorException); 73*cdf0e10cSrcweir 74*cdf0e10cSrcweir // any Select( ) raises ( com::sun::star::script::BasicErrorException ); 75*cdf0e10cSrcweir 76*cdf0e10cSrcweir // any Delete( ) raises ( com::sun::star::script::BasicErrorException ); 77*cdf0e10cSrcweir 78*cdf0e10cSrcweir // void setName( [in] string Name ) raises ( com::sun::star::script::BasicErrorException ); 79*cdf0e10cSrcweir 80*cdf0e10cSrcweir // string getName( ) raises ( com::sun::star::script::BasicErrorException ); 81*cdf0e10cSrcweir 82*cdf0e10cSrcweir // void setFill( [in] XChartFillFormat Fill ) raises ( com::sun::star::script::BasicErrorException ); 83*cdf0e10cSrcweir 84*cdf0e10cSrcweir // XChartFillFormat getFill( ) raises ( com::sun::star::script::BasicErrorException ); 85*cdf0e10cSrcweir 86*cdf0e10cSrcweir // void setCaption( [in] string Caption ) raises ( com::sun::star::script::BasicErrorException ); 87*cdf0e10cSrcweir 88*cdf0e10cSrcweir // string getCaption( ) raises ( com::sun::star::script::BasicErrorException ); 89*cdf0e10cSrcweir 90*cdf0e10cSrcweir // void setHorizontalAlignment( [in] any HorizontalAlignment ) raises ( com::sun::star::script::BasicErrorException ); 91*cdf0e10cSrcweir 92*cdf0e10cSrcweir // any getHorizontalAlignment( ) raises ( com::sun::star::script::BasicErrorException ); 93*cdf0e10cSrcweir 94*cdf0e10cSrcweir // void setShadow( [in] boolean Shadow ) raises ( com::sun::star::script::BasicErrorException ); 95*cdf0e10cSrcweir 96*cdf0e10cSrcweir // boolean getShadow( ) raises ( com::sun::star::script::BasicErrorException ); 97*cdf0e10cSrcweir 98*cdf0e10cSrcweir // void setVerticalAlignment( [in] any VerticalAlignment ) raises ( com::sun::star::script::BasicErrorException ); 99*cdf0e10cSrcweir 100*cdf0e10cSrcweir // any getVerticalAlignment( ) raises ( com::sun::star::script::BasicErrorException ); 101*cdf0e10cSrcweir 102*cdf0e10cSrcweir // void setReadingOrder( [in] long ReadingOrder ) raises ( com::sun::star::script::BasicErrorException ); 103*cdf0e10cSrcweir 104*cdf0e10cSrcweir // long getReadingOrder( ) raises ( com::sun::star::script::BasicErrorException ); 105*cdf0e10cSrcweir 106*cdf0e10cSrcweir // void setAutoScaleFont( [in] any AutoScaleFont ) raises ( com::sun::star::script::BasicErrorException ); 107*cdf0e10cSrcweir 108*cdf0e10cSrcweir // any getAutoScaleFont( ) raises ( com::sun::star::script::BasicErrorException ); 109*cdf0e10cSrcweir 110*cdf0e10cSrcweir 111*cdf0e10cSrcweir}; 112*cdf0e10cSrcweir 113*cdf0e10cSrcweir}; }; }; 114*cdf0e10cSrcweir 115*cdf0e10cSrcweir#endif 116*cdf0e10cSrcweir 117