source: trunk/Forms/USourceSelection.lfm

Last change on this file was 9, checked in by chronos, 13 years ago
  • Fixed: Instance compilation on Linux.
File size: 1.7 KB
Line 
1object SourceSelectionForm: TSourceSelectionForm
2 Left = 261
3 Height = 468
4 Top = 118
5 Width = 653
6 Caption = 'Source selection'
7 ClientHeight = 468
8 ClientWidth = 653
9 OnCreate = FormCreate
10 OnDestroy = FormDestroy
11 OnShow = FormShow
12 LCLVersion = '0.9.31'
13 object ListView1: TListView
14 Left = 7
15 Height = 421
16 Top = 8
17 Width = 641
18 Anchors = [akTop, akLeft, akRight, akBottom]
19 Columns = <
20 item
21 Caption = 'Name'
22 Width = 110
23 end
24 item
25 Caption = 'Type'
26 Width = 80
27 end
28 item
29 Caption = 'Version'
30 Width = 60
31 end
32 item
33 Caption = 'Revision'
34 end
35 item
36 Caption = 'Date'
37 Width = 60
38 end
39 item
40 Caption = 'Downloaded'
41 end
42 item
43 Caption = 'Source URL'
44 Width = 300
45 end>
46 OwnerData = True
47 ReadOnly = True
48 RowSelect = True
49 TabOrder = 0
50 ViewStyle = vsReport
51 OnData = ListView1Data
52 end
53 object ButtonOk: TButton
54 Left = 573
55 Height = 25
56 Top = 440
57 Width = 75
58 Anchors = [akRight, akBottom]
59 Caption = 'Ok'
60 ModalResult = 1
61 TabOrder = 1
62 end
63 object ButtonCancel: TButton
64 Left = 488
65 Height = 25
66 Top = 440
67 Width = 75
68 Anchors = [akRight, akBottom]
69 Caption = 'Cancel'
70 ModalResult = 2
71 TabOrder = 2
72 end
73 object ButtonUpdateSource: TButton
74 Left = 10
75 Height = 25
76 Top = 440
77 Width = 75
78 Anchors = [akLeft, akBottom]
79 Caption = 'Update list'
80 OnClick = ButtonUpdateSourceClick
81 TabOrder = 3
82 end
83end
Note: See TracBrowser for help on using the repository browser.