-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
ShopsForm.dfm
193 lines (193 loc) · 4.13 KB
/
ShopsForm.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
object fShopsForm: TfShopsForm
Left = 350
Top = 111
BorderStyle = bsDialog
Caption = 'Shops'
ClientHeight = 660
ClientWidth = 920
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object lblShops: TLabel
Left = 8
Top = 8
Width = 33
Height = 13
Caption = 'Shops:'
end
object lblLegend: TLabel
Left = 723
Top = 8
Width = 190
Height = 13
Alignment = taRightJustify
Caption = '* selected ^ untracked ! worst result'
Font.Charset = DEFAULT_CHARSET
Font.Color = clGrayText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object lvShops: TListView
Left = 8
Top = 24
Width = 905
Height = 178
Columns = <
item
Width = 30
end
item
Caption = 'Shop name'
Width = 200
end
item
Caption = 'Item URL'
Width = 480
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
PopupMenu = pmnShops
TabOrder = 0
ViewStyle = vsReport
OnDblClick = lvShopsDblClick
OnSelectItem = lvShopsSelectItem
end
object gbShopDetails: TGroupBox
Left = 8
Top = 208
Width = 905
Height = 401
Caption = 'Shop details'
TabOrder = 1
inline frmShopFrame: TfrmShopFrame
Left = 8
Top = 16
Width = 889
Height = 378
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 0
end
end
object btnClose: TButton
Left = 776
Top = 624
Width = 137
Height = 25
Caption = 'Close'
TabOrder = 6
OnClick = btnCloseClick
end
object btnUpdateAll: TButton
Left = 488
Top = 624
Width = 137
Height = 25
Caption = 'Update all shops...'
TabOrder = 4
OnClick = btnUpdateAllClick
end
object lePriceLowest: TLabeledEdit
Left = 8
Top = 632
Width = 105
Height = 21
EditLabel.Width = 64
EditLabel.Height = 13
EditLabel.Caption = 'Lowest price:'
ReadOnly = True
TabOrder = 2
end
object lePriceSelected: TLabeledEdit
Left = 120
Top = 632
Width = 105
Height = 21
EditLabel.Width = 71
EditLabel.Height = 13
EditLabel.Caption = 'Selected price:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
ReadOnly = True
TabOrder = 3
end
object btnUpdateHistory: TButton
Left = 632
Top = 624
Width = 137
Height = 25
Caption = 'Update all shops history'
TabOrder = 5
OnClick = btnUpdateHistoryClick
end
object pmnShops: TPopupMenu
OnPopup = pmnShopsPopup
Left = 56
object mniSH_Add: TMenuItem
Caption = 'Add new shop'
ShortCut = 45
OnClick = mniSH_AddClick
end
object mniSH_AddFromSub: TMenuItem
Caption = 'Add new shop from template'
end
object mniSH_AddFromTemplate: TMenuItem
Caption = 'Add new shop from template...'
ShortCut = 16429
OnClick = mniSH_AddFromTemplateClick
end
object mniSH_Remove: TMenuItem
Caption = 'Remove selected shop'
ShortCut = 46
OnClick = mniSH_RemoveClick
end
object mniSH_RemoveAll: TMenuItem
Caption = 'Remove all shops'
ShortCut = 8238
OnClick = mniSH_RemoveAllClick
end
object N1: TMenuItem
Caption = '-'
end
object mniSH_MoveUp: TMenuItem
Caption = 'Move up'
OnClick = mniSH_MoveUpClick
end
object mniSH_MoveDown: TMenuItem
Caption = 'Move down'
OnClick = mniSH_MoveDownClick
end
end
end