1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27#ifndef __com_sun_star_drawing_RectanglePoint_idl__
28#define __com_sun_star_drawing_RectanglePoint_idl__
29
30
31//=============================================================================
32
33 module com {  module sun {  module star {  module drawing {
34
35//=============================================================================
36
37// DocMerge from xml: enum com::sun::star::drawing::RectanglePoint
38/** specifies one of nine points in a rectangle.
39 */
40published enum RectanglePoint
41{
42	//-------------------------------------------------------------------------
43	// DOCUMENTATION OMITTED FOR RectanglePoint::	LEFT_TOP,
44
45	// DocMerge from xml: value com::sun::star::drawing::RectanglePoint::LEFT_TOP
46	/** specify to the point on the left side from the top of the rectangle.
47	 */
48	LEFT_TOP,
49
50	//-------------------------------------------------------------------------
51	// DOCUMENTATION OMITTED FOR RectanglePoint::	MIDDLE_TOP,
52
53	// DocMerge from xml: value com::sun::star::drawing::RectanglePoint::MIDDLE_TOP
54	/** specify to the point on the middle of the top from the rectangle.
55	 */
56	MIDDLE_TOP,
57
58	//-------------------------------------------------------------------------
59	// DOCUMENTATION OMITTED FOR RectanglePoint::	RIGHT_TOP,
60
61	// DocMerge from xml: value com::sun::star::drawing::RectanglePoint::RIGHT_TOP
62	/** specify to the point on the right side from the top of the rectangle.
63	 */
64	RIGHT_TOP,
65
66	//-------------------------------------------------------------------------
67	// DOCUMENTATION OMITTED FOR RectanglePoint::	LEFT_MIDDLE,
68
69	// DocMerge from xml: value com::sun::star::drawing::RectanglePoint::LEFT_MIDDLE
70	/** specify to the point on the middle of the left side from the rectangle.
71	 */
72	LEFT_MIDDLE,
73
74	//-------------------------------------------------------------------------
75	// DOCUMENTATION OMITTED FOR RectanglePoint::	MIDDLE_MIDDLE,
76
77	// DocMerge from xml: value com::sun::star::drawing::RectanglePoint::MIDDLE_MIDDLE
78	/** specify to the point on the center from the rectangle.
79	 */
80	MIDDLE_MIDDLE,
81
82	//-------------------------------------------------------------------------
83	// DOCUMENTATION OMITTED FOR RectanglePoint::	RIGHT_MIDDLE,
84
85	// DocMerge from xml: value com::sun::star::drawing::RectanglePoint::RIGHT_MIDDLE
86	/** specify to the point on the middle of the right side from the rectangle.
87	 */
88	RIGHT_MIDDLE,
89
90	//-------------------------------------------------------------------------
91	// DOCUMENTATION OMITTED FOR RectanglePoint::	LEFT_BOTTOM,
92
93	// DocMerge from xml: value com::sun::star::drawing::RectanglePoint::LEFT_BOTTOM
94	/** specify to the point on the bottom of the left side from the rectangle.
95	 */
96	LEFT_BOTTOM,
97
98	//-------------------------------------------------------------------------
99	// DOCUMENTATION OMITTED FOR RectanglePoint::	MIDDLE_BOTTOM,
100
101	// DocMerge from xml: value com::sun::star::drawing::RectanglePoint::MIDDLE_BOTTOM
102	/** specify to the point on the middle of the bottom from the rectangle.
103	 */
104	MIDDLE_BOTTOM,
105
106	//-------------------------------------------------------------------------
107	// DOCUMENTATION OMITTED FOR RectanglePoint::	RIGHT_BOTTOM
108
109	// DocMerge from xml: value com::sun::star::drawing::RectanglePoint::RIGHT_BOTTOM
110	/** specify to the point on the bottom of the right side from the rectangle.
111	 */
112	RIGHT_BOTTOM
113
114};
115
116//=============================================================================
117
118}; }; }; };
119
120#endif
121
122