diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-07-13 15:59:33 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-07-13 15:59:33 +0000 |
commit | 648a0db1236d2b81ae69a97932f7087d400ccefc (patch) | |
tree | 80050e507389835dc4a129eaaa704d82dffaff91 /offapi | |
parent | 8c6f347d409efdf880c03a420640e0a7a9441271 (diff) |
INTEGRATION: CWS jsc7 (1.1.2); FILE ADDED
2006/07/06 10:55:06 jl 1.1.2.1: #i66211# service for displaying a license dialog
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/deployment/ui/LicenseDialog.idl | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/offapi/com/sun/star/deployment/ui/LicenseDialog.idl b/offapi/com/sun/star/deployment/ui/LicenseDialog.idl new file mode 100644 index 000000000000..21a8c3aff98e --- /dev/null +++ b/offapi/com/sun/star/deployment/ui/LicenseDialog.idl @@ -0,0 +1,65 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: LicenseDialog.idl,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: obo $ $Date: 2006-07-13 16:59:33 $ + * + * 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 + * + ************************************************************************/ + +#if ! defined INCLUDED_com_sun_star_deployment_ui_LicenseDialog_idl +#define INCLUDED_com_sun_star_deployment_ui_LicenseDialog_idl + +#include <com/sun/star/ui/dialogs/XExecutableDialog.idl> +#include <com/sun/star/awt/XWindow.idl> + + +module com { module sun { module star { module deployment { module ui { + +/** The <type>LicenseDialog</type> is used to display a license text. + + @since OOo 2.0.4 +*/ +service LicenseDialog : com::sun::star::ui::dialogs::XExecutableDialog +{ + /** Create a GUI using the specific parent window and focus on the + given context. + + @param xParent + parent window + @param licenseText + text to be displayed + */ + create( [in] com::sun::star::awt::XWindow xParent, + [in] string licenseText ); +}; + +}; }; }; }; }; + +#endif |