diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2007-11-27 10:48:49 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2007-11-27 10:48:49 +0000 |
commit | ab371239e73fd534e42fcbe32f0bcc222876c2ac (patch) | |
tree | 99e4bd90811f748bac2315c5bb8d378649bdd937 | |
parent | b021fefd7a6a1952ffea1eabb926a883ebb61bf5 (diff) |
INTEGRATION: CWS fwk78 (1.1.2); FILE ADDED
2007/11/02 08:56:35 cd 1.1.2.1: #i83233# Support asynchronous callback service for uno awt
-rw-r--r-- | offapi/com/sun/star/awt/XRequestCallback.idl | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/offapi/com/sun/star/awt/XRequestCallback.idl b/offapi/com/sun/star/awt/XRequestCallback.idl new file mode 100644 index 000000000..63e51ce63 --- /dev/null +++ b/offapi/com/sun/star/awt/XRequestCallback.idl @@ -0,0 +1,72 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: XRequestCallback.idl,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: ihi $ $Date: 2007-11-27 11:48:49 $ + * + * 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_awt_XRequestCallback_idl__ +#define __com_sun_star_awt_XRequestCallback_idl__ + +#ifndef __com_sun_star_awt_XCallback_idl__ +#include <com/sun/star/awt/XCallback.idl> +#endif + +//============================================================================= + +module com { module sun { module star { module awt { + +//============================================================================= + +/** specifices an interface which can be used to call back + an implementation + */ +interface XRequestCallback +{ + //------------------------------------------------------------------------- + + /** adds a callback request to the implementation + + @param aData + any private data which will be provided to the callback implementation. + + @param xCallback + a reference to the callback which should be called by the implementation + of this interface. + */ + void addCallback( [in] XCallback xCallback, [in] any aData ); +}; + +//============================================================================= + +}; }; }; }; + +#endif |