-
Notifications
You must be signed in to change notification settings - Fork 6
/
frmTaskGPT.dfm
105 lines (105 loc) · 2.25 KB
/
frmTaskGPT.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
object taskForm: TtaskForm
Left = 0
Top = 0
Caption = 'TaskGPT - A ChatGPT System Assistant'
ClientHeight = 310
ClientWidth = 565
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
Padding.Left = 8
Padding.Top = 8
Padding.Right = 8
Padding.Bottom = 8
Position = poScreenCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
TextHeight = 15
object Label1: TLabel
Left = 8
Top = 8
Width = 549
Height = 15
Align = alTop
Caption =
'TaskGPT is a ChatGPT based AI assitant that will launch applicat' +
'ions and do some scripting for you.'
ExplicitWidth = 519
end
object SearchBox1: TSearchBox
Left = 8
Top = 279
Width = 549
Height = 23
Align = alBottom
TabOrder = 0
TextHint = 'Write your desired action on your PC'
end
object grpTaskAnswer: TGroupBox
AlignWithMargins = True
Left = 8
Top = 31
Width = 549
Height = 240
Margins.Left = 0
Margins.Top = 8
Margins.Right = 0
Margins.Bottom = 8
Align = alClient
Caption = 'ChatGPT Answer'
TabOrder = 1
DesignSize = (
549
240)
object Label2: TLabel
Left = 16
Top = 32
Width = 63
Height = 15
Caption = 'Description:'
end
object Label3: TLabel
Left = 16
Top = 72
Width = 38
Height = 15
Caption = 'Action:'
end
object Label4: TLabel
Left = 16
Top = 112
Width = 65
Height = 15
Caption = 'Safety Level:'
end
object Label5: TLabel
Left = 16
Top = 200
Width = 359
Height = 15
Caption =
'Autoexecute '#55357#56999' This might be undoable, be cautios of what you as' +
'k:'
end
object Button1: TButton
Left = 452
Top = 199
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'Execute'
TabOrder = 0
OnClick = Button1Click
end
object ToggleSwitch1: TToggleSwitch
Left = 394
Top = 200
Width = 73
Height = 20
TabOrder = 1
end
end
end