office-gobmx/offapi/com/sun/star/document/Events.idl
Rüdiger Timm 5a4fb4bb45 INTEGRATION: CWS ooo19126 (1.6.242); FILE MERGED
2005/09/05 12:17:00 rt 1.6.242.1: #i54170# Change license header: remove SISSL
2005-09-07 22:02:16 +00:00

113 lines
3.8 KiB
Text

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: Events.idl,v $
*
* $Revision: 1.7 $
*
* last change: $Author: rt $ $Date: 2005-09-07 23:02:16 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
************************************************************************/
#ifndef __com_sun_star_document_Events_idl__
#define __com_sun_star_document_Events_idl__
#ifndef __com_sun_star_container_XNameReplace_idl__
#include <com/sun/star/container/XNameReplace.idl>
#endif
//=============================================================================
module com { module sun { module star { module document {
//=============================================================================
/** is a collection of all events supported by a document or content of a
document
<p>
Such Events will be broadcasted by a <type>XEventBroadcaster</type>
to any <type>XEventListener</type> packed as <type>EventObject</type>s.
</p>
*/
published service Events
{
//-------------------------------------------------------------------------
/** offers access to the list of <type>EventDescriptor</type>s
<p>
The following events are usually available:
<dl>
<dt>OnAlphaCharInput</dt>
<dt>OnClick</dt>
<dt>OnCloseApp</dt>
<dt>OnCopyTo</dt>
<dt>OnCopyToDone</dt>
<dt>OnError</dt>
<dt>OnFocus</dt>
<dt>OnInsertDone</dt>
<dt>OnInsertStart</dt>
<dt>OnLoad</dt>
<dt>OnLoadCancel</dt>
<dt>OnLoadDone</dt>
<dt>OnLoadError</dt>
<dt>OnLoadFinished</dt>
<dt>OnMailMerge</dt>
<dt>OnMailMergeFinished</dt>
<dt>OnModifyChanged</dt>
<dt>OnMouseOut</dt>
<dt>OnMouseOver</dt>
<dt>OnMove</dt>
<dt>OnNew</dt>
<dt>OnNewMail</dt>
<dt>OnNonAlphaCharInput</dt>
<dt>OnPageCountChange</dt>
<dt>OnPrepareUnload</dt>
<dt>OnPrepareViewClosing</dt>
<dt>OnPrint</dt>
<dt>OnResize</dt>
<dt>OnSave</dt>
<dt>OnSaveAs</dt>
<dt>OnSaveAsDone</dt>
<dt>OnSaveDone</dt>
<dt>OnSaveFinished</dt>
<dt>OnSelect</dt>
<dt>OnStartApp</dt>
<dt>OnToggleFullscreen</dt>
<dt>OnUnfocus</dt>
<dt>OnUnload</dt>
<dt>OnViewCreated</dt>
<dt>OnViewClosed</dt>
</dl>
</p>
*/
interface com::sun::star::container::XNameReplace;
};
//=============================================================================
}; }; }; };
#endif