1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 module com
{ module sun
{ module star
{ module awt
{
25 /** specifies the standard model of a UnoControlFixedText.
27 published service UnoControlFixedTextModel
29 service com
::sun
::star
::awt
::UnoControlModel
;
32 /** specifies the horizontal alignment of the text in the control.
40 [property
] short Align
;
43 /** specifies the background color (RGB) of the control.
45 [property
] com
::sun
::star
::util
::Color BackgroundColor
;
48 /** specifies the border style of the control.
56 [property
] short Border
;
59 /** specifies the color of the border, if present
61 <p>Not every border style (see #Border) may support coloring.
62 For instance, usually a border with 3D effect will ignore the BorderColor setting.</p>
66 [optional, property
] long BorderColor
;
69 /** determines whether the control is enabled or disabled.
71 [property
] boolean Enabled
;
74 /** specifies the font attributes of the text in the control.
76 [property
] com
::sun
::star
::awt
::FontDescriptor FontDescriptor
;
79 /** specifies the com::sun::star::text::FontEmphasis
80 value of the text in the control.
82 [property
] short FontEmphasisMark
;
85 /** specifies the com::sun::star::text::FontRelief
86 value of the text in the control.
88 [property
] short FontRelief
;
91 /** specifies the help text of the control.
93 [property
] string HelpText
;
96 /** specifies the help URL of the control.
98 [property
] string HelpURL
;
101 /** specifies the label of the control.
103 [property
] string Label
;
106 /** specifies that the text may be displayed on more than one line.
108 [property
] boolean MultiLine
;
111 /** specifies that the control will be printed with the document.
113 [property
] boolean Printable
;
116 /** specifies the text color (RGB) of the control.
118 [property
] com
::sun
::star
::util
::Color TextColor
;
121 /** specifies the text line color (RGB) of the control.
123 [property
] com
::sun
::star
::util
::Color TextLineColor
;
126 /** specifies the vertical alignment of the text in the control.
130 [optional, property
] com
::sun
::star
::style
::VerticalAlignment VerticalAlign
;
132 //-------------------------------------------------------------------------
134 /** suppresses automatic accelerator assignment on this control.
138 [optional, property
] boolean NoLabel
;
140 /** specifies the background color (RGB) of selected text in the control which is highlighted.
142 @since LibreOffice 7.5
144 [optional, property
] com
::sun
::star
::util
::Color HighlightColor
;
146 /** specifies the text color (RGB) of selected text in the control which is highlighted.
148 @since LibreOffice 7.5
150 [optional, property
] com
::sun
::star
::util
::Color HighlightTextColor
;
156 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */