-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfrmFlagList1.dfm
More file actions
133 lines (133 loc) · 2.77 KB
/
frmFlagList1.dfm
File metadata and controls
133 lines (133 loc) · 2.77 KB
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
object frmFlagList: TfrmFlagList
Left = 0
Top = 0
BorderStyle = bsDialog
Caption = 'Flag List'
ClientHeight = 464
ClientWidth = 370
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
Position = poMainFormCenter
ShowHint = True
DesignSize = (
370
464)
TextHeight = 15
object lbl1: TLabel
Left = 8
Top = 16
Width = 129
Height = 14
AutoSize = False
Caption = 'Select flag(s):'
end
object Label1: TLabel
Left = 164
Top = 16
Width = 197
Height = 14
Alignment = taRightJustify
AutoSize = False
Caption = 'Use Ctrl or Shift to select flags'
end
object lstFlags: TListBox
Left = 8
Top = 36
Width = 354
Height = 252
ItemHeight = 15
MultiSelect = True
TabOrder = 0
end
object btnEditFlags: TButton
Left = 279
Top = 319
Width = 82
Height = 25
Hint = 'Click to edit main list of flags.'
Caption = 'Edit flags...'
TabOrder = 1
OnClick = btnEditFlagsClick
end
object grp1: TGroupBox
Left = 8
Top = 319
Width = 257
Height = 130
Caption = 'Selected Flag(s) will have these values:'
TabOrder = 2
StyleElements = []
object lblValue: TLabel
Left = 16
Top = 24
Width = 31
Height = 15
Caption = 'Value:'
end
object lblMissionExp: TLabel
Left = 16
Top = 72
Width = 158
Height = 15
Caption = 'Mission Expiration (0 = none):'
end
object cbbFlagValue: TComboBox
Left = 35
Top = 44
Width = 145
Height = 22
Style = csOwnerDrawFixed
ItemIndex = 0
TabOrder = 0
Text = 'True'
StyleElements = []
Items.Strings = (
'True'
'False')
end
object cbbFlagExp: TComboBox
Left = 35
Top = 92
Width = 145
Height = 22
Style = csOwnerDrawFixed
TabOrder = 1
StyleElements = []
end
end
object btnOk: TButton
Left = 279
Top = 372
Width = 82
Height = 37
Caption = 'Ok'
Default = True
TabOrder = 3
OnClick = btnOkClick
end
object btnCancel: TButton
Left = 279
Top = 415
Width = 82
Height = 35
Cancel = True
Caption = 'Cancel'
TabOrder = 4
OnClick = btnCancelClick
end
object edtSearchInFlags: TEdit
Left = 8
Top = 294
Width = 354
Height = 23
Anchors = [akLeft, akTop, akRight]
PopupMenu = frmEventInsAdd.MemoPopup
TabOrder = 5
TextHint = 'Search in flags (case-insensitive, partial match, multi-select)'
OnChange = edtSearchInFlagsChange
end
end