1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_BASCTL_SOURCE_INC_DLGEDDEF_HXX
#define INCLUDED_BASCTL_SOURCE_INC_DLGEDDEF_HXX
namespace basctl
{
enum
{
OBJ_DLG_CONTROL = 1,
OBJ_DLG_DIALOG = 2,
OBJ_DLG_PUSHBUTTON = 3,
OBJ_DLG_RADIOBUTTON = 4,
OBJ_DLG_CHECKBOX = 5,
OBJ_DLG_LISTBOX = 6,
OBJ_DLG_COMBOBOX = 7,
OBJ_DLG_GROUPBOX = 8,
OBJ_DLG_EDIT = 9,
OBJ_DLG_FIXEDTEXT = 10,
OBJ_DLG_IMAGECONTROL = 11,
OBJ_DLG_PROGRESSBAR = 12,
OBJ_DLG_HSCROLLBAR = 13,
OBJ_DLG_VSCROLLBAR = 14,
OBJ_DLG_HFIXEDLINE = 15,
OBJ_DLG_VFIXEDLINE = 16,
OBJ_DLG_DATEFIELD = 17,
OBJ_DLG_TIMEFIELD = 18,
OBJ_DLG_NUMERICFIELD = 19,
OBJ_DLG_CURRENCYFIELD = 20,
OBJ_DLG_FORMATTEDFIELD = 21,
OBJ_DLG_PATTERNFIELD = 22,
OBJ_DLG_FILECONTROL = 23,
OBJ_DLG_TREECONTROL = 24,
OBJ_DLG_SPINBUTTON = 25,
OBJ_DLG_GRIDCONTROL = 26,
OBJ_DLG_HYPERLINKCONTROL = 27,
OBJ_DLG_FORMRADIO = 28,
OBJ_DLG_FORMCHECK = 29,
OBJ_DLG_FORMLIST = 30,
OBJ_DLG_FORMCOMBO = 31,
OBJ_DLG_FORMSPIN = 32,
OBJ_DLG_FORMVSCROLL = 33,
OBJ_DLG_FORMHSCROLL = 34,
};
// control properties
#define DLGED_PROP_BACKGROUNDCOLOR "BackgroundColor"
#define DLGED_PROP_DROPDOWN "Dropdown"
#define DLGED_PROP_FORMATSSUPPLIER "FormatsSupplier"
#define DLGED_PROP_HEIGHT "Height"
#define DLGED_PROP_LABEL "Label"
#define DLGED_PROP_NAME "Name"
#define DLGED_PROP_ORIENTATION "Orientation"
#define DLGED_PROP_POSITIONX "PositionX"
#define DLGED_PROP_POSITIONY "PositionY"
#define DLGED_PROP_STEP "Step"
#define DLGED_PROP_TABINDEX "TabIndex"
#define DLGED_PROP_TEXTCOLOR "TextColor"
#define DLGED_PROP_TEXTLINECOLOR "TextLineColor"
#define DLGED_PROP_WIDTH "Width"
#define DLGED_PROP_DECORATION "Decoration"
} // namespace basctl
#endif // INCLUDED_BASCTL_SOURCE_INC_DLGEDDEF_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|