-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
ShopSelectForm.dfm
196 lines (196 loc) · 4.56 KB
/
ShopSelectForm.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
object fShopSelectForm: TfShopSelectForm
Left = 261
Top = 75
BorderIcons = [biSystemMenu, biMaximize]
BorderStyle = bsDialog
Caption = 'Shop selection'
ClientHeight = 664
ClientWidth = 984
Color = clBtnFace
Constraints.MinHeight = 100
Constraints.MinWidth = 100
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object lblShops: TLabel
Left = 8
Top = 8
Width = 33
Height = 13
Caption = 'Shops:'
end
object lblItems: TLabel
Left = 472
Top = 8
Width = 175
Height = 13
Caption = 'Items available in the selected shop:'
end
object lblItemsHint: TLabel
Left = 762
Top = 8
Width = 215
Height = 13
Alignment = taRightJustify
Caption = 'Doubleclick to (de)select the item in this shop'
Font.Charset = DEFAULT_CHARSET
Font.Color = clGrayText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object lbItems: TListBox
Left = 472
Top = 24
Width = 505
Height = 428
Style = lbOwnerDrawFixed
IntegralHeight = True
ItemHeight = 53
PopupMenu = pmnItems
TabOrder = 1
OnClick = lbItemsClick
OnDblClick = lbItemsDblClick
OnDrawItem = lbItemsDrawItem
OnMouseDown = lbItemsMouseDown
end
object lvShops: TListView
Left = 8
Top = 24
Width = 457
Height = 430
Columns = <
item
Caption = 'Shop'
Width = 150
end
item
Alignment = taRightJustify
Caption = 'Items'
Width = 60
end
item
Alignment = taRightJustify
Caption = 'Available'
Width = 60
end
item
Alignment = taRightJustify
Caption = 'Selected'
Width = 60
end
item
Alignment = taRightJustify
Caption = 'Price of selected'
Width = 100
end>
HideSelection = False
ReadOnly = True
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnSelectItem = lvShopsSelectItem
end
object grbItemShops: TGroupBox
Left = 8
Top = 456
Width = 969
Height = 201
Caption = 'Item shops'
TabOrder = 2
object lvItemShops: TListView
Left = 8
Top = 16
Width = 953
Height = 178
Columns = <
item
Width = 30
end
item
Caption = 'Shop name'
Width = 200
end
item
Caption = 'Item URL'
Width = 525
end
item
Alignment = taRightJustify
Caption = 'Available'
Width = 85
end
item
Alignment = taRightJustify
Caption = 'Price'
Width = 85
end>
ColumnClick = False
GridLines = True
HideSelection = False
ReadOnly = True
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnDblClick = lvItemShopsDblClick
OnSelectItem = lvShopsSelectItem
end
end
object pmnItems: TPopupMenu
OnPopup = pmnItemsPopup
Left = 944
object mniIT_EditTextTag: TMenuItem
Caption = 'Edit textual tag...'
ShortCut = 16468
OnClick = mniIT_EditTextTagClick
end
object mniIT_EditNumTag: TMenuItem
Caption = 'Edit numerical tag...'
ShortCut = 16462
OnClick = mniIT_EditNumTagClick
end
object N1: TMenuItem
Caption = '-'
end
object mniIT_EditTextTagSelected: TMenuItem
Caption = 'Edit textual tag of selected items...'
OnClick = mniIT_EditTextTagSelectedClick
end
object mniIT_EditNumTagSelected: TMenuItem
Caption = 'Edit numerical tag of selected items...'
OnClick = mniIT_EditNumTagSelectedClick
end
object N2: TMenuItem
Caption = '-'
end
object mniIT_EditTextTagAvailable: TMenuItem
Caption = 'Edit textual tag of available items...'
OnClick = mniIT_EditTextTagAvailableClick
end
object mniIT_EditNumTagAvailable: TMenuItem
Caption = 'Edit numerical tag of available items...'
OnClick = mniIT_EditNumTagAvailableClick
end
object N3: TMenuItem
Caption = '-'
end
object mniIT_EditTextTagAll: TMenuItem
Caption = 'Edit textual tag of all items...'
OnClick = mniIT_EditTextTagAllClick
end
object mniIT_EditNumTagAll: TMenuItem
Caption = 'Edit numerical tag of all items...'
OnClick = mniIT_EditNumTagAllClick
end
end
end