summaryrefslogtreecommitdiff
path: root/offapi
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
commitf88649601f109e80ee13cacf62d77f573815b06a (patch)
tree7aff01badc0303cd16b3ef7ddd8baeac0d6b3b58 /offapi
parented3cb6f53492d8f146143b54f9db7359e78c4ae3 (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
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/awt/UnoControlCurrencyFieldModel.idl56
1 files changed, 41 insertions, 15 deletions
diff --git a/offapi/com/sun/star/awt/UnoControlCurrencyFieldModel.idl b/offapi/com/sun/star/awt/UnoControlCurrencyFieldModel.idl
index 31860254c..89f266097 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
@@ -60,7 +60,11 @@
************************************************************************/
#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
@@ -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
//=============================================================================
@@ -164,7 +164,16 @@ published service UnoControlCurrencyFieldModel
/** specifies the help URL of the control.
*/
[property] string HelpURL;
+
+ //-------------------------------------------------------------------------
+ /** 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.
@@ -185,7 +194,30 @@ published service UnoControlCurrencyFieldModel
[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 whether the thousands separator is to be displayed.
*/
[property] boolean ShowThousandsSeparator;
@@ -209,7 +241,7 @@ published service UnoControlCurrencyFieldModel
[property] boolean Tabstop;
//-------------------------------------------------------------------------
-
+
/** specifies the text color (RGB) of the control.
*/
[property] com::sun::star::util::Color TextColor;
@@ -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;
};
//=============================================================================