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 .
20 #ifndef INCLUDED_BASCTL_SOURCE_INC_DLGEDDEF_HXX
21 #define INCLUDED_BASCTL_SOURCE_INC_DLGEDDEF_HXX
23 #include <sal/types.h>
32 OBJ_DLG_PUSHBUTTON
= 3,
33 OBJ_DLG_RADIOBUTTON
= 4,
39 OBJ_DLG_FIXEDTEXT
= 10,
40 OBJ_DLG_IMAGECONTROL
= 11,
41 OBJ_DLG_PROGRESSBAR
= 12,
42 OBJ_DLG_HSCROLLBAR
= 13,
43 OBJ_DLG_VSCROLLBAR
= 14,
44 OBJ_DLG_HFIXEDLINE
= 15,
45 OBJ_DLG_VFIXEDLINE
= 16,
46 OBJ_DLG_DATEFIELD
= 17,
47 OBJ_DLG_TIMEFIELD
= 18,
48 OBJ_DLG_NUMERICFIELD
= 19,
49 OBJ_DLG_CURRENCYFIELD
= 20,
50 OBJ_DLG_FORMATTEDFIELD
= 21,
51 OBJ_DLG_PATTERNFIELD
= 22,
52 OBJ_DLG_FILECONTROL
= 23,
53 OBJ_DLG_TREECONTROL
= 24,
54 OBJ_DLG_SPINBUTTON
= 25,
56 OBJ_DLG_FORMRADIO
= 26,
57 OBJ_DLG_FORMCHECK
= 27,
58 OBJ_DLG_FORMLIST
= 28,
59 OBJ_DLG_FORMCOMBO
= 29,
60 OBJ_DLG_FORMSPIN
= 30,
61 OBJ_DLG_FORMVSCROLL
= 31,
62 OBJ_DLG_FORMHSCROLL
= 32,
66 #define DLGED_PROP_BACKGROUNDCOLOR "BackgroundColor"
67 #define DLGED_PROP_DROPDOWN "Dropdown"
68 #define DLGED_PROP_FORMATSSUPPLIER "FormatsSupplier"
69 #define DLGED_PROP_HEIGHT "Height"
70 #define DLGED_PROP_LABEL "Label"
71 #define DLGED_PROP_NAME "Name"
72 #define DLGED_PROP_ORIENTATION "Orientation"
73 #define DLGED_PROP_POSITIONX "PositionX"
74 #define DLGED_PROP_POSITIONY "PositionY"
75 #define DLGED_PROP_STEP "Step"
76 #define DLGED_PROP_TABINDEX "TabIndex"
77 #define DLGED_PROP_TEXTCOLOR "TextColor"
78 #define DLGED_PROP_TEXTLINECOLOR "TextLineColor"
79 #define DLGED_PROP_WIDTH "Width"
80 #define DLGED_PROP_DECORATION "Decoration"
85 #endif // INCLUDED_BASCTL_SOURCE_INC_DLGEDDEF_HXX
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */