Update ooo320-m1
[ooovba.git] / offapi / com / sun / star / frame / XController.idl
blob40378c7f1243940949012811e76b40326a8fa168
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XController.idl,v $
10 * $Revision: 1.10 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __com_sun_star_frame_XController_idl__
31 #define __com_sun_star_frame_XController_idl__
33 #ifndef __com_sun_star_lang_XComponent_idl__
34 #include <com/sun/star/lang/XComponent.idl>
35 #endif
37 //=============================================================================
39 module com { module sun { module star { module frame {
41 published interface XFrame;
42 published interface XModel;
44 //=============================================================================
45 /** With this interface, components viewed in a <type>Frame</type> can serve
46 events (by supplying dispatches).
48 @see XFrame
49 @see com::sun::star::awt::XWindow
50 @see XModel
52 published interface XController: com::sun::star::lang::XComponent
54 //-------------------------------------------------------------------------
55 /** is called to attach the controller with its managing frame.
57 @param Frame
58 the new owner frame of this controller
60 void attachFrame( [in] XFrame Frame );
62 //-------------------------------------------------------------------------
63 /** is called to attach the controller to a new model.
65 @param Model
66 the new model for this controller
68 @return
69 <TRUE/>if attach was successfully
70 <br>
71 <FALSE/>otherwise
73 boolean attachModel( [in] XModel Model );
75 //-------------------------------------------------------------------------
76 /** is called to prepare the controller for closing the view
78 @param Suspend
79 <TRUE/>force the controller to suspend his work
80 <FALSE/>try to reactivate the controller
82 @return
83 <TRUE/>if request was accepted and of course successfully finished
84 <br>
85 <FALSE/>otherwise
87 boolean suspend( [in] boolean Suspend );
89 //-------------------------------------------------------------------------
90 /** provides access to current view status
92 @returns
93 set of data that can be used to restore the current view status
94 at later time by using <member>XController::restoreViewData()</member>
96 any getViewData();
98 //-------------------------------------------------------------------------
99 /** restores the view status using the data gotten from a previous call to
100 <member>XController::getViewData()</member>.
102 @param Data
103 set of data to restore it
105 void restoreViewData( [in] any Data );
107 //-------------------------------------------------------------------------
108 /** provides access to currently attached model
110 @returns
111 the currently attached model.
113 XModel getModel();
115 //-------------------------------------------------------------------------
116 /** provides access to owner frame of this controller
118 @returns
119 the frame containing this controller.
121 XFrame getFrame();
124 //=============================================================================
126 }; }; }; };
128 #endif