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 BASCTL_DLGEDDEF_HXX
21 #define BASCTL_DLGEDDEF_HXX
23 #include <sal/types.h>
28 const sal_uInt32 DlgInventor
= sal_uInt32('D')*0x00000001+
29 sal_uInt32('L')*0x00000100+
30 sal_uInt32('G')*0x00010000+
31 sal_uInt32('1')*0x01000000;
37 OBJ_DLG_PUSHBUTTON
= 3,
38 OBJ_DLG_RADIOBUTTON
= 4,
44 OBJ_DLG_FIXEDTEXT
= 10,
45 OBJ_DLG_IMAGECONTROL
= 11,
46 OBJ_DLG_PROGRESSBAR
= 12,
47 OBJ_DLG_HSCROLLBAR
= 13,
48 OBJ_DLG_VSCROLLBAR
= 14,
49 OBJ_DLG_HFIXEDLINE
= 15,
50 OBJ_DLG_VFIXEDLINE
= 16,
51 OBJ_DLG_DATEFIELD
= 17,
52 OBJ_DLG_TIMEFIELD
= 18,
53 OBJ_DLG_NUMERICFIELD
= 19,
54 OBJ_DLG_CURRENCYFIELD
= 20,
55 OBJ_DLG_FORMATTEDFIELD
= 21,
56 OBJ_DLG_PATTERNFIELD
= 22,
57 OBJ_DLG_FILECONTROL
= 23,
58 OBJ_DLG_TREECONTROL
= 24,
59 OBJ_DLG_SPINBUTTON
= 25,
61 OBJ_DLG_FORMRADIO
= 26,
62 OBJ_DLG_FORMCHECK
= 27,
63 OBJ_DLG_FORMLIST
= 28,
64 OBJ_DLG_FORMCOMBO
= 29,
65 OBJ_DLG_FORMSPIN
= 30,
66 OBJ_DLG_FORMVSCROLL
= 31,
67 OBJ_DLG_FORMHSCROLL
= 32,
71 #define DLGED_PROP_BACKGROUNDCOLOR "BackgroundColor"
72 #define DLGED_PROP_DROPDOWN "Dropdown"
73 #define DLGED_PROP_FORMATSSUPPLIER "FormatsSupplier"
74 #define DLGED_PROP_HEIGHT "Height"
75 #define DLGED_PROP_LABEL "Label"
76 #define DLGED_PROP_NAME "Name"
77 #define DLGED_PROP_ORIENTATION "Orientation"
78 #define DLGED_PROP_POSITIONX "PositionX"
79 #define DLGED_PROP_POSITIONY "PositionY"
80 #define DLGED_PROP_STEP "Step"
81 #define DLGED_PROP_TABINDEX "TabIndex"
82 #define DLGED_PROP_TEXTCOLOR "TextColor"
83 #define DLGED_PROP_TEXTLINECOLOR "TextLineColor"
84 #define DLGED_PROP_WIDTH "Width"
85 #define DLGED_PROP_DECORATION "Decoration"
90 #endif // BASCTL_DLGEDDEF_HXX
92 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */