summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-03-18 13:14:47 +0000
committerKurt Zenker <kz@openoffice.org>2005-03-18 13:14:47 +0000
commita38d262ad60b8e8ef08262b5df200def9a4ae76a (patch)
tree2fa9877c2a5a4f09afa74b7b5d8cce0757e5a548 /offapi
parentf88649601f109e80ee13cacf62d77f573815b06a (diff)
INTEGRATION: CWS tbe21 (1.9.122); FILE MERGED
2005/02/28 16:27:41 tbe 1.9.122.1: #i42907# missing control properties in xml im-/export for dialogs
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/awt/UnoControlDateFieldModel.idl64
1 files changed, 49 insertions, 15 deletions
diff --git a/offapi/com/sun/star/awt/UnoControlDateFieldModel.idl b/offapi/com/sun/star/awt/UnoControlDateFieldModel.idl
index 87886be2b..15ecdbb46 100644
--- a/offapi/com/sun/star/awt/UnoControlDateFieldModel.idl
+++ b/offapi/com/sun/star/awt/UnoControlDateFieldModel.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: UnoControlDateFieldModel.idl,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: obo $ $Date: 2004-09-09 15:45:03 $
+ * last change: $Author: kz $ $Date: 2005-03-18 14:14:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -60,7 +60,11 @@
************************************************************************/
#ifndef __com_sun_star_awt_UnoControlDateFieldModel_idl__
#define __com_sun_star_awt_UnoControlDateFieldModel_idl__
-
+
+#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
@@ -68,10 +72,6 @@
#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
//=============================================================================
@@ -208,6 +208,15 @@ published service UnoControlDateFieldModel
//-------------------------------------------------------------------------
+ /** specifies whether the selection in the control should be hidden when
+ the control is not active (focused).
+
+ @since OOo 2.0.0
+ */
+ [optional, property] boolean HideInactiveSelection;
+
+ //-------------------------------------------------------------------------
+
/** specifies that the control will be printed with the document.
*/
[property] boolean Printable;
@@ -219,7 +228,30 @@ published service UnoControlDateFieldModel
[property] boolean ReadOnly;
//-------------------------------------------------------------------------
-
+
+ /** specifies whether the mouse should show repeating behaviour, i.e.
+ repeatedly trigger an action when keeping pressed.
+
+ @since OOo 2.0.0
+ */
+ [optional, property] boolean Repeat;
+
+ //-------------------------------------------------------------------------
+
+ /** specifies the mouse repeat delay, in milliseconds.
+
+ <p>When the user presses a mouse in a control area where this triggers
+ an action (such as spinning the value), then usual control implementations
+ allow to repeatedly trigger this action, without the need to release the
+ mouse button and to press it again. The delay between two such triggers
+ is specified with this property.</p>
+
+ @since OOo 2.0.0
+ */
+ [optional, property] long RepeatDelay;
+
+ //-------------------------------------------------------------------------
+
/** specifies that the control has a spin button.
*/
[property] boolean Spin;
@@ -237,6 +269,14 @@ published service UnoControlDateFieldModel
[property] boolean Tabstop;
//-------------------------------------------------------------------------
+
+ /** specifies the text displayed in the control.
+
+ @since OOo 2.0.0
+ */
+ [optional, property] string Text;
+
+ //-------------------------------------------------------------------------
/** specifies the text color (RGB) of the control.
*/
@@ -247,13 +287,7 @@ published service UnoControlDateFieldModel
/** specifies the text line color (RGB) of the control.
*/
[property] com::sun::star::util::Color TextLineColor;
-
- //-------------------------------------------------------------------------
-
- /** specifies whether the selection in the control should be hidden when the control is not
- active (focused).
- */
- [optional, property] boolean HideInactiveSelection;
+
};
//=============================================================================