summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-10-18 12:20:27 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-10-18 12:20:27 +0000
commit277d46717c6f84ccab6f394063e9ac153356623d (patch)
treeded8d3f7a258b8f05d8ba0c9e18a82efd87709ea /offapi
parentfd519fead93c7e6e96adb631929800fceb106e10 (diff)
INTEGRATION: CWS dba205b (1.12.170); FILE MERGED
2006/08/09 07:33:30 fs 1.12.170.2: added @since tag for Graphic 2006/08/08 11:32:18 fs 1.12.170.1: #i65585# optional property 'Graphic', allowing to display *any* graphics, not just an image from a file
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/awt/UnoControlRadioButtonModel.idl28
1 files changed, 23 insertions, 5 deletions
diff --git a/offapi/com/sun/star/awt/UnoControlRadioButtonModel.idl b/offapi/com/sun/star/awt/UnoControlRadioButtonModel.idl
index aaafe3b8d396..7bf8a91eb34f 100644
--- a/offapi/com/sun/star/awt/UnoControlRadioButtonModel.idl
+++ b/offapi/com/sun/star/awt/UnoControlRadioButtonModel.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: UnoControlRadioButtonModel.idl,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 21:30:20 $
+ * last change: $Author: ihi $ $Date: 2006-10-18 13:20:27 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -38,18 +38,18 @@
#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
+#ifndef com_sun_star_graphic_XGraphic_idl
+#include <com/sun/star/graphic/XGraphic.idl>
+#endif
//=============================================================================
@@ -133,11 +133,29 @@ published service UnoControlRadioButtonModel
//-------------------------------------------------------------------------
/** specifies an URL to an image to display besides the label of the control
+ @see Graphic
*/
[optional, property] string ImageURL;
//-------------------------------------------------------------------------
+ /** specifies a graphic to be displayed besides the label of the control
+
+ <p>If this property is present, it interacts with the <member>ImageURL</member>in the
+ following way:
+ <ul><li>If <member>ImageURL</member> is set, <member>Graphic</member> will be reset
+ to an object as loaded from the given image URL, or <NULL/> if <member>ImageURL</member>
+ does not point to a valid image file.</li>
+ <li>If <member>Graphic</member> is set, <member>ImageURL</member> will be reset
+ to an empty string.</li>
+ </ul></p>
+
+ @since OOo 2.1
+ */
+ [optional, property, transient] com::sun::star::graphic::XGraphic Graphic;
+
+ //-------------------------------------------------------------------------
+
/** specifies the label of the control.
*/
[property] string Label;