summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/UnoControlPatternFieldModel.idl
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-06-27 07:57:39 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-06-27 07:57:39 +0000
commit9c435bad412178078d00b0df629db5cc09f728f6 (patch)
tree0edb2915c3f233a607b287b03a4595d59aad1dff /offapi/com/sun/star/awt/UnoControlPatternFieldModel.idl
parent2f026c757c618747601709d4663db7b419e334d4 (diff)
INTEGRATION: CWS tbe4 (1.8.66); FILE MERGED
2003/06/23 13:22:27 tbe 1.8.66.1: #56751# IDL review
Diffstat (limited to 'offapi/com/sun/star/awt/UnoControlPatternFieldModel.idl')
-rw-r--r--offapi/com/sun/star/awt/UnoControlPatternFieldModel.idl110
1 files changed, 61 insertions, 49 deletions
diff --git a/offapi/com/sun/star/awt/UnoControlPatternFieldModel.idl b/offapi/com/sun/star/awt/UnoControlPatternFieldModel.idl
index 9eb2e9647..6b075cafc 100644
--- a/offapi/com/sun/star/awt/UnoControlPatternFieldModel.idl
+++ b/offapi/com/sun/star/awt/UnoControlPatternFieldModel.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: UnoControlPatternFieldModel.idl,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: hr $ $Date: 2003-03-26 13:52:44 $
+ * last change: $Author: vg $ $Date: 2003-06-27 08:57:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -76,117 +76,129 @@
//=============================================================================
-// DocMerge from xml: service com::sun::star::awt::UnoControlPatternFieldModel
-/** specifies the standard model of an <type scope="com::sun::star::awt">UnoControlPatternField</type>
+/** specifies the standard model of an <type>UnoControlPatternField</type>.
*/
service UnoControlPatternFieldModel
{
- // DocMerge: empty anyway
service com::sun::star::awt::UnoControlModel;
//-------------------------------------------------------------------------
-
- // DocMerge from xml: property com::sun::star::awt::UnoControlPatternFieldModel::BackgroundColor
+
/** specifies the background color (RGB) of the control.
*/
[property] long BackgroundColor;
- //-------------------------------------------------------------------------
-
- // DocMerge from xml: property com::sun::star::awt::UnoControlPatternFieldModel::Border
+ //-------------------------------------------------------------------------
+
/** specifies the border style of the control.
-
-
+
<pre>
0: No border
1: 3D border
2: simple border
</pre>
*/
- [property] short Border;
-
- //-------------------------------------------------------------------------
-
- // DocMerge from xml: property com::sun::star::awt::UnoControlPatternFieldModel::EditMask
+ [property] short Border;
+
+ //-------------------------------------------------------------------------
+
/** specifies the edit mask.
*/
[property] string EditMask;
//-------------------------------------------------------------------------
-
- // DocMerge from xml: property com::sun::star::awt::UnoControlPatternFieldModel::Enabled
- /** determines whether a control is enabled or disabled.
+
+ /** determines whether the control is enabled or disabled.
*/
[property] boolean Enabled;
//-------------------------------------------------------------------------
-
- // DocMerge from xml: property com::sun::star::awt::UnoControlPatternFieldModel::FontDescriptor
+
/** specifies the font attributes of the text in the control.
*/
[property] com::sun::star::awt::FontDescriptor FontDescriptor;
+ //-------------------------------------------------------------------------
+
+ /** specifies the <type scope="com::sun::star::text">FontEmphasis</type>
+ value of the text in the control.
+ */
+ [property] short FontEmphasisMark;
+
+ //-------------------------------------------------------------------------
+
+ /** specifies the <type scope="com::sun::star::text">FontRelief</type>
+ value of the text in the control.
+ */
+ [property] short FontRelief;
+
+ //-------------------------------------------------------------------------
+
+ /** specifies the help text of the control.
+ */
+ [property] string HelpText;
+
//-------------------------------------------------------------------------
- // DocMerge from xml: property com::sun::star::awt::UnoControlPatternFieldModel::LiteralMask
+ /** specifies the help URL of the control.
+ */
+ [property] string HelpURL;
+
+ //-------------------------------------------------------------------------
+
/** specifies the literal mask.
*/
[property] string LiteralMask;
//-------------------------------------------------------------------------
-
- // DocMerge from xml: property com::sun::star::awt::UnoControlPatternFieldModel::Printable
+
+ /** specifies the maximum character count.
+ */
+ [property] short MaxTextLen;
+
+ //-------------------------------------------------------------------------
+
/** specifies that the control will be printed with the document.
*/
[property] boolean Printable;
//-------------------------------------------------------------------------
- // DocMerge from xml: property com::sun::star::awt::UnoControlPatternFieldModel::ReadOnly
- /** specifies that the content of the control cannot be modified by the user.
+ /** specifies that the content of the control cannot be modified by the
+ user.
*/
[property] boolean ReadOnly;
- //-------------------------------------------------------------------------
-
- // DocMerge from xml: property com::sun::star::awt::UnoControlPatternFieldModel::StrictFormat
- /** specifies that the string is checked during the input.
+ //-------------------------------------------------------------------------
+
+ /** specifies that the text is checked during the user input.
*/
[property] boolean StrictFormat;
//-------------------------------------------------------------------------
-
- // DocMerge from xml: property com::sun::star::awt::UnoControlPatternFieldModel::Tabstop
- /** specifies that the control can be reached with the tabulator key.
+
+ /** specifies that the control can be reached with the TAB key.
*/
[property] boolean Tabstop;
//-------------------------------------------------------------------------
-
- // DocMerge from xml: property com::sun::star::awt::UnoControlPatternFieldModel::Text
+
/** specifies the text displayed in the control.
*/
[property] string Text;
//-------------------------------------------------------------------------
-
- // DocMerge from xml: property com::sun::star::awt::UnoControlPatternFieldModel::TextColor
+
/** specifies the text color (RGB) of the control.
*/
[property] long TextColor;
- //-------------------------------------------------------------------------
-
- /** specifies the help text of the control.
- */
- [property] string HelpText;
-
- //-------------------------------------------------------------------------
-
- /** specifies the help id of the control.
+ //-------------------------------------------------------------------------
+
+ /** specifies the text line color (RGB) of the control.
*/
- [property] string HelpURL;
-
+ [property] long TextLineColor;
+
};
//=============================================================================