xref: /trunk/main/offapi/com/sun/star/document/Events.idl (revision cdf0e10c)
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_document_Events_idl__
28#define __com_sun_star_document_Events_idl__
29
30#ifndef __com_sun_star_container_XNameReplace_idl__
31#include <com/sun/star/container/XNameReplace.idl>
32#endif
33
34//=============================================================================
35
36module com {   module sun {   module star {   module document {
37
38//=============================================================================
39/** is a collection of all events supported by a document or content of a
40    document
41
42    <p>
43    Such Events will be broadcasted by a <type>XEventBroadcaster</type>
44    to any <type>XEventListener</type> packed as <type>EventObject</type>s.
45    </p>
46 */
47published service Events
48{
49	//-------------------------------------------------------------------------
50    /** offers access to the list of <type>EventDescriptor</type>s
51
52        <p>
53        The following events are usually available:
54		<dl>
55            <dt>OnAlphaCharInput</dt>
56            <dt>OnClick</dt>
57            <dt>OnCloseApp</dt>
58            <dt>OnCopyTo</dt>
59            <dt>OnCopyToDone</dt>
60            <dt>OnError</dt>
61            <dt>OnFocus</dt>
62            <dt>OnInsertDone</dt>
63            <dt>OnInsertStart</dt>
64            <dt>OnLoad</dt>
65            <dt>OnLoadCancel</dt>
66            <dt>OnLoadDone</dt>
67            <dt>OnLoadError</dt>
68            <dt>OnLoadFinished</dt>
69            <dt>OnMailMerge</dt>
70            <dt>OnMailMergeFinished</dt>
71            <dt>OnModifyChanged</dt>
72            <dt>OnMouseOut</dt>
73            <dt>OnMouseOver</dt>
74            <dt>OnMove</dt>
75            <dt>OnNew</dt>
76            <dt>OnNewMail</dt>
77            <dt>OnNonAlphaCharInput</dt>
78            <dt>OnPageCountChange</dt>
79            <dt>OnPrepareUnload</dt>
80            <dt>OnPrepareViewClosing</dt>
81            <dt>OnPrint</dt>
82            <dt>OnResize</dt>
83            <dt>OnSave</dt>
84            <dt>OnSaveAs</dt>
85            <dt>OnSaveAsDone</dt>
86            <dt>OnSaveDone</dt>
87            <dt>OnSaveFinished</dt>
88            <dt>OnSelect</dt>
89            <dt>OnStartApp</dt>
90            <dt>OnToggleFullscreen</dt>
91            <dt>OnUnfocus</dt>
92            <dt>OnUnload</dt>
93            <dt>OnViewCreated</dt>
94            <dt>OnViewClosed</dt>
95		</dl>
96        </p>
97		*/
98	interface com::sun::star::container::XNameReplace;
99};
100
101//=============================================================================
102
103}; }; }; };
104
105#endif
106