xref: /aoo4110/main/offapi/com/sun/star/embed/Aspects.idl (revision b1cdbd2c)
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_embed_Aspects_idl__
24#define __com_sun_star_embed_Aspects_idl__
25
26
27//============================================================================
28
29module com { module sun { module star { module embed {
30
31//============================================================================
32/** The constant set contains possible aspects for an embedded object.
33
34	<p>
35	This constant set provides a set of values that
36	can be used to specify the kind of object view.
37	It can be used for example by container to request
38	view representation of a certain kind from
39	<type>XEmbeddedObject</type>.
40	</p>
41
42	<p>
43	The first 32 bits are reserved for MS OLE aspects.
44	</p>
45
46	@see XEmbeddedObject
47*/
48published constants Aspects
49{
50	// MS OLE aspects
51
52	// -----------------------------------------------------------------------
53	/** specifies view of the object to be displayed as an embedded object
54		inside a container.
55	 */
56	const hyper MSOLE_CONTENT = 1;
57
58	// -----------------------------------------------------------------------
59	/** specifies view of the object to be displayed in a browsing tool.
60	 */
61	const hyper MSOLE_THUMBNAIL = 2;
62
63	// -----------------------------------------------------------------------
64	/** specifies view of the object when object is represented by Icon.
65	 */
66	const hyper MSOLE_ICON = 4;
67
68	// -----------------------------------------------------------------------
69	/** specifies view of the object for print preview.
70	 */
71	const hyper MSOLE_DOCPRINT = 8;
72
73};
74
75//============================================================================
76
77}; }; }; };
78
79#endif
80
81