unit1.lfm
1.4 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
object Form1: TForm1
Left = 366
Height = 623
Top = 117
Width = 852
Caption = 'Next-gen Kaldi: Generate Subtitles'
ClientHeight = 623
ClientWidth = 852
OnClose = FormClose
OnCreate = FormCreate
LCLVersion = '3.4.0.0'
object FileNameEdt: TEdit
Left = 200
Height = 22
Top = 40
Width = 440
TabOrder = 0
OnChange = FileNameEdtChange
end
object SelectFileBtn: TButton
Left = 96
Height = 25
Top = 40
Width = 97
Caption = 'Select a file...'
TabOrder = 1
OnClick = SelectFileBtnClick
end
object StartBtn: TButton
Left = 656
Height = 25
Top = 37
Width = 75
Caption = 'Start'
TabOrder = 2
OnClick = StartBtnClick
end
object InitBtn: TButton
Left = 280
Height = 25
Top = 8
Width = 280
Caption = 'Click me to intialize models before you start'
TabOrder = 3
OnClick = InitBtnClick
end
object ResultMemo: TMemo
Left = 24
Height = 488
Top = 72
Width = 800
ScrollBars = ssAutoBoth
TabOrder = 4
end
object ProgressBar: TProgressBar
Left = 32
Height = 16
Top = 592
Width = 792
TabOrder = 5
end
object ProgressLabel: TLabel
Left = 770
Height = 16
Top = 568
Width = 8
Caption = '0'
end
object SelectFileDlg: TOpenDialog
Title = 'Open a wave file'
Left = 600
Top = 488
end
end