-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathufrm_options.lfm
118 lines (118 loc) · 2.46 KB
/
ufrm_options.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
object frm_Options: Tfrm_Options
Left = 449
Height = 336
Top = 289
Width = 479
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'frm_Options'
ClientHeight = 336
ClientWidth = 479
Font.Height = -12
Font.Name = 'DejaVu Sans'
KeyPreview = True
OnCreate = FormCreate
OnKeyDown = FormKeyDown
Position = poScreenCenter
LCLVersion = '1.4.0.4'
object pc_Main: TPageControl
Left = 8
Height = 280
Top = 8
Width = 464
ActivePage = ts_General
TabIndex = 0
TabOrder = 0
object ts_General: TTabSheet
Caption = 'General'
ClientHeight = 244
ClientWidth = 456
object lbl_OpenPathWith: TLabel
Left = 16
Height = 14
Top = 16
Width = 98
Caption = 'Open path with:'
ParentColor = False
end
object cb_OpenPathWith: TComboBox
Left = 16
Height = 26
Top = 40
Width = 168
ItemHeight = 0
ItemIndex = 0
Items.Strings = (
'OS default'
'Nautilus'
'Nemo'
'Other...'
)
OnChange = cb_OpenPathWithChange
Style = csDropDownList
TabOrder = 0
Text = 'OS default'
end
object edt_OpenPathWith: TEdit
Left = 192
Height = 20
Top = 43
Width = 248
TabOrder = 1
Text = 'edt_OpenPathWith'
end
object cb_ShowOpFailWarns: TCheckBox
Left = 16
Height = 26
Top = 88
Width = 240
AutoSize = False
Caption = 'Show operation failure warnings'
TabOrder = 2
end
end
object ts_OpenWith: TTabSheet
Caption = 'Open With'
ClientHeight = 244
ClientWidth = 456
object lb_OpenWithApps: TListBox
Left = 8
Height = 200
Top = 8
Width = 440
ItemHeight = 0
MultiSelect = True
ScrollWidth = 436
TabOrder = 0
TopIndex = -1
end
object btn_Delete: TButton
Left = 8
Height = 25
Top = 216
Width = 80
Caption = '&Delete'
OnClick = btn_DeleteClick
TabOrder = 1
end
end
end
object btn_Ok: TButton
Left = 288
Height = 32
Top = 296
Width = 88
Caption = 'O&K'
ModalResult = 1
TabOrder = 1
end
object btn_Cancel: TButton
Left = 384
Height = 32
Top = 296
Width = 88
Caption = 'Ca&ncel'
ModalResult = 2
TabOrder = 2
end
end