-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathProjectEditorProgram.dfm
158 lines (158 loc) · 3.27 KB
/
ProjectEditorProgram.dfm
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
object ProjectEditorProgramForm: TProjectEditorProgramForm
Left = 47
Top = 204
Width = 903
Height = 450
Caption = ' SynProject - Integrated Reference Class Browser'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
PixelsPerInch = 96
TextHeight = 13
object Panel1: TPanel
Left = 0
Top = 0
Width = 895
Height = 41
Align = alTop
TabOrder = 0
DesignSize = (
895
41)
object lUnitName: TLabel
Left = 230
Top = 13
Width = 53
Height = 13
Alignment = taRightJustify
Caption = 'Unit Name:'
end
object lSADSection: TLabel
Left = 29
Top = 13
Width = 62
Height = 13
Alignment = taRightJustify
Caption = 'SAD Section:'
end
object cbUnitName: TComboBox
Left = 287
Top = 10
Width = 170
Height = 21
Style = csDropDownList
DropDownCount = 32
ItemHeight = 13
TabOrder = 0
OnChange = cbUnitNameChange
end
object btnOk: TButton
Left = 713
Top = 8
Width = 74
Height = 25
Anchors = [akTop, akRight]
Caption = 'Save'
ModalResult = 1
TabOrder = 1
end
object btnCancel: TButton
Left = 809
Top = 8
Width = 74
Height = 25
Anchors = [akTop, akRight]
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 2
end
object cbSADSection: TComboBox
Left = 96
Top = 10
Width = 113
Height = 21
Style = csDropDownList
ItemHeight = 13
TabOrder = 3
OnChange = cbSADSectionChange
end
object leUnitDescription: TLabeledEdit
Left = 552
Top = 10
Width = 148
Height = 21
Anchors = [akLeft, akTop, akRight]
EditLabel.Width = 79
EditLabel.Height = 13
EditLabel.Caption = 'Unit Description:'
LabelPosition = lpLeft
LabelSpacing = 3
TabOrder = 4
OnExit = leUnitDescriptionExit
end
end
object pagTypes: TPageControl
Left = 0
Top = 41
Width = 710
Height = 375
Align = alClient
TabOrder = 1
end
object PanelRight: TPanel
Left = 710
Top = 41
Width = 185
Height = 375
Align = alRight
TabOrder = 2
DesignSize = (
185
375)
object l1: TLabel
Left = 8
Top = 328
Width = 166
Height = 13
Anchors = [akLeft, akBottom]
Caption = 'Double-click any left item to add it.'
end
object lstValues: TListBox
Left = 1
Top = 1
Width = 183
Height = 320
Align = alTop
Anchors = [akLeft, akTop, akRight, akBottom]
ItemHeight = 13
TabOrder = 0
OnClick = lstValuesClick
end
object btnDeleteItem: TButton
Left = 8
Top = 344
Width = 75
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Delete item'
TabOrder = 1
OnClick = btnDeleteItemClick
end
object btnClearList: TButton
Left = 88
Top = 344
Width = 75
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Clear list'
TabOrder = 2
OnClick = btnClearListClick
end
end
end