summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/UnoControlNumericFieldModel.idl
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-03-18 13:16:43 +0000
committerKurt Zenker <kz@openoffice.org>2005-03-18 13:16:43 +0000
commitf533cc43d7340c47d8cb99839c0cae2b5fa29f50 (patch)
tree359de9ade67bbe9665cd04ff2c6b553a4ec78eb4 /offapi/com/sun/star/awt/UnoControlNumericFieldModel.idl
parent474216d924da6f9dc3d336fcff9a662386577d21 (diff)
INTEGRATION: CWS tbe21 (1.13.122); FILE MERGED
2005/02/28 16:29:22 tbe 1.13.122.1: #i42907# missing control properties in xml im-/export for dialogs
Diffstat (limited to 'offapi/com/sun/star/awt/UnoControlNumericFieldModel.idl')
-rw-r--r--offapi/com/sun/star/awt/UnoControlNumericFieldModel.idl50
1 files changed, 38 insertions, 12 deletions
diff --git a/offapi/com/sun/star/awt/UnoControlNumericFieldModel.idl b/offapi/com/sun/star/awt/UnoControlNumericFieldModel.idl
index 70f79abfe97a..d98bbbf27bc7 100644
--- a/offapi/com/sun/star/awt/UnoControlNumericFieldModel.idl
+++ b/offapi/com/sun/star/awt/UnoControlNumericFieldModel.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: UnoControlNumericFieldModel.idl,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: obo $ $Date: 2004-09-09 15:46:49 $
+ * last change: $Author: kz $ $Date: 2005-03-18 14:16:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -61,6 +61,10 @@
#ifndef __com_sun_star_awt_UnoControlNumericFieldModel_idl__
#define __com_sun_star_awt_UnoControlNumericFieldModel_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
@@ -69,10 +73,6 @@
#include <com/sun/star/util/Color.idl>
#endif
-#ifndef __com_sun_star_awt_FontDescriptor_idl__
-#include <com/sun/star/awt/FontDescriptor.idl>
-#endif
-
//=============================================================================
@@ -161,6 +161,15 @@ published service UnoControlNumericFieldModel
//-------------------------------------------------------------------------
+ /** 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;
@@ -174,6 +183,29 @@ published service UnoControlNumericFieldModel
//-------------------------------------------------------------------------
+ /** 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 whether the thousands separator is to be displayed.
*/
[property] boolean ShowThousandsSeparator;
@@ -232,12 +264,6 @@ published service UnoControlNumericFieldModel
*/
[property] double ValueStep;
- //-------------------------------------------------------------------------
-
- /** specifies whether the selection in the control should be hidden when the control is not
- active (focused).
- */
- [optional, property] boolean HideInactiveSelection;
};
//=============================================================================