1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23#ifndef __com_sun_star_report_XFixedLine_idl__ 24#define __com_sun_star_report_XFixedLine_idl__ 25 26#ifndef __com_sun_star_report_XReportControlModel_idl__ 27#include <com/sun/star/report/XReportControlModel.idl> 28#endif 29#ifndef __com_sun_star_drawing_CircleKind_idl__ 30#include <com/sun/star/drawing/CircleKind.idl> 31#endif 32#ifndef __com_sun_star_drawing_LineStyle_idl__ 33#include <com/sun/star/drawing/LineStyle.idl> 34#endif 35 36#ifndef __com_sun_star_util_Color_idl__ 37#include <com/sun/star/util/Color.idl> 38#endif 39 40#ifndef __com_sun_star_drawing_LineDash_idl__ 41#include <com/sun/star/drawing/LineDash.idl> 42#endif 43//============================================================================= 44 45 module com { module sun { module star { module report { 46 47//============================================================================= 48published interface XFixedLine 49{ 50 interface XReportControlModel; 51 52 /** specifies the orientation of the control. 53 54 <pre> 55 0: horizontal 56 1: vertical </default> 57 </pre> 58 */ 59 [attribute,bound] long Orientation 60 { 61 set raises ( com::sun::star::beans::UnknownPropertyException ); 62 get raises ( com::sun::star::beans::UnknownPropertyException ); 63 }; 64 65 /** This property contains the type of the line. 66 */ 67 [attribute,bound] com::sun::star::drawing::LineStyle LineStyle; 68 69 //------------------------------------------------------------------------- 70 71 /** This property contains the dash of the line. 72 */ 73 [attribute,bound] com::sun::star::drawing::LineDash LineDash; 74 75 //------------------------------------------------------------------------- 76 77 /** This property contains the line color. 78 */ 79 [attribute,bound] com::sun::star::util::Color LineColor; 80 81 //------------------------------------------------------------------------- 82 83 /** This property contains the extent of transparency. 84 */ 85 [attribute,bound] short LineTransparence; 86 87 //------------------------------------------------------------------------- 88 89 /** This property contains the width of the line in 1/100th mm. 90 */ 91 [attribute,bound] long LineWidth; 92 93 //------------------------------------------------------------------------- 94}; 95 96published service FixedLine : XFixedLine; 97//============================================================================= 98 99}; }; }; }; 100 101/*============================================================================= 102 103=============================================================================*/ 104#endif 105