-
Notifications
You must be signed in to change notification settings - Fork 2
/
MESSAGES.PAS
449 lines (380 loc) · 13.6 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
{/////////////////////////////////////////////////////////////////////////
//
// Dos Navigator Version 1.51 Copyright (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).
//
//////////////////////////////////////////////////////////////////////////}
unit Messages;
interface
uses Objects, Commands, RStrings, Dos;
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;
{ 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;
{ 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: byte;
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: Byte; 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: Byte; 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: PathStr);
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;
implementation
uses Drivers, Views, Dialogs, DNApp, DNHelp, Advance, {Tree, }Drives, Startup;
procedure ErrMsg(Index: TStrIdx); begin Msg(Index, nil, mfError + mfOkButton) end;
procedure CantWrite(const FName: PathStr);
var
a: string[30];
PP: Pointer;
begin
A := Cut(FName, 30); PP := @A;
Msg(dlCannotWrite, @PP, mfError+mfOKButton);
end;
function Msg;
begin
Msg := MessageBox( GetString( Index ), Params, AOptions );
end;
function Msg2;
begin
Msg2 := MessageBox2( GetString( Index1 ),
GetString( Index2 ),
Params1,
Params2,
AOptions );
end;
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);
MessageBox := MessageBoxRect(R, Msg, Params, 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;
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
Dialog := New(PDialog,
Init(R, GetString(TStrIdx(Integer(dlMsgWarning)+AOptions and $7))));
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 );
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;
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;
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 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 - 3 - 3 * 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;
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.