-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
ChatGPT.TextEditor.fmx
111 lines (111 loc) · 3.58 KB
/
ChatGPT.TextEditor.fmx
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
inherited FrameTextEditor: TFrameTextEditor
Size.Width = 1035.000000000000000000
Size.Height = 811.000000000000000000
OnResize = FrameResize
OnResized = FrameResize
inherited RectangleBG: TRectangle
Size.Width = 1035.000000000000000000
Size.Height = 811.000000000000000000
end
object LayoutClient: TLayout
Align = Center
Padding.Left = 10.000000000000000000
Padding.Top = 10.000000000000000000
Padding.Right = 10.000000000000000000
Padding.Bottom = 10.000000000000000000
Size.Width = 440.000000000000000000
Size.Height = 566.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
object RectangleFrame: TRectangle
Align = Contents
Fill.Color = xFF202123
Locked = True
Size.Width = 440.000000000000000000
Size.Height = 566.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
XRadius = 6.000000000000000000
YRadius = 6.000000000000000000
end
object LayoutActions: TLayout
Align = Bottom
Position.X = 10.000000000000000000
Position.Y = 510.000000000000000000
Size.Width = 420.000000000000000000
Size.Height = 46.000000000000000000
Size.PlatformDefault = False
TabOrder = 2
object ButtonOk: TButton
Align = Right
Position.X = 260.000000000000000000
Size.Width = 80.000000000000000000
Size.Height = 46.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyle_menu'
TabOrder = 2
Text = 'OK'
OnClick = ButtonOkClick
end
object ButtonCancel: TButton
Align = Right
Cancel = True
Position.X = 340.000000000000000000
Size.Width = 80.000000000000000000
Size.Height = 46.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyle_menu'
TabOrder = 3
Text = 'CANCEL'
OnClick = ButtonCancelClick
end
end
object LabelCaption: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 10.000000000000000000
Position.X = 10.000000000000000000
Position.Y = 20.000000000000000000
Size.Width = 420.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 16.000000000000000000
TextSettings.FontColor = xFFE9E9E9
TextSettings.WordWrap = False
Text = 'Title'
TabOrder = 49
end
object Rectangle1: TRectangle
Align = Client
Fill.Color = x78000000
Margins.Left = 6.000000000000000000
Margins.Top = 6.000000000000000000
Margins.Right = 6.000000000000000000
Margins.Bottom = 6.000000000000000000
Size.Width = 408.000000000000000000
Size.Height = 458.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
XRadius = 6.000000000000000000
YRadius = 6.000000000000000000
object MemoText: TMemo
Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
DataDetectorTypes = []
StyledSettings = [Family, Style]
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xFFEDEDED
TextSettings.WordWrap = True
Align = Client
Size.Width = 408.000000000000000000
Size.Height = 458.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'memostyle_clear'
TabOrder = 0
Viewport.Width = 398.000000000000000000
Viewport.Height = 458.000000000000000000
end
end
end
end