-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmessages.pas
620 lines (558 loc) · 17.2 KB
/
messages.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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
{/////////////////////////////////////////////////////////////////////////
//
// Dos Navigator Open Source 1.51.08
// Based on Dos Navigator (C) 1991-99 RIT Research Labs
//
// This programs is free for commercial and non-commercial use as long as
// the following conditions are aheared to.
//
// Copyright remains RIT Research Labs, and as such any Copyright notices
// in the code are not to be removed. If this package is used in a
// product, RIT Research Labs should be given attribution as the RIT Research
// Labs of the parts of the library used. This can be in the form of a textual
// message at program startup or in documentation (online or textual)
// provided with the package.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the copyright
// notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// 3. All advertising materials mentioning features or use of this software
// must display the following acknowledgement:
// "Based on Dos Navigator by RIT Research Labs."
//
// THIS SOFTWARE IS PROVIDED BY RIT RESEARCH LABS "AS IS" AND ANY EXPRESS
// OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
// GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
// IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// The licence and distribution terms for any publically available
// version or derivative of this code cannot be changed. i.e. this code
// cannot simply be copied and put under another distribution licence
// (including the GNU Public Licence).
//
//////////////////////////////////////////////////////////////////////////}
{$I STDEFINE.INC}
{&Delphi+}
unit Messages;
interface
uses
Defines, Commands, Drivers
;
const
{ Message box classes }
mfWarning = $0000; { Display a Warning box }
mfError = $0001; { Dispaly a Error box }
mfInformation = $0002; { Display an Information Box }
mfConfirmation = $0003; { Display a Confirmation Box }
mfQuery = $0004;
mfAbout = $0005;
mfSysError = $0006;
{ Message box button flags }
mfYesButton = $0100; { Put a Yes button into the dialog }
mfOKButton = $0200; { Put an OK button into the dialog }
mfNoButton = $0400; { Put a No button into the dialog }
mfCancelButton = $8000; { Put a Cancel button into the dialog }
mfNextDButton = $0800;
mfAppendButton = $1000;
mf2YesButton = $2000;
mfAllButton = $4000;
mfYesNoCancel = mfYesButton+mfNoButton+mfCancelButton;
{ Standard Yes, No, Cancel dialog }
mfYesNoConfirm = mfYesButton+mfNoButton+mfConfirmation;
{ Standard Yes, No confirmation }
mfOKCancel = mfOKButton+mfCancelButton;
{ Standard OK, Cancel dialog }
{ MessageBox displays the given string in a standard sized }
{ dialog box. Before the dialog is displayed the Msg and Params }
{ are passed to FormatStr. The resulting string is displayed }
{ as a TStaticText view in the dialog. }
function MessageBox(Msg: String; Params: Pointer; AOptions: Word): Word;
(* function SysErrorMessageBox( Msg: String; {Params: Pointer;} AOptions: Word ): Word; *)
{ MessageBoxRec allows the specification of a TRect for the }
{ message box to occupy. }
function MessageBox2(Msg1, Msg2: String; Params1, Params2: Pointer;
AOptions: Word): Word;
function MessageBoxRect(var R: TRect; Msg: String; Params: Pointer;
AOptions: Word): Word;
function MessageBox2Rect(var R: TRect;
Msg1, Msg2: String;
Lines1: Word;
Params1, Params2: Pointer;
AOptions: Word): Word;
{ InputBox displays a simple dialog that allows the user to }
{ type in a string. }
function InputBox(Title: String; ALabel: String; var S: String;
Limit: Word; HistoryId: Word): Word;
function BigInputBox(Title: String; ALabel: String; var S: String;
Limit: Word; HistoryId: Word): Word;
{ InputBoxRect is like InputBox but allows the specification of }
{ a rectangle. }
function InputBoxRect(var Bounds: TRect; Title: String; ALabel: String;
var S: String; Limit: Word; HistoryId: Word): Word;
function Msg(Index: TStrIdx; Params: Pointer; AOptions: Word): Word;
function Msg2(Index1, Index2: TStrIdx;
Params1, Params2: Pointer;
AOptions: Word): Word;
procedure ErrMsg(Index: TStrIdx);
procedure CantWrite(const FName: String);
function FmtFile(const Fmt: String; const FName: String; len: Integer)
: String;
function FmtStr(const Fmt: String; const S: String): String;
function FmtStrId(Id: TStrIdx; const S: String): String;
function FmtFileId(Id: TStrIdx; const FName: String): String;
const
MsgActive: Boolean = False;
MsgHelpCtx: Word = 0; {AK155}
{â® ª®â¥ªáâ 奫¯ , ãáâ ¢«¨¢ ¥¬ë© § à ¥¥ ¨§¢¥ ¤«ï
¨á¯®«ì§®¢ ¨ï ¢¬¥áâ® ¯®¤à §ã¬¥¢ ¥¬®£® ª®â¥ªáâ . 'ãá⮥'
§ 票¥ - ã«¥¢®¥. ਠ¢ë¯®«¥¨¨ MessageBoxRect (¨,
á«¥¤®¢ ⥫ì®, MessageBox ¨ ¯à®ç¨å ¯à®¨§¢®¤ëå ®â MessageBoxRect
¯à®æ¥¤ãà) MsgHelpCtx ¢â®¬ â¨ç¥áª¨ ®¡ã«ï¥âáï. }
implementation
uses
Views, Dialogs, DNApp, DNHelp, Advance1, Advance2,
Drives, Startup, VPUtils
;
procedure ErrMsg(Index: TStrIdx);
begin
Msg(Index, nil, mfError+mfOKButton)
end;
procedure CantWrite(const FName: String);
var
a: String[30];
PP: Pointer;
begin
a := Cut(FName, 30);
PP := @A;
Msg(dlCanNotWrite, @PP, mfError+mfOKButton);
end;
function Msg;
begin
if Desktop <> nil then
{Cat: §¤¥áì ¤® ¯à®¢¥àïâì, áãé¥áâ¢ã¥â «¨
㦥 ª í⮬㠬®¬¥âã Desktop}
Msg := MessageBox(GetString(Index), Params, AOptions);
end;
function Msg2;
begin
if Desktop <> nil then
{Cat: §¤¥áì ¤® ¯à®¢¥àïâì, áãé¥áâ¢ã¥â «¨
㦥 ª í⮬㠬®¬¥âã Desktop}
Msg2 := MessageBox2(GetString(Index1),
GetString(Index2),
Params1,
Params2,
AOptions);
end;
function MessageBox2;
var
R: TRect;
i, j, k, l,
i1, j1, k1, l1: Byte;
begin
i := 0;
l := 0;
k := 0;
for j := 1 to Length(Msg1) do
begin
if Msg1[j] = #13 then
begin
Inc(i);
if k > l then
l := k;
k := 0;
end;
if Msg1[j] > #31 then
Inc(k);
if k > 70 then
k := 70;
end;
if k > l then
l := k;
if l < 36 then
l := 36;
i1 := 0;
l1 := 0;
k1 := 0;
for j1 := 1 to Length(Msg2) do
begin
if Msg2[j1] = #13 then
begin
Inc(i1);
if k1 > l then
l1 := k1;
k1 := 0;
end;
if Msg2[j1] > #31 then
Inc(k1);
if k1 > 70 then
k1 := 70;
end;
if k1 > l then
l1 := k1;
if l1 < 36 then
l1 := 36;
if l1 > l then
l := l1;
k1 := i;
Inc(i, i1);
k := 0;
for j := 0 to 7 do
if AOptions and ($0100 shl j) <> 0 then
Inc(k);
if k*13 > l+6 then
l := k*13-6;
R.Assign(0, 0, l+6, i+7);
R.Move((Desktop^.Size.X-R.B.X) div 2, (Desktop^.Size.Y-R.B.Y) div 2);
MessageBox2 := MessageBox2Rect(R, Msg1, Msg2, k1, Params1, Params2,
AOptions);
end { MessageBox2 };
function MessageBoxRect;
const
Cmds: array[0..7] of Word =
(cmYes, cmOK, cmNo, cmOK, cmOK, cmYes, cmOK, cmCancel);
var
I, X, ButtonCount: Integer;
Dialog: PDialog;
Control: PView;
T: TRect;
ButtonList: array[0..4] of PView;
S: String;
PP: TPoint;
Event: TEvent;
procedure AddButton;
var
s: String;
begin
s := GetString(TStrIdx(Integer(dlYesButton)+i));
R.Assign(0, 0, Max(10, CStrLen(s)+4), 2);
Control := New(PButton, Init(R, s, Cmds[i], bfNormal));
Inc(X, Control^.Size.X+2);
ButtonList[ButtonCount] := Control;
Inc(ButtonCount);
end;
begin { MessageBoxRect }
Dialog := New(PDialog,
Init(R, GetString(TStrIdx(Integer(dlMsgWarning)+AOptions and $7))));
if MsgHelpCtx <> 0 then
begin
Dialog^.HelpCtx := MsgHelpCtx;
MsgHelpCtx := 0;
end
else
begin
if AOptions and $7 = mfAbout
then
Dialog^.HelpCtx := hcAboutDialog
else if AOptions and mfAllButton <> 0
then
Dialog^.HelpCtx := hcAllContainingDialog
else if AOptions and (mfYesButton+mf2YesButton) <> 0
then
Dialog^.HelpCtx := hcYesNoDialog+Byte(AOptions and mfCancelButton <>
0)
else
Dialog^.HelpCtx := hcWarningDialog+(AOptions and $7);
end;
if AOptions and $7 = mfError then
Dialog^.Palette := dpRedDialog;
with Dialog^ do
begin
R.Assign(3, 2, Size.X-2, Size.Y-3);
FormatStr(S, Msg, Params^);
Control := New(PStaticText, Init(R, S));
Insert(Control);
X := -2;
ButtonCount := 0;
for I := 0 to 7 do
if AOptions and ($0100 shl I) <> 0 then
AddButton;
X := (Size.X-X) shr 1;
for I := 0 to ButtonCount-1 do
begin
Control := ButtonList[I];
Insert(Control);
Control^.MoveTo(X, Size.Y-3);
Inc(X, Control^.Size.X+2);
end;
SelectNext(False);
SelectNext(True);
SelectNext(False);
end;
MsgActive := True;
{PP.X := 0; PP.Y := 0;
Dialog^.MakeGlobal(PP, PP);
Event.What := evMouseDown; Event.Double := False;
Event.Buttons := 1; Event.Where := PP;
Application^.PutEvent(Event);}
MessageBoxRect := Desktop^.ExecView(Dialog);
Dispose(Dialog, Done);
MsgActive := False;
end { MessageBoxRect };
function MessageBox2Rect;
const
Cmds: array[0..7] of Word =
(cmYes, cmOK, cmNo, cmOK, cmOK, cmYes, cmOK, cmCancel);
var
I, X, ButtonCount: Integer;
Dialog: PDialog;
Control: PView;
T: TRect;
ButtonList: array[0..4] of PView;
S: String;
PP: TPoint;
Event: TEvent;
begin
Dialog := New(PDialog,
Init(R, GetString(TStrIdx(Integer(dlMsgWarning)+AOptions and $7))));
if AOptions and $7 = mfAbout then
Dialog^.HelpCtx := hcAboutDialog;
with Dialog^ do
begin
R.Assign(3, 2, Size.X-2, 2+Lines1);
FormatStr(S, Msg1, Params1^);
Control := New(PStaticText, Init(R, S));
Insert(Control);
R.A.Y := R.B.Y;
R.B.Y := Size.Y-3;
FormatStr(S, Msg2, Params2^);
Control := New(PStaticText, Init(R, S));
Insert(Control);
X := -2;
ButtonCount := 0;
for I := 0 to 7 do
if AOptions and ($0100 shl I) <> 0 then
begin
R.Assign(0, 0, 10, 2);
Control := New(PButton, Init(R,
GetString(TStrIdx(Integer(dlYesButton)+I)),
Cmds[I], bfNormal));
Inc(X, Control^.Size.X+2);
ButtonList[ButtonCount] := Control;
Inc(ButtonCount);
end;
X := (Size.X-X) shr 1;
for I := 0 to ButtonCount-1 do
begin
Control := ButtonList[I];
Insert(Control);
Control^.MoveTo(X, Size.Y-3);
Inc(X, Control^.Size.X+2);
end;
SelectNext(False);
SelectNext(True);
SelectNext(False);
end;
MsgActive := True;
{PP.X := 0; PP.Y := 0;
Dialog^.MakeGlobal(PP, PP);
Event.What := evMouseDown; Event.Double := False;
Event.Buttons := 1; Event.Where := PP;
Application^.PutEvent(Event);}
MessageBox2Rect := Desktop^.ExecView(Dialog);
Dispose(Dialog, Done);
MsgActive := False;
end { MessageBox2Rect };
function SysErrorMessageBoxRect(var R: TRect; Msg: String;
{Params: Pointer;} ErrCode: Integer;
AOptions: Word): Word;
const
Cmds: array[0..3] of Word =
(cmYes, cmOK, cmNo, cmSkip {, cmOk, cmOK, cmYes, cmOK, cmCancel});
Idx: array[0..3] of TStrIdx =
(dlCE_ButRetry, dlCE_ButAbort, dlCE_ButIgnore, dlCE_ButStop);
var
I, X, ButtonCount: Integer;
Dialog: PDialog;
Control: PView;
T: TRect;
ButtonList: array[0..4] of PView;
PP: TPoint;
Event: TEvent;
TitleString, S: string;
procedure AddButton;
var
s: String;
begin
s := GetString(Idx[i]);
R.Assign(0, 0, Max(10, CStrLen(s)+4), 2);
Control := New(PButton, Init(R, s, Cmds[i], bfNormal));
Inc(X, Control^.Size.X+2);
ButtonList[ButtonCount] := Control;
Inc(ButtonCount);
end;
begin { SysErrorMessageBoxRect }
TitleString := GetString(dlCE_ErrWndTitle);
if ErrCode <> 0 then
begin
Str(ErrCode, S);
TitleString := TitleString + ' ' + S;
end;
Dialog := New(PDialog, Init(R, TitleString));
Dialog^.HelpCtx := hcNoContext;
Dialog^.Palette := dpRedDialog;
with Dialog^ do
begin
R.Assign(3, 2, Size.X-2, Size.Y-3);
Control := New(PStaticText, Init(R, Msg));
Insert(Control);
X := -2;
ButtonCount := 0;
for I := 0 to 3 do
if AOptions and ($0100 shl I) <> 0 then
AddButton;
X := (Size.X-X) shr 1;
for I := 0 to ButtonCount-1 do
begin
Control := ButtonList[I];
Insert(Control);
Control^.MoveTo(X, Size.Y-3);
Inc(X, Control^.Size.X+2);
end;
SelectNext(False);
SelectNext(True);
SelectNext(False);
end;
MsgActive := True;
SysErrorMessageBoxRect := Desktop^.ExecView(Dialog);
Dispose(Dialog, Done);
MsgActive := False;
end { SysErrorMessageBoxRect };
function MessageBox;
var
R: TRect;
i, j, k, l: Byte;
begin
i := 0;
l := 0;
k := 0;
for j := 1 to Length(Msg) do
begin
if Msg[j] = #13 then
begin
Inc(i);
if k > l then
l := k;
k := 0;
end;
if Msg[j] > #31 then
Inc(k);
if k > 70 then
k := 70;
end;
if k > l then
l := k;
if l < 36 then
l := 36;
k := 0;
for j := 0 to 7 do
if AOptions and ($0100 shl j) <> 0 then
Inc(k);
if k*13 > l+6 then
l := k*13-6;
R.Assign(0, 0, l+6, i+7);
R.Move((Desktop^.Size.X-R.B.X) div 2, (Desktop^.Size.Y-R.B.Y) div 2);
if (AOptions and $7) = mfSysError then
MessageBox := SysErrorMessageBoxRect(R, Msg, Integer(Params), AOptions)
else
MessageBox := MessageBoxRect(R, Msg, Params, AOptions);
end { MessageBox };
function InputBox;
var
R: TRect;
begin
R.Assign(0, 0, 60, 7);
R.Move((Desktop^.Size.X-R.B.X) div 2, (Desktop^.Size.Y-R.B.Y) div 2);
InputBox := InputBoxRect(R, Title, ALabel, S, Limit, HistoryId);
end;
function BigInputBox;
var
R: TRect;
begin
R.Assign(0, 0, 76, 7);
R.Move((Desktop^.Size.X-R.B.X) div 2, (Desktop^.Size.Y-R.B.Y) div 2);
BigInputBox := InputBoxRect(R, Title, ALabel, S, Limit, HistoryId);
end;
function InputBoxRect;
var
Dialog: PDialog;
Control: PView;
R: TRect;
C: Word;
begin
Dialog := New(PDialog, Init(Bounds, Title));
with Dialog^ do
begin
R.Assign(4+CStrLen(ALabel), 2, Size.X-2-4*Byte(HistoryId <> 0), 3);
Control := New(PInputline, Init(R, Limit));
Insert(Control);
if HistoryId <> 0 then
begin
R.Assign(Size.X-6, 2, Size.X-3, 3);
Insert(New(PHistory, Init(R, PInputline(Control), HistoryId)));
end;
R.Assign(2, 2, 3+CStrLen(ALabel), 3);
Insert(New(PLabel, Init(R, ALabel, Control)));
R.Assign(Size.X-45, Size.Y-3, Size.X-35, Size.Y-1);
Insert(New(PButton, Init(R, GetString(dlOKButton), cmOK, bfDefault)));
Inc(R.A.X, 10);
Inc(R.B.X, 10);
{Insert(New(PButton, Init(R, '~T~ree', cmTree, 0)));
Inc(R.A.X, 10); Inc(R.B.X, 10);}
Insert(New(PButton, Init(R, GetString(dlCancelButton), cmCancel,
bfNormal)));
Inc(R.A.X, 10);
Inc(R.B.X, 10);
Insert(New(PButton, Init(R, GetString(dlHelpButton), cmHelp,
bfNormal)));
Inc(R.A.X, 10);
Inc(R.B.X, 10);
SelectNext(False);
end;
Dialog^.SetData(S);
Dialog^.HelpCtx := hcInputBox;
C := Desktop^.ExecView(Dialog);
if C <> cmCancel then
Dialog^.GetData(S);
Dispose(Dialog, Done);
InputBoxRect := C;
end { InputBoxRect };
function FmtFile;
var
s, f: String;
P: PString;
begin
if len = MaxInt then
f := FName
else
f := Cut(FName, len);
P := @f;
FormatStr(s, Fmt, P);
FmtFile := s;
end;
function FmtStr(const Fmt: String; const S: String): String;
begin
FmtStr := FmtFile(Fmt, S, MaxInt);
end;
function FmtStrId(Id: TStrIdx; const S: String): String;
begin
FmtStrId := FmtStr(GetString(Id), S);
end;
function FmtFileId;
begin
FmtFileId := FmtFile(GetString(Id), FName, 40);
end;
end.