forked from MakeMagazinDE/GRBLize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deviceselect.dfm
152 lines (152 loc) · 3.5 KB
/
deviceselect.dfm
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
object deviceselectbox: Tdeviceselectbox
Left = 243
Top = 108
BorderStyle = bsDialog
Caption = 'Select USB Device'
ClientHeight = 249
ClientWidth = 505
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
PixelsPerInch = 96
TextHeight = 13
object Panel1: TPanel
Left = 0
Top = 0
Width = 505
Height = 249
Caption = 'Panel1'
TabOrder = 0
object Label1: TLabel
Left = 18
Top = 18
Width = 231
Height = 16
Caption = 'Select FTDI Cable or FT232R device:'
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object Label2: TLabel
Left = 18
Top = 183
Width = 107
Height = 16
Caption = 'or use serial port'
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object Label3: TLabel
Left = 18
Top = 215
Width = 128
Height = 16
Caption = 'FTDI/COM baud rate'
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object OKButton: TButton
Left = 416
Top = 198
Width = 65
Height = 23
Caption = 'OK'
Default = True
TabOrder = 0
OnClick = OKButtonClick
IsControl = True
end
object ListView1: TListView
Left = 18
Top = 40
Width = 463
Height = 129
Columns = <
item
Caption = 'USB Device'
Width = 100
end
item
Caption = 'FTDI Serial'
Width = 100
end
item
Caption = 'Description'
Width = 250
end>
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ReadOnly = True
RowSelect = True
ParentFont = False
ShowWorkAreas = True
TabOrder = 1
ViewStyle = vsReport
OnDblClick = ListView1DblClick
end
object CancelButton: TButton
Left = 345
Top = 197
Width = 65
Height = 25
Caption = 'Cancel'
TabOrder = 2
OnClick = CancelButtonClick
IsControl = True
end
object ComboBoxComPort: TComboBox
Left = 139
Top = 182
Width = 139
Height = 21
Style = csDropDownList
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ItemIndex = 0
ParentFont = False
TabOrder = 3
Text = 'none (FTDI direct)'
Items.Strings = (
'none (FTDI direct)')
end
object EditBaudrate: TEdit
Left = 152
Top = 214
Width = 57
Height = 21
BevelInner = bvNone
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
MaxLength = 6
NumbersOnly = True
ParentFont = False
TabOrder = 4
Text = '115200'
end
end
end