summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-03-18 13:14:35 +0000
committerKurt Zenker <kz@openoffice.org>2005-03-18 13:14:35 +0000
commite5db01fce42ac305052dcd16398e27879f5eff89 (patch)
treeb7b64275e6a2ea1c8b6df658859bbd6ae7ad3eda
parent5c2a63331e3648debbabced9565dc0f1eb400105 (diff)
INTEGRATION: CWS tbe21 (1.13.122); FILE MERGED
2005/02/28 16:27:32 tbe 1.13.122.1: #i42907# missing control properties in xml im-/export for dialogs
-rw-r--r--offapi/com/sun/star/awt/UnoControlCurrencyFieldModel.idl50
1 files changed, 38 insertions, 12 deletions
diff --git a/offapi/com/sun/star/awt/UnoControlCurrencyFieldModel.idl b/offapi/com/sun/star/awt/UnoControlCurrencyFieldModel.idl
index 0dc44801462d..64a70b63134f 100644
--- a/offapi/com/sun/star/awt/UnoControlCurrencyFieldModel.idl
+++ b/offapi/com/sun/star/awt/UnoControlCurrencyFieldModel.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: UnoControlCurrencyFieldModel.idl,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: obo $ $Date: 2004-09-09 15:44:41 $
+ * last change: $Author: kz $ $Date: 2005-03-18 14:14:35 $
*
* 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_UnoControlCurrencyFieldModel_idl__
#define __com_sun_star_awt_UnoControlCurrencyFieldModel_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
-
//=============================================================================
@@ -167,6 +167,15 @@ published service UnoControlCurrencyFieldModel
//-------------------------------------------------------------------------
+ /** 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 whether the currency symbol is to be prepended.
*/
@@ -186,6 +195,29 @@ published service UnoControlCurrencyFieldModel
//-------------------------------------------------------------------------
+ /** 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;
@@ -244,12 +276,6 @@ published service UnoControlCurrencyFieldModel
*/
[property] double ValueStep;
- //-------------------------------------------------------------------------
-
- /** specifies whether the selection in the control should be hidden when the control is not
- active (focused).
- */
- [optional, property] boolean HideInactiveSelection;
};
//=============================================================================