summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-03-18 13:17:15 +0000
committerKurt Zenker <kz@openoffice.org>2005-03-18 13:17:15 +0000
commit8d3d4bc3d8946bece5a47099baff7802259bbca0 (patch)
tree2d529a21641008000575fb95c04fb39310420995 /offapi
parentf353637f6952e82f4ba52c270fcc20610d02d27e (diff)
INTEGRATION: CWS tbe21 (1.9.132); FILE MERGED
2005/02/28 17:28:05 tbe 1.9.132.2: RESYNC: (1.9-1.10); FILE MERGED 2005/02/28 16:29:43 tbe 1.9.132.1: #i42907# missing control properties in xml im-/export for dialogs
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/awt/UnoControlRadioButtonModel.idl61
1 files changed, 44 insertions, 17 deletions
diff --git a/offapi/com/sun/star/awt/UnoControlRadioButtonModel.idl b/offapi/com/sun/star/awt/UnoControlRadioButtonModel.idl
index 30fc04e43353..4ee5d2476a79 100644
--- a/offapi/com/sun/star/awt/UnoControlRadioButtonModel.idl
+++ b/offapi/com/sun/star/awt/UnoControlRadioButtonModel.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: UnoControlRadioButtonModel.idl,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: vg $ $Date: 2005-02-17 10:46:27 $
+ * last change: $Author: kz $ $Date: 2005-03-18 14:17:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -61,22 +61,22 @@
#ifndef __com_sun_star_awt_UnoControlRadioButtonModel_idl__
#define __com_sun_star_awt_UnoControlRadioButtonModel_idl__
-#ifndef __com_sun_star_awt_UnoControlModel_idl__
-#include <com/sun/star/awt/UnoControlModel.idl>
-#endif
-
-#ifndef __com_sun_star_util_Color_idl__
-#include <com/sun/star/util/Color.idl>
-#endif
-
#ifndef __com_sun_star_awt_FontDescriptor_idl__
#include <com/sun/star/awt/FontDescriptor.idl>
#endif
+#ifndef __com_sun_star_awt_UnoControlModel_idl__
+#include <com/sun/star/awt/UnoControlModel.idl>
+#endif
+
#ifndef __com_sun_star_style_VerticalAlignment_idl__
#include <com/sun/star/style/VerticalAlignment.idl>
#endif
+#ifndef __com_sun_star_util_Color_idl__
+#include <com/sun/star/util/Color.idl>
+#endif
+
//=============================================================================
@@ -92,6 +92,20 @@ published service UnoControlRadioButtonModel
//-------------------------------------------------------------------------
+ /** specifies the horizontal alignment of the text in the control.
+
+ <pre>
+ 0: left
+ 1: center
+ 2: right
+ </pre>
+
+ @since OOo 2.0.0
+ */
+ [optional, property] short Align;
+
+ //-------------------------------------------------------------------------
+
/** specifies the background color (RGB) of the control.
*/
[optional, property] long BackgroundColor;
@@ -156,6 +170,14 @@ published service UnoControlRadioButtonModel
//-------------------------------------------------------------------------
+ /** specifies that the text may be displayed on more than one line.
+
+ @since OOo 2.0.0
+ */
+ [optional, property] boolean MultiLine;
+
+ //-------------------------------------------------------------------------
+
/** specifies that the control will be printed with the document.
*/
[property] boolean Printable;
@@ -191,20 +213,25 @@ published service UnoControlRadioButtonModel
//-------------------------------------------------------------------------
- /** specifies a visual effect to apply to the check box control
+ /** specifies the vertical alignment of the text in the control.
+
+ @since OOo 2.0.0
+ */
+ [optional, property] com::sun::star::style::VerticalAlignment VerticalAlign;
+
+ //-------------------------------------------------------------------------
+
+ /** specifies a visual effect to apply to the radio button control.
<p>Possible values for this property are <type>VisualEffect</type>::FLAT and
<type>VisualEffect</type>::LOOK3D.</p>
@see com::sun::star::awt::VisualEffect
- */
- [optional, property] short VisualEffect;
- //-------------------------------------------------------------------------
+ @since OOo 2.0.0
+ */
+ [optional, property] short VisualEffect;
- /** specifies the vertical alignment of the text in the control
- */
- [optional, property] com::sun::star::style::VerticalAlignment VerticalAlign;
};
//=============================================================================