-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDebugUnit.dfm
More file actions
138 lines (138 loc) · 2.61 KB
/
DebugUnit.dfm
File metadata and controls
138 lines (138 loc) · 2.61 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
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
object DebugForm: TDebugForm
Left = 884
Top = 138
BorderStyle = bsDialog
Caption = 'Debug options'
ClientHeight = 296
ClientWidth = 330
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
Scaled = False
OnCreate = FormCreate
OnHide = FormHide
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Button1: TButton
Left = 83
Top = 256
Width = 75
Height = 25
Caption = 'OK'
TabOrder = 0
OnClick = Button1Click
end
object CheckBox1: TCheckBox
Left = 24
Top = 16
Width = 297
Height = 17
Caption = 'Enable debug mode'
TabOrder = 1
end
object CheckBox2: TCheckBox
Left = 24
Top = 40
Width = 297
Height = 17
Caption = 'Filter ping-pong in debug mode'
TabOrder = 2
end
object Button2: TButton
Left = 171
Top = 256
Width = 75
Height = 25
Cancel = True
Caption = 'Cancel'
TabOrder = 3
OnClick = Button2Click
end
object GroupBox1: TGroupBox
Left = 24
Top = 176
Width = 209
Height = 58
Caption = 'Traffic (cumulative)'
TabOrder = 4
object Label2: TLabel
Left = 8
Top = 36
Width = 53
Height = 13
Caption = 'Data recv.:'
end
object Label1: TLabel
Left = 8
Top = 19
Width = 49
Height = 13
Caption = 'Data sent:'
end
object DataSentLabel: TLabel
Left = 112
Top = 19
Width = 34
Height = 13
Caption = '0 bytes'
end
object DataReceivedLabel: TLabel
Left = 112
Top = 36
Width = 34
Height = 13
Caption = '0 bytes'
end
end
object CheckBox3: TCheckBox
Left = 24
Top = 64
Width = 305
Height = 17
Caption = 'Ignore server version incompatibility'
TabOrder = 5
end
object CheckBox4: TCheckBox
Left = 24
Top = 88
Width = 297
Height = 17
Caption = 'Login with password on lan server'
TabOrder = 6
end
object CheckBox5: TCheckBox
Left = 24
Top = 112
Width = 297
Height = 17
Caption = 'Ignore redirects'
TabOrder = 7
end
object Button3: TButton
Left = 24
Top = 136
Width = 209
Height = 25
Caption = 'Open debug script form'
TabOrder = 8
OnClick = Button3Click
end
object OpenDialog1: TOpenDialog
Filter = 'LUA script|*.lua'
Left = 280
Top = 224
end
object TrafficTimer: TTimer
Enabled = False
Interval = 200
OnTimer = TrafficTimerTimer
Left = 16
Top = 224
end
end