diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-04-04 12:52:44 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-04-04 12:52:44 +0000 |
commit | ab190026283c715ba8c5837a31e68e3679a0a6f3 (patch) | |
tree | 9f69f2e475278cbf1a18d38644e934001fbd9811 | |
parent | cab8802ce45e45371d2d5328594e1282d8ef2621 (diff) |
INTEGRATION: CWS titles02 (1.1.4); FILE ADDED
2007/10/12 08:43:02 as 1.1.4.2: #116375# new title interfaces
2006/10/30 11:37:10 as 1.1.4.1: file XTitleChangeListener.idl was added on branch cws_src680_titles02 on 2007-10-12 08:43:02 +0000
-rw-r--r-- | offapi/com/sun/star/frame/XTitleChangeListener.idl | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/offapi/com/sun/star/frame/XTitleChangeListener.idl b/offapi/com/sun/star/frame/XTitleChangeListener.idl new file mode 100644 index 000000000000..57dd4b423677 --- /dev/null +++ b/offapi/com/sun/star/frame/XTitleChangeListener.idl @@ -0,0 +1,65 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: XTitleChangeListener.idl,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: kz $ $Date: 2008-04-04 13:52:44 $ + * + * 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_frame_XTitleChangeListener_idl__ +#define __com_sun_star_frame_XTitleChangeListener_idl__ + +#ifndef __com_sun_star_lang_XEventListener_idl__ +#include <com/sun/star/lang/XEventListener.idl> +#endif + +#ifndef __com_sun_star_frame_TitleChangedEvent_idl__ +#include <com/sun/star/frame/TitleChangedEvent.idl> +#endif + +//============================================================================= + + module com { module sun { module star { module frame { + +//============================================================================= +/** todo document me + */ +interface XTitleChangeListener : com::sun::star::lang::XEventListener +{ + //------------------------------------------------------------------------- + /** todo document me + */ + void titleChanged ( [in] TitleChangedEvent aEvent ); +}; + +//============================================================================= + +}; }; }; }; + +#endif |