source: trunk/UFormMain.lfm

Last change on this file was 2, checked in by chronos, 7 years ago
  • Modified: Much faster parsing of lshistory output using state machine.
File size: 2.5 KB
Line 
1object FormMain: TFormMain
2 Left = 400
3 Height = 612
4 Top = 215
5 Width = 836
6 Caption = 'CC2SVN'
7 ClientHeight = 612
8 ClientWidth = 836
9 OnClose = FormClose
10 OnCreate = FormCreate
11 OnDestroy = FormDestroy
12 OnShow = FormShow
13 LCLVersion = '1.6.4.0'
14 WindowState = wsMaximized
15 object ListView1: TListView
16 Left = 0
17 Height = 540
18 Top = 72
19 Width = 836
20 Align = alClient
21 Columns = <
22 item
23 Caption = 'Time'
24 Width = 100
25 end
26 item
27 Caption = 'User'
28 Width = 100
29 end
30 item
31 Caption = 'Operation'
32 Width = 100
33 end
34 item
35 Caption = 'Location'
36 Width = 100
37 end
38 item
39 Caption = 'Element type'
40 Width = 100
41 end
42 item
43 Caption = 'Command'
44 Width = 100
45 end
46 item
47 Caption = 'Comment'
48 Width = 200
49 end
50 item
51 Caption = 'Labels'
52 Width = 100
53 end>
54 OwnerData = True
55 ReadOnly = True
56 RowSelect = True
57 TabOrder = 0
58 ViewStyle = vsReport
59 OnData = ListView1Data
60 end
61 object Panel1: TPanel
62 Left = 0
63 Height = 72
64 Top = 0
65 Width = 836
66 Align = alTop
67 BevelOuter = bvNone
68 ClientHeight = 72
69 ClientWidth = 836
70 TabOrder = 1
71 object ButtonBuild: TButton
72 Left = 8
73 Height = 25
74 Top = 40
75 Width = 115
76 Caption = 'Build'
77 OnClick = ButtonBuildClick
78 TabOrder = 0
79 end
80 object ButtonLoadHistory: TButton
81 Left = 136
82 Height = 25
83 Top = 40
84 Width = 115
85 Caption = 'Load history'
86 OnClick = ButtonLoadHistoryClick
87 TabOrder = 1
88 end
89 object EditDir: TEdit
90 Left = 136
91 Height = 23
92 Top = 8
93 Width = 600
94 Anchors = [akTop, akLeft, akRight]
95 TabOrder = 2
96 end
97 object ButtonBrowse: TButton
98 Left = 748
99 Height = 25
100 Top = 8
101 Width = 75
102 Anchors = [akTop, akRight]
103 Caption = 'Browse'
104 OnClick = ButtonBrowseClick
105 TabOrder = 3
106 end
107 object Label1: TLabel
108 Left = 8
109 Height = 15
110 Top = 13
111 Width = 72
112 Caption = 'ClearCase dir:'
113 ParentColor = False
114 end
115 end
116 object JobProgressView1: TJobProgressView
117 OwnerDraw = False
118 ShowDelay = 0
119 AutoClose = False
120 left = 153
121 top = 207
122 end
123end
Note: See TracBrowser for help on using the repository browser.