Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / awt / UnoControlFixedLineModel.idl
blob728f2c2eb900eef62633efddd6fbbb2dd540fe81
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
19 #ifndef __com_sun_star_awt_UnoControlFixedLineModel_idl__
20 #define __com_sun_star_awt_UnoControlFixedLineModel_idl__
22 #include <com/sun/star/awt/FontDescriptor.idl>
23 #include <com/sun/star/awt/UnoControlModel.idl>
24 #include <com/sun/star/util/Color.idl>
28 module com { module sun { module star { module awt {
31 /** specifies the standard model of an UnoControlFixedLine.
33 published service UnoControlFixedLineModel
35 service com::sun::star::awt::UnoControlModel;
38 /** determines whether the control is enabled or disabled.
40 [property] boolean Enabled;
43 /** specifies the font attributes of the text in the control.
45 [property] com::sun::star::awt::FontDescriptor FontDescriptor;
48 /** specifies the com::sun::star::text::FontEmphasis
49 value of the text in the control.
51 [property] short FontEmphasisMark;
54 /** specifies the com::sun::star::text::FontRelief
55 value of the text in the control.
57 [property] short FontRelief;
60 /** specifies the help text of the control.
62 [property] string HelpText;
65 /** specifies the help URL of the control.
67 [property] string HelpURL;
70 /** specifies the label of the control.
72 [property] string Label;
75 /** specifies the orientation of the control.
77 <pre>
78 0: horizontal
79 1: vertical
80 </pre>
82 [property] long Orientation;
85 /** specifies that the control will be printed with the document.
87 [property] boolean Printable;
90 /** specifies the text color (RGB) of the control.
92 [property] com::sun::star::util::Color TextColor;
95 /** specifies the text line color (RGB) of the control.
97 [property] com::sun::star::util::Color TextLineColor;
102 }; }; }; };
104 #endif
106 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */