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_style_GraphicLocation_idl__
24#define __com_sun_star_style_GraphicLocation_idl__
25
26
27//=============================================================================
28
29 module com {  module sun {  module star {  module style {
30
31//=============================================================================
32
33// DocMerge from xml: enum com::sun::star::style::GraphicLocation
34/** These enumeration values are used to specify the location of a
35	graphic object within its surroundings.
36 */
37published enum GraphicLocation
38{
39	//-------------------------------------------------------------------------
40
41	// DocMerge from xml: value com::sun::star::style::GraphicLocation::NONE
42	/** This value specifies that a location is not yet assigned.
43	 */
44	NONE,
45
46	//-------------------------------------------------------------------------
47
48	// DocMerge from xml: value com::sun::star::style::GraphicLocation::LEFT_TOP
49	/** The graphic is located in the top left corner.
50	 */
51	LEFT_TOP,
52
53	//-------------------------------------------------------------------------
54
55	// DocMerge from xml: value com::sun::star::style::GraphicLocation::MIDDLE_TOP
56	/** The graphic is located in the middle of the top edge.
57	 */
58	MIDDLE_TOP,
59
60	//-------------------------------------------------------------------------
61
62	// DocMerge from xml: value com::sun::star::style::GraphicLocation::RIGHT_TOP
63	/** The graphic is located in the top right corner.
64	 */
65	RIGHT_TOP,
66
67	//-------------------------------------------------------------------------
68
69	// DocMerge from xml: value com::sun::star::style::GraphicLocation::LEFT_MIDDLE
70	/** The graphic is located in the middle of the left edge.
71	 */
72	LEFT_MIDDLE,
73
74	//-------------------------------------------------------------------------
75
76	// DocMerge from xml: value com::sun::star::style::GraphicLocation::MIDDLE_MIDDLE
77	/** The graphic is located at the center of the surrounding object.
78	 */
79	MIDDLE_MIDDLE,
80
81	//-------------------------------------------------------------------------
82
83	// DocMerge from xml: value com::sun::star::style::GraphicLocation::RIGHT_MIDDLE
84	/** The graphic is located in the middle of the right edge.
85	 */
86	RIGHT_MIDDLE,
87
88	//-------------------------------------------------------------------------
89
90	// DocMerge from xml: value com::sun::star::style::GraphicLocation::LEFT_BOTTOM
91	/** The graphic is located in the bottom left corner.
92	 */
93	LEFT_BOTTOM,
94
95	//-------------------------------------------------------------------------
96
97	// DocMerge from xml: value com::sun::star::style::GraphicLocation::MIDDLE_BOTTOM
98	/** The graphic is located in the middle of the bottom edge.
99	 */
100	MIDDLE_BOTTOM,
101
102	//-------------------------------------------------------------------------
103
104	// DocMerge from xml: value com::sun::star::style::GraphicLocation::RIGHT_BOTTOM
105	/** The graphic is located in the bottom right corner.
106	 */
107	RIGHT_BOTTOM,
108
109	//-------------------------------------------------------------------------
110
111	// DocMerge from xml: value com::sun::star::style::GraphicLocation::AREA
112	/** The graphic is scaled to fill the whole surrounding area.
113	 */
114	AREA,
115
116	//-------------------------------------------------------------------------
117
118	// DocMerge from xml: value com::sun::star::style::GraphicLocation::TILED
119	/** The graphic is repeatedly spread over the surrounding object
120		like tiles.
121	 */
122	TILED
123
124};
125
126//=============================================================================
127
128}; }; }; };
129
130/*=============================================================================
131
132=============================================================================*/
133#endif
134