1*b1cdbd2cSJim Jagielski/**************************************************************
2*b1cdbd2cSJim Jagielski *
3*b1cdbd2cSJim Jagielski * Licensed to the Apache Software Foundation (ASF) under one
4*b1cdbd2cSJim Jagielski * or more contributor license agreements.  See the NOTICE file
5*b1cdbd2cSJim Jagielski * distributed with this work for additional information
6*b1cdbd2cSJim Jagielski * regarding copyright ownership.  The ASF licenses this file
7*b1cdbd2cSJim Jagielski * to you under the Apache License, Version 2.0 (the
8*b1cdbd2cSJim Jagielski * "License"); you may not use this file except in compliance
9*b1cdbd2cSJim Jagielski * with the License.  You may obtain a copy of the License at
10*b1cdbd2cSJim Jagielski *
11*b1cdbd2cSJim Jagielski *   http://www.apache.org/licenses/LICENSE-2.0
12*b1cdbd2cSJim Jagielski *
13*b1cdbd2cSJim Jagielski * Unless required by applicable law or agreed to in writing,
14*b1cdbd2cSJim Jagielski * software distributed under the License is distributed on an
15*b1cdbd2cSJim Jagielski * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*b1cdbd2cSJim Jagielski * KIND, either express or implied.  See the License for the
17*b1cdbd2cSJim Jagielski * specific language governing permissions and limitations
18*b1cdbd2cSJim Jagielski * under the License.
19*b1cdbd2cSJim Jagielski *
20*b1cdbd2cSJim Jagielski *************************************************************/
21*b1cdbd2cSJim Jagielski
22*b1cdbd2cSJim Jagielski
23*b1cdbd2cSJim Jagielski#ifndef __com_sun_star_drawing_EnhancedCustomShapeHandle_idl__
24*b1cdbd2cSJim Jagielski#define __com_sun_star_drawing_EnhancedCustomShapeHandle_idl__
25*b1cdbd2cSJim Jagielski
26*b1cdbd2cSJim Jagielski#ifndef __com_sun_star_drawing_EnhancedCustomShapeParameterPair_idl__
27*b1cdbd2cSJim Jagielski#include <com/sun/star/drawing/EnhancedCustomShapeParameterPair.idl>
28*b1cdbd2cSJim Jagielski#endif
29*b1cdbd2cSJim Jagielski
30*b1cdbd2cSJim Jagielski//=============================================================================
31*b1cdbd2cSJim Jagielski
32*b1cdbd2cSJim Jagielskimodule com {  module sun {  module star {  module drawing {
33*b1cdbd2cSJim Jagielski
34*b1cdbd2cSJim Jagielski//=============================================================================
35*b1cdbd2cSJim Jagielski
36*b1cdbd2cSJim Jagielski/**
37*b1cdbd2cSJim Jagielski  This service may be represented by a ::com::sun::star::beans::PropertyValue [].
38*b1cdbd2cSJim Jagielski*/
39*b1cdbd2cSJim Jagielski
40*b1cdbd2cSJim Jagielskiservice EnhancedCustomShapeHandle
41*b1cdbd2cSJim Jagielski{
42*b1cdbd2cSJim Jagielski	/** Specifies if the x position of the handle is mirrored.
43*b1cdbd2cSJim Jagielski	*/
44*b1cdbd2cSJim Jagielski	[optional, property] boolean MirroredX;
45*b1cdbd2cSJim Jagielski
46*b1cdbd2cSJim Jagielski	/** Specifies if the y position of the handle is mirrored.
47*b1cdbd2cSJim Jagielski	*/
48*b1cdbd2cSJim Jagielski	[optional, property] boolean MirroredY;
49*b1cdbd2cSJim Jagielski
50*b1cdbd2cSJim Jagielski	/** Specifies if the handle directions are swapped if the shape is taller than wide.
51*b1cdbd2cSJim Jagielski	*/
52*b1cdbd2cSJim Jagielski	[optional, property] boolean Switched;
53*b1cdbd2cSJim Jagielski
54*b1cdbd2cSJim Jagielski	/** If the property Polar is set, then the first value specifies the radius and the second
55*b1cdbd2cSJim Jagielski	    parameter the angle of the handle. Otherwise, if the handle is not polar, the first parameter
56*b1cdbd2cSJim Jagielski		specifies the horizontal handle position, the vertical handle position is described by the
57*b1cdbd2cSJim Jagielski		second parameter.
58*b1cdbd2cSJim Jagielski	*/
59*b1cdbd2cSJim Jagielski	[optional, property] com::sun::star::drawing::EnhancedCustomShapeParameterPair Position;
60*b1cdbd2cSJim Jagielski
61*b1cdbd2cSJim Jagielski	/** If this attribute is set, the handle is a polar handle. The property specifies the center
62*b1cdbd2cSJim Jagielski	    position of the handle. If this attribute is set, the attributes RangeX and RangeY are ignored,
63*b1cdbd2cSJim Jagielski		instead the attribute RadiusRange is used.
64*b1cdbd2cSJim Jagielski	*/
65*b1cdbd2cSJim Jagielski	[optional, property] ::com::sun::star::drawing::EnhancedCustomShapeParameterPair Polar;
66*b1cdbd2cSJim Jagielski
67*b1cdbd2cSJim Jagielski	/** RefX, if this attribute is set, it specifies the index of the adjustment
68*b1cdbd2cSJim Jagielski		value which is connected to the horizontal position of the handle
69*b1cdbd2cSJim Jagielski	*/
70*b1cdbd2cSJim Jagielski	[optional, property] long RefX;
71*b1cdbd2cSJim Jagielski
72*b1cdbd2cSJim Jagielski	/** RefY, if this attribute is set, it specifies the index of the adjustment
73*b1cdbd2cSJim Jagielski		value which is connected to the vertical position of the handle
74*b1cdbd2cSJim Jagielski	*/
75*b1cdbd2cSJim Jagielski	[optional, property] long RefY;
76*b1cdbd2cSJim Jagielski
77*b1cdbd2cSJim Jagielski	/** RefAngle, if this attribute is set, it specifies the index of the adjustment
78*b1cdbd2cSJim Jagielski		value which is connected to the angle of the handle
79*b1cdbd2cSJim Jagielski	*/
80*b1cdbd2cSJim Jagielski	[optional, property] long RefAngle;
81*b1cdbd2cSJim Jagielski
82*b1cdbd2cSJim Jagielski	/** RefR, if this attribute is set, it specifies the index of the adjustment
83*b1cdbd2cSJim Jagielski		value which is connected to the radius of the handle
84*b1cdbd2cSJim Jagielski	*/
85*b1cdbd2cSJim Jagielski	[optional, property] long RefR;
86*b1cdbd2cSJim Jagielski
87*b1cdbd2cSJim Jagielski	/** If the attribute RangeXMinimum is set, it specifies the horizontal minimum range of the handle.
88*b1cdbd2cSJim Jagielski	*/
89*b1cdbd2cSJim Jagielski	[optional, property] ::com::sun::star::drawing::EnhancedCustomShapeParameter RangeXMinimum;
90*b1cdbd2cSJim Jagielski
91*b1cdbd2cSJim Jagielski	/** If the attribute RangeXMaximum is set, it specifies the horizontal maximum range of the handle.
92*b1cdbd2cSJim Jagielski	*/
93*b1cdbd2cSJim Jagielski	[optional, property] ::com::sun::star::drawing::EnhancedCustomShapeParameter RangeXMaximum;
94*b1cdbd2cSJim Jagielski
95*b1cdbd2cSJim Jagielski	/** If the attribute RangeYMinimum is set, it specifies the vertical minimum range of the handle.
96*b1cdbd2cSJim Jagielski	*/
97*b1cdbd2cSJim Jagielski	[optional, property] ::com::sun::star::drawing::EnhancedCustomShapeParameter RangeYMinimum;
98*b1cdbd2cSJim Jagielski
99*b1cdbd2cSJim Jagielski	/** If the attribute RangeYMaximum is set, it specifies the vertical maximum range of the handle.
100*b1cdbd2cSJim Jagielski	*/
101*b1cdbd2cSJim Jagielski	[optional, property] ::com::sun::star::drawing::EnhancedCustomShapeParameter RangeYMaximum;
102*b1cdbd2cSJim Jagielski
103*b1cdbd2cSJim Jagielski	/** If this attribute is set, it specifies the minimum radius range that can be used for a polar handle.
104*b1cdbd2cSJim Jagielski	*/
105*b1cdbd2cSJim Jagielski	[optional, property] ::com::sun::star::drawing::EnhancedCustomShapeParameter RadiusRangeMinimum;
106*b1cdbd2cSJim Jagielski
107*b1cdbd2cSJim Jagielski	/** If this attribute is set, it specifies the maximum radius range that can be used for a polar handle.
108*b1cdbd2cSJim Jagielski	*/
109*b1cdbd2cSJim Jagielski	[optional, property] ::com::sun::star::drawing::EnhancedCustomShapeParameter RadiusRangeMaximum;
110*b1cdbd2cSJim Jagielski};
111*b1cdbd2cSJim Jagielski
112*b1cdbd2cSJim Jagielski//=============================================================================
113*b1cdbd2cSJim Jagielski
114*b1cdbd2cSJim Jagielski}; }; }; };
115*b1cdbd2cSJim Jagielski
116*b1cdbd2cSJim Jagielski#endif
117*b1cdbd2cSJim Jagielski
118