summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XMessageBoxFactory.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XMessageBoxFactory.idl')
-rw-r--r--offapi/com/sun/star/awt/XMessageBoxFactory.idl26
1 files changed, 13 insertions, 13 deletions
diff --git a/offapi/com/sun/star/awt/XMessageBoxFactory.idl b/offapi/com/sun/star/awt/XMessageBoxFactory.idl
index 8058dd6e653d..f06ba27b8116 100644
--- a/offapi/com/sun/star/awt/XMessageBoxFactory.idl
+++ b/offapi/com/sun/star/awt/XMessageBoxFactory.idl
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -28,8 +28,8 @@
#ifndef __com_sun_star_awt_XMessageBoxFactory_idl__
#define __com_sun_star_awt_XMessageBoxFactory_idl__
-#ifndef __com_sun_star_awt_XWindowPeer_idl__
-#include <com/sun/star/awt/XWindowPeer.idl>
+#ifndef __com_sun_star_awt_XWindowPeer_idl__
+#include <com/sun/star/awt/XWindowPeer.idl>
#endif
#ifndef __com_sun_star_awt_XMessageBox_idl__
@@ -48,29 +48,29 @@
//=============================================================================
module com { module sun { module star { module awt {
-
-//=============================================================================
+
+//=============================================================================
/** specifies a factory interface for creating message boxes.
*/
published interface XMessageBoxFactory : com::sun::star::uno::XInterface
{
//-------------------------------------------------------------------------
-
+
/** creates a message box.
- @returns
+ @returns
the created message box or a null reference if it cannot be
created.
@param aParent
- a valid XWindowPeer reference which is used as a parent. This parameter
+ a valid XWindowPeer reference which is used as a parent. This parameter
must not be null.
-
+
@param aPosSize
a rectangle which defines the position and size of the message
box in pixel.
-
+
@param aType
a string which determines the message box type.
The following strings are defined.
@@ -83,19 +83,19 @@ published interface XMessageBoxFactory : com::sun::star::uno::XInterface
<li><b>errorbox</b>A message box to provide an error message to the user.</li>
<li><b>querybox</b>A message box to query information from the user.</li>
<li><b>messbox</b>A normal message box.</li>
- </ul>
+ </ul>
@param aButtons
specifies which buttons should be available on the
message box. A combination of
<type scope="com::sun::star::awt">MessageBoxButtons</type>. An <b>infobox</b>
ignores this parameter and always use button "OK".
-
+
@param aTitle
specifies the title of the message box.
@param aMessage
- specifies text which will be shown by the message box.
+ specifies text which will be shown by the message box.
Line-breaks must be added using 'CR' or 'CR+LF'.
*/
XMessageBox createMessageBox( [in] com::sun::star::awt::XWindowPeer aParent, [in] com::sun::star::awt::Rectangle aPosSize, [in] string aType, [in] long aButtons, [in] string aTitle, [in] string aMessage );