forked from HuichanKIM/Ollama-Delphi-GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unit_DosCommander.dfm
145 lines (145 loc) · 3.05 KB
/
Unit_DosCommander.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
object Form_DosCommander: TForm_DosCommander
Left = 0
Top = 0
ActiveControl = Button_OK
BorderStyle = bsDialog
Caption = 'Dos Commander'
ClientHeight = 141
ClientWidth = 396
Color = clWindow
Ctl3D = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
FormStyle = fsStayOnTop
KeyPreview = True
Position = poDesigned
RoundedCorners = rcOn
OnClick = Label_ListClick
OnKeyPress = FormKeyPress
OnShow = FormShow
TextHeight = 15
object GroupBox1: TGroupBox
Left = 8
Top = 8
Width = 377
Height = 81
Caption = 'Command / Flag'
TabOrder = 0
object Label_Ollama: TLabel
Left = 19
Top = 28
Width = 49
Height = 15
Caption = 'Ollama +'
end
object Label_Help: TLabel
Tag = 2
Left = 150
Top = 53
Width = 33
Height = 15
Cursor = crHandPoint
Caption = '--help'
OnClick = Label_ListClick
end
object Label_Version: TLabel
Tag = 3
Left = 191
Top = 53
Width = 48
Height = 15
Cursor = crHandPoint
Caption = '--version'
OnClick = Label_ListClick
end
object Label_List: TLabel
Left = 94
Top = 53
Width = 15
Height = 15
Cursor = crHandPoint
Caption = 'list'
OnClick = Label_ListClick
end
object Label_Ps: TLabel
Tag = 1
Left = 124
Top = 53
Width = 12
Height = 15
Cursor = crHandPoint
Caption = 'ps'
OnClick = Label_ListClick
end
object Label_Reserved: TLabel
Left = 24
Top = 53
Width = 58
Height = 15
Caption = '[ reserved ]'
StyleElements = [seClient, seBorder]
end
object Label_Run: TLabel
Tag = 4
Left = 300
Top = 53
Width = 18
Height = 15
Cursor = crHandPoint
Caption = 'run'
StyleElements = [seClient, seBorder]
OnClick = Label_ListClick
end
object Label_Pull: TLabel
Tag = 6
Left = 333
Top = 53
Width = 15
Height = 15
Cursor = crHandPoint
Caption = 'rm'
StyleElements = [seClient, seBorder]
OnClick = Label_ListClick
end
object Label_Show: TLabel
Tag = 3
Left = 256
Top = 53
Width = 28
Height = 15
Cursor = crHandPoint
Caption = 'show'
OnClick = Label_ListClick
end
object Edit_CommandFlag: TEdit
Left = 80
Top = 26
Width = 273
Height = 21
TabOrder = 0
Text = '--help'
OnKeyPress = Edit_CommandFlagKeyPress
end
end
object Button_OK: TButton
Left = 244
Top = 108
Width = 75
Height = 25
Caption = 'OK'
ModalResult = 1
TabOrder = 1
end
object Button_Cancel: TButton
Left = 332
Top = 108
Width = 53
Height = 25
Caption = 'Cancel'
ModalResult = 2
TabOrder = 2
end
end