-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDatalogUnit.lfm
153 lines (153 loc) · 3.16 KB
/
DatalogUnit.lfm
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
object DatalogForm: TDatalogForm
Left = 237
Height = 337
Top = 150
Width = 345
HelpContext = 19
BorderIcons = [biSystemMenu, biHelp]
BorderStyle = bsDialog
Caption = 'Datalog'
ClientHeight = 337
ClientWidth = 345
Font.Height = -11
Font.Name = 'MS Sans Serif'
LCLVersion = '0.9.25'
object Label1: TLabel
Left = 208
Height = 17
Top = 40
Width = 127
Caption = 'Set Datalog Size:'
ParentColor = False
end
object DatalogMemo: TMemo
Left = 8
Height = 313
Top = 8
Width = 185
HelpContext = 19002
Font.CharSet = ANSI_CHARSET
Font.Height = -12
Font.Name = 'Courier New'
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 0
end
object UploadBtn: TButton
Left = 208
Height = 25
Top = 8
Width = 83
HelpContext = 19003
Caption = '&Upload Datalog'
Default = True
OnClick = UploadBtnClick
TabOrder = 1
end
object ClearBtn: TButton
Left = 208
Height = 25
Top = 85
Width = 81
HelpContext = 19004
Caption = '&Clear Datalog'
OnClick = ClearBtnClick
TabOrder = 3
end
object SizeBox: TComboBox
Left = 208
Height = 21
Top = 56
Width = 81
HelpContext = 19005
AutoCompleteText = [cbactEndOfLineComplete, cbactSearchAscending]
Items.Strings = (
'10'
'20'
'50'
'100'
'200'
'500'
'1000'
)
MaxLength = 65535
OnChange = SizeBoxChange
TabOrder = 2
end
object SaveBtn: TButton
Left = 208
Height = 25
Top = 232
Width = 81
HelpContext = 19006
Caption = '&Save'
OnClick = SaveBtnClick
TabOrder = 7
end
object btnAnalyze: TButton
Left = 208
Height = 25
Top = 125
Width = 81
HelpContext = 19007
Caption = '&Analyze'
Enabled = False
OnClick = btnAnalyzeClick
TabOrder = 4
end
object btnAnalyzeXY: TButton
Left = 208
Height = 25
Top = 180
Width = 81
HelpContext = 19008
Caption = '&XY Analyze'
Enabled = False
OnClick = btnAnalyzeXYClick
TabOrder = 6
end
object btnLoad: TButton
Left = 208
Height = 25
Top = 264
Width = 81
HelpContext = 19009
Caption = '&Load'
OnClick = btnLoadClick
TabOrder = 8
end
object chkRelativeTime: TCheckBox
Left = 208
Height = 24
Top = 157
Width = 118
HelpContext = 19010
Caption = 'Relative time'
TabOrder = 5
end
object btnHelp: TButton
Left = 208
Height = 25
Top = 296
Width = 81
HelpContext = 19011
Caption = '&Help'
OnClick = btnHelpClick
TabOrder = 9
end
object dlgSave: TSaveDialog
Title = 'Save Datalog'
DefaultExt = '.txt'
FileName = 'datalog.txt'
Filter = 'Text Files (*.txt)|*.txt'
Options = [ofOverwritePrompt, ofHideReadOnly]
left = 240
top = 240
end
object dlgOpen: TOpenDialog
Filter = 'Text Files (*.txt)|*.txt|All Files (*.*)|*.*'
Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
left = 208
top = 240
end
end