-
Notifications
You must be signed in to change notification settings - Fork 0
/
uMain.pas
308 lines (280 loc) · 7.92 KB
/
uMain.pas
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
{-----------------------------------------------------------------------------
The PI Advanced Calculator
Graphical interface to TAU.
-----------------------------------------------------------------------------}
unit uMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, uMath, uMathOutputRichedit, ImgList, ActnList, StdCtrls, ComCtrls, ToolWin, ExtCtrls,
uFrmInput, ButtonTabControl, uDockableForms;
type
TfmPiMain = class(TForm)
ActionList1: TActionList;
acRunCmd: TAction;
acExit: TAction;
acRunTest: TAction;
ilButtons: TImageList;
acHelp: TAction;
pnWorkspace: TPanel;
Splitter1: TSplitter;
Panel3: TPanel;
spltInput: TSplitter;
reOutput: TRichEdit;
frmInput: TfrmInput;
Panel1: TPanel;
ToolBar1: TToolBar;
ToolButton1: TToolButton;
ToolButton5: TToolButton;
ToolButton2: TToolButton;
ToolButton3: TToolButton;
ToolButton4: TToolButton;
trContext: TTreeView;
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure FormShow(Sender: TObject);
procedure acRunCmdExecute(Sender: TObject);
procedure acExitExecute(Sender: TObject);
procedure trContextCollapsing(Sender: TObject; Node: TTreeNode;
var AllowCollapse: Boolean);
procedure acHelpExecute(Sender: TObject);
procedure trContextEdited(Sender: TObject; Node: TTreeNode; var S: String);
procedure trContextEditing(Sender: TObject; Node: TTreeNode; var AllowEdit: Boolean);
procedure acRunTestExecute(Sender: TObject);
private
{ Private-Deklarationen }
fPageControl: TDrawPageControl;
fOutput: TOutputRichEdit;
procedure UpdateContext;
procedure UpdateTabView;
function NewTab(const Title: String): TButtonTabSheet;
procedure InputResized(Sender: TObject);
procedure TabButtonClick(Sender: TObject; Button: TTabButton);
public
{ Public-Deklarationen }
MathS: TMathSystem;
procedure InsertIntoTab(const dockable: IDockableForm);
end;
var
fmPiMain: TfmPiMain;
implementation
uses
ShellAPI,
VCLFixes,
uMathIntf,
uMathSelfTests,
uFunctions, uFunctionsStatistics, uFunctionsGraphing, uFunctionsSymbolics, uMathDimensions, uFunctionsString,
RTLConsts;
const
sProgramTitle = 'Pi Advanced Calculator';
sProgramVersionStr = 'V9';
sTabInput = 'Input';
{$R *.dfm}
procedure TfmPiMain.FormCreate(Sender: TObject);
begin
Application.Title:= sProgramTitle;
Caption:= Format('%s (%s)',[sProgramTitle, sProgramVersionStr]);
UpdateTabView;
fOutput:= TOutputRichEdit.Create;
fOutput.Render:= reOutput;
MathS:= TMathSystem.Create(fOutput);
with MathS do begin
RegisterPackage(TPackageTrig.Create);
RegisterPackage(TPackageElementary.Create);
RegisterPackage(TPackageNumerical.Create);
RegisterPackage(TPackageLists.Create);
RegisterPackage(TPackageData.Create);
RegisterPackage(TPackageString.Create);
RegisterPackage(TPackageStatistics.Create);
RegisterPackage(TPackageGraph.Create);
RegisterPackage(TPackageSymbolics.Create);
RegisterPackage(TPackageDimensions.Create);
end;
reOutput.Clear;
frmInput.Clear;
frmInput.OnRunCommand:= acRunCmdExecute;
frmInput.OnSizeForced:= InputResized;
end;
procedure TfmPiMain.FormDestroy(Sender: TObject);
begin
FreeAndNil(MathS);
FreeAndNil(fOutput);
FreeAndNil(fPageControl);
end;
procedure TfmPiMain.UpdateContext;
var ct: TContext;
j: integer;
n: TTreeNode;
s: string;
x: IExpression;
begin
trContext.Items.BeginUpdate;
try
trContext.Items.Clear;
ct:= TContext(MathS.Context.NativeObject);
while ct<>nil do begin
s:= ct.ContextName;
if s='' then
s:= 'Context';
n:= trContext.Items.AddObject(nil, format('%s (%d)',[s,ct.Count]), ct);
for j:= 0 to ct.Count-1 do begin
x:= ct.Definition(ct.Name[j]);
s:= x.AsString(STR_FORM_STANDARD);
trContext.Items.AddChild(n, format('%s = %s', [ct.Name[j], s]));
end;
if not Assigned(ct.Parent) then
break;
ct:= TContext(ct.Parent.NativeObject);
end;
trContext.FullExpand;
finally
trContext.Items.EndUpdate;
end;
end;
procedure TfmPiMain.FormShow(Sender: TObject);
begin
UpdateContext;
frmInput.SetFocus;
InputResized(Self);
end;
procedure TfmPiMain.acRunCmdExecute(Sender: TObject);
var f: string;
begin
try
f:= frmInput.Text;
frmInput.AddHistory(f);
MathS.Output.Input(f);
MathS.Run(f);
frmInput.Text:= 'ans';
frmInput.SelectAll;
except
on e: Exception do begin
// kernel exceptions are already logged at .Run, this are all others.
MathS.Output.Error('Unhandled Error:',[]);
MathS.Output.Error('%s: %s',[e.ClassName, e.Message]);
end;
end;
UpdateContext;
end;
procedure TfmPiMain.acExitExecute(Sender: TObject);
begin
Close;
end;
procedure TfmPiMain.trContextEdited(Sender: TObject; Node: TTreeNode; var S: String);
begin
S:= Node.Text;
end;
procedure TfmPiMain.trContextEditing(Sender: TObject; Node: TTreeNode; var AllowEdit: Boolean);
begin
AllowEdit:= Assigned(Node.Parent);
end;
procedure TfmPiMain.trContextCollapsing(Sender: TObject; Node: TTreeNode;
var AllowCollapse: Boolean);
begin
AllowCollapse:= false;
end;
procedure TfmPiMain.acHelpExecute(Sender: TObject);
var
fn: string;
begin
fn:= ExtractFilePath(ParamStr(0))+'documentation.html';
if not FileExists(fn) then begin
if MessageDlg('Could not load "documentation.html". Launch from Web?', mtConfirmation, [mbYes, mbNo], 0) = mrYes then
fn:= 'https://raw.github.com/martok/pi/master/bin/documentation.html'
else
exit;
end;
ShellExecute(Handle, 'open',PAnsiChar(fn),nil,nil, SW_SHOWNORMAL);
end;
procedure TfmPiMain.acRunTestExecute(Sender: TObject);
var
Tester: TMathSysTest;
begin
Tester:= TMathSysTest.Create(MathS);
try
Tester.Run;
finally
FreeAndNil(Tester);
end;
end;
procedure TfmPiMain.InputResized(Sender: TObject);
begin
spltInput.MinSize:= frmInput.Height;
end;
procedure TfmPiMain.UpdateTabView;
begin
if Assigned(fPageControl) then begin
if fPageControl.PageCount = 1 then begin
pnWorkspace.Visible:= false;
try
pnWorkspace.Parent:= Self;
FreeAndNil(fPageControl);
finally
pnWorkspace.Visible:= true;
end;
end;
end;
end;
function TfmPiMain.NewTab(const Title: String): TButtonTabSheet;
var
ts: TTabSheet;
begin
if not Assigned(fPageControl) then begin
pnWorkspace.Visible:= false;
try
fPageControl:= TDrawPageControl.Create(Self);
fPageControl.Align:= alClient;
fPageControl.Parent:= Self;
ts:= TTabSheet.Create(fPageControl);
ts.PageControl:= fPageControl;
ts.Caption:= sTabInput;
pnWorkspace.Parent:= ts;
finally
pnWorkspace.Visible:= true;
end;
end;
Result:= TButtonTabSheet.Create(fPageControl);
Result.PageControl:= fPageControl;
Result.Caption:= Title;
Result.Buttons:= [tbRestore, tbClose];
Result.OnTabButtonClick:= TabButtonClick;
fPageControl.ActivePage:= Result;
end;
procedure TfmPiMain.TabButtonClick(Sender: TObject; Button: TTabButton);
var
ts: TButtonTabSheet;
f: TForm;
d: IDockableForm;
begin
ts:= Sender as TButtonTabSheet;
case Button of
tbRestore: begin
if (ts.ControlCount > 0) and (ts.Controls[0] is TForm) then begin
if Supports(ts.Controls[0], IDockableForm, d) then
d.Undock;
ts.PageControl:= nil;
FreeAndNil(ts);
end;
end;
tbClose: begin
if (ts.ControlCount > 0) and (ts.Controls[0] is TForm) then begin
f:= TForm(ts.Controls[0]);
f.Hide;
if Supports(f, IDockableForm, d) then
d.Undock;
f.Close;
end;
ts.PageControl:= nil;
FreeAndNil(ts);
end;
end;
UpdateTabView;
end;
procedure TfmPiMain.InsertIntoTab(const dockable: IDockableForm);
var
ts: TButtonTabSheet;
begin
ts:= NewTab(dockable.GetCaption);
dockable.Dock(ts);
end;
end.