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_presentation_OutlineView_idl__
24#define __com_sun_star_presentation_OutlineView_idl__
25
26#ifndef __com_sun_star_drawing_XDrawView_idl__
27#include <com/sun/star/drawing/XDrawView.idl>
28#endif
29
30#ifndef __com_sun_star_beans_XPropertySet_idl__
31#include <com/sun/star/beans/XPropertySet.idl>
32#endif
33
34#ifndef __com_sun_star_frame_Controller_idl__
35#include <com/sun/star/frame/Controller.idl>
36#endif
37
38#ifndef __com_sun_star_lang_XServiceInfo_idl__
39#include <com/sun/star/lang/XServiceInfo.idl>
40#endif
41
42#ifndef __com_sun_star_drawing_XDrawPage_idl__
43#include <com/sun/star/drawing/XDrawPage.idl>
44#endif
45
46#ifndef __com_sun_star_awt_XWindow_idl__
47#include <com/sun/star/awt/XWindow.idl>
48#endif
49
50//=============================================================================
51
52 module com {  module sun {  module star {  module presentation {
53
54//=============================================================================
55
56/** This componend integrates an outline view to a presentation
57	document into the desktop.
58
59	In an outline view, the textual contents of presentation text objects
60	from all presentation pages are presentet as a continous outline text.
61
62    @since OpenOffice 1.1.2
63 */
64published service OutlineView
65{
66	//-------------------------------------------------------------------------
67
68	/** this services offers the  integration of this component into the
69		desktop.
70	*/
71	service com::sun::star::frame::Controller;
72
73	//-------------------------------------------------------------------------
74
75	/** lets you access the window for this view
76	*/
77	interface com::sun::star::awt::XWindow;
78
79	//-------------------------------------------------------------------------
80
81
82	/** lets you access the properties of this service.
83	 */
84	interface com::sun::star::beans::XPropertySet;
85
86	//-------------------------------------------------------------------------
87
88	/** provides the names of the services implemented by
89				this instance.
90	 */
91	interface com::sun::star::lang::XServiceInfo;
92
93	//-------------------------------------------------------------------------
94
95	/** This is the area that is currently visible.
96	 */
97	[readonly, property] com::sun::star::awt::Rectangle VisibleArea;
98
99};
100
101//=============================================================================
102
103}; }; }; };
104
105#endif
106