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
This commit is contained in:
Kurt Zenker 2005-03-18 13:16:43 +00:00
parent 474216d924
commit f533cc43d7

View file

@ -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;
};
//=============================================================================