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