-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuScriptForm.dfm
151 lines (151 loc) · 3.11 KB
/
uScriptForm.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
object ScriptForm: TScriptForm
Left = 0
Top = 0
Caption = 'Script'
ClientHeight = 382
ClientWidth = 539
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
FormStyle = fsMDIChild
OldCreateOrder = False
Visible = True
OnCreate = FormCreate
OnDestroy = FormDestroy
DesignSize = (
539
382)
PixelsPerInch = 96
TextHeight = 13
object Splitter1: TSplitter
Left = 0
Top = 321
Width = 539
Height = 15
Cursor = crVSplit
Align = alBottom
AutoSnap = False
ResizeStyle = rsUpdate
OnMoved = Splitter1Moved
ExplicitTop = 378
end
object Label1: TLabel
Left = 8
Top = 321
Width = 38
Height = 13
Anchors = [akLeft, akBottom]
Caption = 'Output:'
end
object BtnClearLog: TSpeedButton
Left = 56
Top = 321
Width = 41
Height = 16
Anchors = [akLeft, akBottom]
Caption = 'Clear'
OnClick = BtnClearLogClick
end
object Panel1: TPanel
Left = 0
Top = 0
Width = 539
Height = 33
Align = alTop
TabOrder = 0
object BtnRun: TSpeedButton
Left = 1
Top = 1
Width = 56
Height = 31
Action = ActionRun
Align = alLeft
Caption = 'Run (F9)'
end
end
object PageControl1: TPageControl
Left = 0
Top = 33
Width = 539
Height = 288
ActivePage = TabSheet1
Align = alClient
TabOrder = 1
object TabSheet1: TTabSheet
Caption = 'Run'
object MemoRunScript: TRichEdit
Left = 0
Top = 0
Width = 531
Height = 260
Align = alClient
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Style = []
ParentFont = False
ScrollBars = ssBoth
TabOrder = 0
WordWrap = False
Zoom = 100
OnChange = MemoRunScriptChange
end
end
object TabSheet2: TTabSheet
Caption = 'Funcs'
ImageIndex = 1
object MemoFuncsScript: TRichEdit
Left = 0
Top = 0
Width = 531
Height = 260
Align = alClient
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Style = []
ParentFont = False
ScrollBars = ssBoth
TabOrder = 0
WordWrap = False
Zoom = 100
end
end
end
object MemoLog: TRichEdit
Left = 0
Top = 336
Width = 539
Height = 46
Align = alBottom
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Style = []
ParentFont = False
ScrollBars = ssBoth
TabOrder = 2
WordWrap = False
Zoom = 100
end
object ActionList1: TActionList
Left = 144
Top = 104
object ActionRun: TAction
Caption = 'Run'
ShortCut = 120
OnExecute = ActionRunExecute
end
object ActionAutosave: TAction
Caption = 'Autosave'
ShortCut = 16467
OnExecute = ActionAutosaveExecute
end
end
end