-
Notifications
You must be signed in to change notification settings - Fork 0
/
TOOLTERM.PAS
5195 lines (4632 loc) · 130 KB
/
TOOLTERM.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
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Û
³ Malte Genesis/Outils pour terminal Û
³ dition Chantal & AdŠle pour Mode R‚el/IV & V - Version 1.1 Û
³ 1994/12/03 Û
³ Û
³ Tous droits r‚serv‚s par les Chevaliers de Malte XXIe siŠcle Û
³ Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Nom du programmeur
ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ
Sylvain Maltais
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette unit‚ contient des routines pour ‚muler un terminal de commande tel
le prompt du DOS ou le Shell de Unix.
Remarques
ÍÍÍÍÍÍÍÍÍ
þ La variable global ®Output¯ d‚signe l'‚cran de sortie sous lequel
l'application a ‚t‚ lanc‚ et naturellement l'‚cran utilis‚ lors de
l'appel du v‚ritable interpr‚teur de commande si n‚cessaire.
þ La variable ®RegUserName¯ d‚finit le nom de l'utilisateur (usager) sous
lequel l'application a ‚t‚ lanc‚. Il est utilis‚, par exemple, pour
enregistrer le programme … un nom particulier.
þ Le prompt DOS et le ®Shell Unix¯ sont rattach‚ … des fichiers d'aide
devant se trouver dans le r‚pertoire d'aide standard de l'ensemble
®Malte Genesis VI et V: Alais Chantal et AdŠle¯, soit ®\MALTE\HLP¯ ou
®\MALTE\HELP¯ sous les noms de ®DOS.HLP¯ et ®UNIX.HLP¯ sous le format
d'un fichier RLL. Ils sont sortie dans la fenˆtre de dialogue … l'aide
de la ®WETypeFile¯ permettant de d‚finir un index particulier dans un
fichier d'aide de format RLL.
}
{$I DEF.INC}
Unit ToolTerm;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
INTERFACE
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
Uses
{$IFDEF __Windows__}
WinProcs,WinTypes,
{$ENDIF}
Systex,Isatex,Dialex;
Procedure ExecPrg(Name,Param:String);
Function PDInit(Var Context;X1,Y1,X2,Y2:Byte):Boolean;
Function PDInitMode(Var Context;X1,Y1,X2,Y2:Byte;Mode:Word):Boolean;
Procedure PDRefresh(Var Context);
Procedure PDReSize(Var Q;X1,Y1,X2,Y2:Byte);
Procedure PDMove2(Var Context;X,Y:Byte);
Procedure PDExecBatch(Var Q:Prompt;Const Name:String);
Procedure PDWinFind(Var Q:Prompt);
Function PDRun(Var Qx):Word;
Function PDTitle(Var Context;Max:Byte):String;
Function PDDone(Var Context):Word;
Function PUInit(Var Context;X1,Y1,X2,Y2:Byte):Boolean;
Procedure ExecBatch(Const Name:String);
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
IMPLEMENTATION
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
Uses
Adele,Memories,Systems,dostex,pritex,Math,Video,Mouse,Terminal,ToolPrn,
ToolInfo,Dials,ToolDsk,Sourcer,SysPlus,DialPlus,Sound,
ResTex,ResServD,DialTree,Registry,FileMana,
ToolFile,ToolRes,ToolVid,UnZip,Time;
Const { Constante des index d'aide }
{ * * * * * * Shell DOS * * * * * * * }
HelpDosAlias=0; { Index d'aide pour la commande Dos ®ALIAS¯ }
HelpDosBeep=1; { Index d'aide pour la commande Dos ®BEEP¯ }
HelpDosChDir=2; { Index d'aide pour les commandes Dos ®CD¯ et ®CHDIR¯ }
HelpDosConfig=3; { Index d'aide pour la commande Dos ®CONFIG¯ }
HelpDosCopy=4; { Index d'aide pour la commande Dos ®COPY¯ }
HelpDosDel=5; { Index d'aide pour la commande Dos ®DEL¯ }
HelpDosDir=6; { Index d'aide pour la commande Dos ®DIR¯ }
HelpDosDump=7; { Index d'aide pour la commande Dos ®DUMP¯ }
HelpDosEcho=8; { Index d'aide pour la commande Dos ®ECHO¯ }
HelpDosFree=9; { Index d'aide pour la commande Dos ®FREE¯ }
HelpDosLabel=10; { Index d'aide pour la commande Dos ®LABEL¯ }
HelpDosMemory=11; { Index d'aide pour la commande Dos ®MEMORY¯ }
HelpDosMkDir=12; { Index d'aide pour la commande Dos ®MKDIR¯ }
HelpDosMove=13; { Index d'aide pour la commande Dos ®MOVE¯ }
HelpDosPause=14; { Index d'aide pour la commande Dos ®PAUSE¯ }
HelpDosRmDir=15; { Index d'aide pour la commande Dos ®RMDIR¯ }
HelpDosScreen=16; { Index d'aide pour la commande Dos ®SCREEN¯ }
HelpDosSerNo=17; { Index d'aide pour la commande Dos ®SERNO¯ }
HelpDosSetPrn=18; { Index d'aide pour la commande Dos ®SETPRN¯ }
HelpDosTime=19; { Index d'aide pour la commande Dos ®TIME¯ }
HelpDosTrueName=20; { Index d'aide pour la commande Dos ®TRUENAME¯ }
HelpDosType=21; { Index d'aide pour la commande Dos ®TYPE¯ }
HelpDosUnAsm=22; { Index d'aide pour la commande Dos ®UNASM¯ }
HelpDosVerify=23; { Index d'aide pour la commande Dos ®VERIFY¯ }
HelpDosVol=24; { Index d'aide pour la commande Dos ®VOL¯ }
HelpDosIndex=25; { Index d'aide g‚n‚rale }
HelpDosFind=26; { Index d'aide pour les commandes Dos ®FIND¯ ou ®GREP¯ }
HelpDos4MAT=27; { Index d'aide pour la commande DOS ®FORMAT¯ ou ®4MAT¯ }
HelpDosBE=28; { Index d'aide pour les commandes Norton Utility ®BE¯ }
HelpDosUnzip=36; { Index d'aide pour la commande ®UNZIP¯ }
HelpDosDiskCopy=37; { Index d'aide pour la commande ®DISKCOPY¯ }
{ * * * * * * Shell Unix * * * * * * * }
HelpUnixBaseName=0; { Index d'aide pour la commande Unix ®basename¯ }
HelpUnixDirName=1; { Index d'aide pour la commande Unix ®dirname¯ }
HelpUnixHelp=2; { Index d'aide pour la commande Xenix ®help¯ }
HelpUnixIndex=3; { Index d'aide pour l'index des commandes }
HelpUnixls=4; { Index d'aide pour la commande Unix ®ls¯ }
LimitImage=100; { Nombre maximal de ligne m‚moriser en m‚moire }
{ avant de les perdres d‚finitivement! }
{ Code TPU (Terminal Processing Unit) }
tpuPutString=#1;
tpuPutLong=#2;
tpuPutLong2=#3;
tpuLn=#13;
Type
DelOptionEnum=(doDel,doDelQ,doXDel);
Function PDCommand(Var Q:Prompt):Word;Near;Forward;
Procedure PDConfig(Var Q:Prompt);Near;Forward;
Procedure PDPutCurrentDisk(Var Q:Prompt);Near;Forward;
Procedure PDPutCurrentPath(Var Q:Prompt);Near;Forward;
Procedure PDPutDir(Var Q:Prompt);Near;Forward;
Procedure PDEcho(Var Q:Prompt);Near;Forward;
Procedure PDFree(Var Q:Prompt);Near;Forward;
Procedure PDPutPath(Var Q:Prompt);Near;Forward;
Procedure PDMemory(Var Q:Prompt);Near;Forward;
Procedure PDPutSet(Var Q:Prompt);Near;Forward;
Procedure PDVol(Var Q:Prompt);Near;Forward;
Procedure PDChDir(Var Q:Prompt);Near;Forward;
Procedure PDCopy(Var Q:Prompt);Near;Forward;
Procedure PDDel(Var Q:Prompt;DelOption:DelOptionEnum);Near;Forward;
Procedure PDMkDir(Var Q:Prompt);Near;Forward;
Procedure PDRMDir(Var Q:Prompt);Near;Forward;
Procedure PDRunSetPrn(Var Q:Prompt);Near;Forward;
Procedure PDType(Var Q:Prompt);Near;Forward;
Function PDExtract(Var Q:Prompt;CmpMsg:String):Bool;Near;Forward;
Function PDExtractExt(Var Q:Prompt;P:Byte;Var Bar:Bool):String;Near;Forward;
Procedure PURunBanner(Var Q:Prompt);Near;Forward;
Function PutStr(Var Q;Const Str:String):Boolean;Near;Forward;
Function PutLine(Var Q;Const Str:String):Boolean;Near;Forward;
{ Cette proc‚dure ex‚cute du code TPU (Terminal Processing Unit) ex‚cut‚
directement sur le terminal.
}
Procedure TPUProcess(Var Q:Prompt;Const CodeTPU;Var Output);Near;
Label
Restart;
Var
TPUByte:TByte Absolute CodeTPU;
TPUString:String Absolute CodeTPU;
OutputLong:LongInt Absolute Output;
OutputLong2:Record
Value:LongInt;
Length:Byte;
End Absolute Output;
ID:Char; { Identificateur }
Begin
Repeat
ReStart:
ID:=Char(TPUByte[0]);
ASM INC Word Ptr CodeTPU;END;
Case(ID)of
#0:Break;
tpuPutString:Begin
PutLine(Q,TPUString);
ASM
{$IFDEF Real}
LES DI,CodeTPU
MOV AL,ES:[DI]
MOV AH,0
INC AX
ADD Word Ptr CodeTPU,AX
{$ELSE}
LEA EAX,CodeTPU
MOVZX AX,Byte Ptr [EAX]
INC AX
ADD Word Ptr CodeTPU,AX
{$ENDIF}
END;
End;
tpuPutLong:Begin
PutStr(Q,IntToStr(OutputLong));
ASM
ADD Word Ptr Output,TYPE LongInt
END;
End;
tpuPutLong2:Begin
PutStr(Q,Str2(OutputLong2.Value,OutputLong2.Length));
ASM
ADD Word Ptr Output,TYPE LongInt+TYPE Byte
END;
End;
tpuLn:PutLine(Q,'');
Else Break;
End;
Until False;
End;
Procedure TPUProcessString(Var Q:Prompt;CodeTPUStr:String;Var Output);Near;Begin
IncStr(CodeTPUStr,#0);
TPUProcess(Q,CodeTPUStr[1],Output);
End;
Function GetPromptMode(Mode:Word):String;Begin
GetPromptMode:='';
Case(Mode)of
piMSDOS:GetPromptMode:='MS-DOS';
piDRDOS:GetPromptMode:='DR-DOS';
piPCDOS:GetPromptMode:='PC-DOS';
piFreeDOS:GetPromptMode:='FreeDOS';
pi4DOS:GetPromptMode:='4DOS';
piNDOS:GetPromptMode:='NDOS/Norton Utility';
piMalteDOS:GetPromptMode:='Malte-DOS';
piOS2:GetPromptMode:='OS/2';
piWindows9X:GetPromptMode:='Windows 9X';
piVAX:GetPromptMode:='VAX/Alpha-VMS';
piUnix:GetPromptMode:='Unix';
piLinux:GetPromptMode:='Linux';
piXenix:GetPromptMode:='Xenix';
piDOS:GetPromptMode:='DOS';
piAmigaDOS:GetPromptMode:='AmigaDOS';
pi4DOS or piNDOS:GetPromptMode:='4DOS/NDOS';
End;
End;
Function PDConvPath2DOS(Var Q:Prompt;Const Source:String):String;
Var
S:String;
P:Integer;
Begin
S:=Source;
Case(Q.Convention)of
pUnix:Begin
ChgChr(S,'/','\');
ChgChr(S,':',';');
If CmpLeft(S,'\dev\fd0')Then S:='A:\'+Copy(S,9,255)Else
If CmpLeft(S,'\dev\fd1')Then S:='B:\'+Copy(S,9,255)Else
End;
pVAX:Begin
S:=DelChr(S,'[');
P:=Pos(']',S);
If P>0Then Begin
If S[P-1]<>'.'Then S[P]:='\'
Else DelChrAt(S,P);
While P>0do Begin
If S[P]='.'Then S[P]:='\';
Dec(P);
End;
End;
End;
End;
PDConvPath2DOS:=S;
End;
Function PDConvDOS2Path(Var Q:Prompt;Const Source:String):String;
Var
S:String;
D:String;
N:NameStr;
E:ExtStr;
Begin
S:=Source;
Case(Q.Convention)of
pUnix:Begin
ChgChr(S,'/','\');
If S[1]<>'\'Then S:=FileExpand({SetPath4AddFile(Q.PathUnix)+}S);
S:=Path2Dir(S);
ChgChr(S,'\','/');
If StrI(2,S)=':'Then S:=DelStr(S,1,2);
S:=StrDn(S);
End;
pVAX:Begin
If S[Length(S)]='\'Then Begin
D:=S;
N:='';
E:='';
End
Else
FSplit(S,D,N,E);
ChgChr(D,'\','.');
If D[Length(D)]='.'Then BackStr(D);
If(Length(D)>=2)and(IsRomanLetter(D[1]))and(D[2]=':')Then Begin
S:=Left(D,2)+'['+Copy(D,3,255)+']'+N+E;
End
Else
Begin
S:='['+D+']'+N+E;
End;
End;
End;
PDConvDOS2Path:=S;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure Ln Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Propri‚taire: Prompt et Munix
Portabilit‚: Local
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure permet de passer … la ligne suivante dans un "shell" ou
interpr‚teur de format DOS ou Unix selon le standard Isatex.
}
Procedure Ln(Var Q);Begin
WEAnsiLn(Prompt(Q).Ansi);
{Vide la ligne image dans la liste image}
If Prompt(Q).TmpImageLst=''Then ALAddLn(Prompt(Q).ImageLst)
Else ALAddStr(Prompt(Q).ImageLst,Prompt(Q).TmpImageLst);
If(Prompt(Q).ImageLst.Count>LimitImage)Then Begin
{Effacer la premiŠre ligne de la liste, c'est n‚cessaire la}
{plus ancienne de cette liste.}
ALDelBuf(Prompt(Q).ImageLst,0);
End;
Prompt(Q).TmpImageLst:='';
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Fonction PutStr Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Propri‚taire: Prompt et Munix
Portabilit‚: Local
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette fonction permet d'afficher un message sur le terminal, "shell" ou
interpr‚teur de format DOS ou Unix.
}
Function PutStr;Begin
AddStr(Prompt(Q).TmpImageLst,Str);
PutStr:=WEPutPas(Prompt(Q).Ansi,Str)
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure PutLine Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Propri‚taire: Wins
Portabilit‚: Local
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette fonction permet d'afficher une ligne d'affichage de format ANSI
dans la boŒte de dialogue de fenˆtre de l'objet ®Wins¯.
}
Function PutLine{Var Q;Const Str:String):Boolean};Begin
PutLine:=PutStr(Q,Str);
Ln(Q)
End;
{$I Library\CopyFile.Inc}
{$I Library\MoveFile.Inc}
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure ExecPrg Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure permet d'ex‚cuter avec des param‚trages une application
externe quelconque se contentant de la m‚moire actuellement disponible.
Remarque
ÍÍÍÍÍÍÍÍ
þ Cette proc‚dure prend l'initiative de marquer dans le journal de bord
le fichier allant ˆtre ex‚cut‚.
}
Procedure ExecPrg;
Var
MS:ImgRec;
{$IFDEF HeapVram}
OldHeapVram:Boolean;
{$ENDIF}
TS:String;
Mode:Byte;
FX:Boolean;
J:Word;
SaveInt9Bh,SaveInt9Ch:Pointer;
UMB:Boolean;
MX,MY,MB:Word;
Procedure PutErr(X:Byte);
Var
S:String;
Begin
If GetSysErr>0Then Begin
If Not(IsGrf)Then SetBlink(False);
Case(X)of
0:S:='Sauve l''‚cran d''application';
1:S:='Restaure l''‚cran de sortie';
2:S:='Ex‚cution du programme';
3:S:='Sauve l''‚cran de sortie';
4:S:='Restaure l''‚cran d''application';
End;
ErrMsgOk(S+': '+GetErrMsg(GetSysErr));
If Not(IsGrf)Then SetBlink(False);
End;
End;
Begin
DialTimer:=False;
{$IFDEF HeapVram}
OldHeapVram:=HeapVram;
{$ENDIF}
{$IFNDEF NotReal}
UMB:=SysPlus.NumBlocks>0;
If(UMB)Then DoneExtendHeap;
{$ENDIF}
FX:=(IsVGA)and(Not IsGrf)and(Name='')and(Param='')and(NmYPixels<512){and(NmXTxts=80)and(NmYTxts=25)};
GetMouseSwitch(MX,MY,MB);
__HideMousePtr;
If Name<>'QUICKSHELL'Then Begin
If(FX)Then Begin
PCopy(0,1);
SetVisualPg(1);
SplitScreen(GetNmYPixels)
End;
PushScr(MS);
PutErr(0);
{$IFDEF HeapVram}
HeapVram:=No;
{$ENDIF}
PopScr(Output);
PutErr(1);
If(FX)Then Begin
For J:=GetNmYPixels shr 3downto 0do Begin
SplitScreen(J shl 3);
WaitRetrace;
End;
SetVisualPg(0);
End;
End;
If Not(IsGraf)Then SetBlink(True);
SimpleCur;
If Name=''Then Begin
Name:=GetEnv('COMSPEC');
If Param<>''Then InsStr(Param,1,'/C')
Else WriteLn('Taper "EXIT"<ENTER> pour revenir … l''application...');
End;
TS:='Ex‚cute: '+Name;
If Param<>''Then IncStr(TS,' ');
WriteLog(TS+Param);
{$IFNDEF NotReal}
FreeMaxHeap;
{$ENDIF}
Mode:=CurrVideoMode;
{ Pr‚serve les interruptions de gestion de la m‚moire de
l'ensemble Malte Genesis }
GetIntVec($9B,SaveInt9Bh);
GetIntVec($9C,SaveInt9Ch);
If Name='QUICKSHELL'Then Exec(GetEnv('COMSPEC'),'/C'+Param)
Else Exec(Name,Param);
GetSysErr:=SysErr;
{ Restitue les interruptions de gestion de la m‚moire de
l'ensemble Malte Genesis }
SetIntVec($9B,SaveInt9Bh);
SetIntVec($9C,SaveInt9Ch);
{$IFNDEF NotReal}
MaxExpandHeap;
{$ENDIF}
{ If(Mode<>CurrVideoMode)Then SetVideoMode(DefaultMode);
SetLuxe;}
If Name<>'QUICKSHELL'Then Begin
PutErr(2);
PushScr(Output);
PutErr(3);
If(FX)Then FX:=Mode=CurrVideoMode;
If(FX)Then Begin
PCopy(0,2);
SetVisualPg(2);
SplitScreen(GetNmYPixels)
End;
{$IFDEF HeapVram}HeapVram:=OldHeapVram;{$ENDIF}
PopScr(MS);
PutErr(4);
If(FX)Then Begin
PCopy(0,1);
SetVisualPg(1);
PCopy(2,0);
For J:=0to GetNmYPixels shr 3do Begin
SplitScreen(J shl 3);
WaitRetrace;
End;
PCopy(1,0);
SplitScreen(GetNmYPixels);
SetVisualPg(0);
End;
End
Else
If Not(IsGraf)Then SetBlink(No);
{$IFNDEF NotReal}
If(UMB)Then ExtendHeap;
{$ENDIF}
SetMousePos(MX,MY);
__ShowMousePtr;
DialTimer:=True;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Fonction GetPromptPrn Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette fonction retourne la sortie d'imprimante courante sous forme de
chaŒne de caractŠres de format Pascal.
}
Function GetPromptPrn:String;Near;Begin
Case(PrnOutput)of
poLPT1:GetPromptPrn:='LPT1:';
poLPT2:GetPromptPrn:='LPT2:';
poLPT3:GetPromptPrn:='LPT3:';
poLPT4:GetPromptPrn:='LPT4:';
poCom1:GetPromptPrn:='COM1:';
poCom2:GetPromptPrn:='COM2:';
poCom3:GetPromptPrn:='COM3:';
poCom4:GetPromptPrn:='COM4:';
poCom5:GetPromptPrn:='COM5:';
poCom6:GetPromptPrn:='COM6:';
poCom7:GetPromptPrn:='COM7:';
poCom8:GetPromptPrn:='COM8:';
poFile:GetPromptPrn:='FILE:';
poNUL:GetPromptPrn:='NUL';
End;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure DumpHelp Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure affiche dans une fenˆtre de l'aide en ligne pour des
Shell par exemple … partir d'un fichier de format RLL.
}
Procedure DumpHelp(Var Q:Window;Const Path:String;Index:Word);Near;Begin
WETypeFile(Q,FSearch(Path,';'+MaltePath+'HLP;'+MaltePath+'HELP;'+MaltePath)+':'+WordToStr(Index));
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure DumpHelpDos Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure affiche dans une fenˆtre de l'aide en ligne pour des
Shell DOS … partir d'un fichier de format RLL.
}
Procedure DumpHelpDos(Var Q:Window;Index:Word);Near;Begin
DumpHelp(Q,'DOS.HLP',Index)
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure DumpHelpUnix Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure affiche dans une fenˆtre de l'aide en ligne pour des
Shell Unix … partir d'un fichier de format RLL.
}
Procedure DumpHelpUnix(Var Q:Window;Index:Word);Near;Begin
DumpHelp(Q,'UNIX.HLP',Index)
End;
{ ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Fonction HYFree Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Propri‚taire: History
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette fonction permet de connaŒtre l'espace disponible … travers une
histoire.
}
Function HYFree(Var Q:History):Word;Near;Begin
HYFree:=Q.SizeCmd-(PtrRec(Q.Tail).Ofs-PtrRec(Q.Cmd).Ofs)
End;
{ ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Fonction HYDelete Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Propri‚taire: History
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette fonction permet d'effacer un item de la liste d'histoire en
cherchant un item correspondant … la variable de param‚trage ®S¯.
}
Function HYDelete(Var Q:History;Const S:String):Boolean;Near;
Var
L:Word;
Begin
{$IFDEF FLAT386}
{$ELSE}
HYDelete:=No;Q.Ptr:=Q.Tail;L:=0;
While Pointer(Q.Ptr)<>Pointer(Q.Cmd)do Begin
Dec(PtrRec(Q.Ptr).Ofs);Inc(L,Length(Q.Ptr^)+2);
Dec(PtrRec(Q.Ptr).Ofs,Length(Q.Ptr^)+1);
If(Q.Ptr^=S)Then Begin
MoveLeft(Mem[PtrRec(Q.Ptr).Seg:PtrRec(Q.Ptr).Ofs+Length(Q.Ptr^)+2],Q.Ptr^,L);
HYDelete:=True;
Break;
End;
End;
{$ENDIF}
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Fonction PDExtractExt Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette fonction permet d'extraire le num‚ro de paramŠtres sp‚cifi‚e dans
une chaŒne de caractŠres de format Pascal avec un style de param‚trage de
style DOS ou Unix.
}
Function PDExtractExt(Var Q:Prompt;P:Byte;Var Bar:Boolean):String;
Label Xit;
Var
I,N,E:Byte;
Str,Ex2:String;
Elem,Sep:Set of Char;
Begin
PDExtractExt:='';
If Q.Ext=''Then Begin
Bar:=False;
Exit;
End;
If(Q.Convention=pUnix)Then Elem:=['-']
Else Elem:=['/'];
Sep:=Elem+[' '];
N:=1;{I:=1;}
Ex2:=LTrim(Q.Ext);
If Ex2=''Then Exit;
If Ex2[1]='"'Then I:=1 Else I:=2;
If(Length(Ex2)=1)and(P=1)Then Begin
Str:=Ex2;
Goto Xit;
End;
Bar:=False;
While Not(Ex2[I]in Sep)and(I<Length(Ex2))do Begin
If Not(Q.Convention=pUnix)Then Begin
If Ex2[I]='"'Then Begin { ChaŒne de caractŠre comme paramŠtre? }
Inc(I);
While(Ex2[I]<>'"')and(I<Length(Ex2))do Inc(I);
End;
End;
Inc(I);
End;
If(P=N)Then Begin
Str:=Trim(Left(Ex2,I));
If Length(Str)>0Then Begin
If(Str[1]in Elem)Then Begin
Bar:=True;
If Length(Str)=1Then Str:=''
Else Str:=Copy(Str,2,Length(Str)-1);
End;
End;
Goto Xit;
End
Else
Inc(N);
While I<Length(Ex2)do Begin
Bar:=Ex2[I]in Elem;
If(Ex2[I]=' ')or(Bar)Then Begin
If(Ex2[I+1]in Elem)Then Begin
Bar:=True;
Ex2:=DelStr(Ex2,I+1,1);
End;
Inc(I);E:=I;
While Not(Ex2[E]in Sep)and(Length(Ex2)>E)do Inc(E);
If(N=P)Then Begin
Str:=RTrim(Copy(Ex2,I,E-I+1));
Xit:If(Not(Bar))and(Q.Convention<>pDOS)Then Begin
If Not(Str[1]in['"'])Then Str:=PDConvPath2Dos(Q,Str);
End;
If(Q.Convention<>pUnix)Then Str:=StrUp(Str);
PDExtractExt:=Str;
Exit;
End
Else
Inc(N);
I:=E;
End
Else
Inc(I);
End;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Fonction PDMaxExtractExt Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette fonction retourne le nombre de paramŠtres contenu dans la chaŒne
de caractŠres de format Pascal et de style Unix ou DOS.
}
Function PDMaxExtractExt(Var Q:Prompt):Byte;Near;
Var
I,N,E:Byte;
Ex2:String;
Elem,Sep:Set of Char;
Begin
Ex2:=Q.Ext;
If Ex2=''Then Begin
PDMaxExtractExt:=0;
Exit;
End;
If(Q.Convention=pUnix)Then Elem:=['-']
Else Elem:=['/'];
Sep:=Elem+[' '];N:=0;
If Ex2[1]='"'Then I:=1 Else I:=2;
While Not(Ex2[I]in Sep)and(I<Length(Ex2))do Begin
If Not(Q.Convention=pUnix)Then Begin
If Ex2[I]='"'Then Begin { ChaŒne de caractŠre comme paramŠtre? }
Inc(I);
While(Ex2[I]<>'"')and(I<Length(Ex2))do Inc(I);
End;
End;
Inc(I);
End;
Inc(N);
While I<Length(Ex2)do Begin
If(Ex2[I]in Sep)Then Begin
If(Ex2[I+1]in Elem)Then Ex2:=DelStr(Ex2,I+1,1);
Inc(I);E:=I;
While Not(Ex2[E]in Sep)and(Length(Ex2)>E)do Inc(E);
I:=E; Inc(N);
End
Else
Inc(I);
End;
PDMaxExtractExt:=N;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure WEPutTxtSPSPS Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Propri‚taire: Prompt ou Munix
Portabilit‚: Local
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure permet d'imprimer une justaposition de chaŒnes de
caractŠres de diff‚rent format.
}
Procedure WEPutTxtSPSPS(Var W;Const S1:String;P1:PChr;Const S2:String;
P2:PChr;Const S3:String);Near;Begin
PutStr(W,S1+StrPas(P1)+S2+StrPas(P2)+S3)
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ·}
{³ O b j e t ® S h e l l D o s ¯ º}
{ÔÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ}
{ ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Constructeur PDInit Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Propri‚taire: Prompt
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Ce constructeur permet d'initialiser la boŒte de dialogue du prompt DOS
de l'objet ®Prompt¯.
}
Function PDInit;Begin
PDInit:=PDInitMode(Context,X1,Y1,X2,Y2,piDOS);
End;
{ ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Constructeur PDInitMode Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Propri‚taire: Prompt
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Ce constructeur permet d'initialiser la boŒte de dialogue avec le prompt
d‚sirer de l'objet ®Prompt¯.
}
Function PDInitMode(Var Context;X1,Y1,X2,Y2:Byte;Mode:Word):Boolean;
Var
Q:Prompt Absolute Context;
Begin
FillClr(Q,SizeOf(Q));
Q.Mode:=Mode;
If Mode and piDOS>0Then Q.Convention:=pDOS Else
If Mode and piVAX>0Then Begin
Q.Convention:=pVAX;
Q.CmdSearch:=[soNotStrict];
End
Else
Begin
Q.Convention:=pUnix;
Q.PS1:='$';
Q.PS2:='>';
Q.PathVar:=':/bin:/usr/bin';
Q.PathUnix:=GetCurrentDir;
End;
HYInitTo(Q.H,512,@Q.History.Buffer);
If ReadMainKey(HKEY_CURRENT_USER,'Software\Prompt\History',WordToStr(Mode),Q.History)Then Begin
HYSetSizeBuffer(Q.H,Q.History.EndCmd);
End;
HYInit(Q.Alias,1024);
WEInit(Q.Ansi,X1,Y1,X2,Y2);
Q.Echo:=True;
PDRefresh(Q);
If(Q.Ansi.MaxY=MaxYTxts)Then Begin
WEPutTxtLn(Q.Ansi,'Interpr‚teur de commande version 3.01');
WEPutTxtLn(Q.Ansi,'Tous droits r‚serv‚s par les Chevaliers de Malte 1992-2002');
Ln(Q);
End;
PDInitMode:=True;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure PDReSize Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Propri‚taire: Prompt
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure permet de change la taille de la fenˆtre de l'‚diteur
de traŒtement de texte de l'objet ®Prompt¯.
}
Procedure PDReSize;
Var
Y:Byte;
Begin
Y:=Prompt(Q).Ansi.Y;
WEDone(Prompt(Q).Ansi);
WEInit(Prompt(Q).Ansi,X1,Y1,X2,Y2);
If Prompt(Q).Ansi.MaxY<Prompt(Q).ImageLst.Count-1Then Y:=Prompt(Q).Ansi.MaxY;
Prompt(Q).Ansi.Y:=Y;
PDRefresh(Q);
End;
Procedure PDMove2(Var Context;X,Y:Byte);
Var
Q:Prompt Absolute Context;
Begin
PDReSize(Q,X,Y,X+Q.Ansi.T.X2-Q.Ansi.T.X1,Y+Q.Ansi.T.Y2-Q.Ansi.T.Y1);
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure PDUpDateEcho Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Propri‚taire: Prompt
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure permet d'afficher la barre d'‚tat de la boŒte de dialogue
du prompt DOS de l'objet ®Prompt¯.
}
Procedure PDUpDateEcho(Var Q:Prompt);
Var
S:String;
Begin
If(Q.Ansi.MaxY<>MaxYTxts)Then Begin
If(Q.Echo)Then Begin
If(Q.Convention=pUnix)Then S:='echo'
Else S:='ECHO';
End
Else
S:=Spc(4);
WESetEndBarTxtX(Q.Ansi,1,S,CurrKrs.Desktop.DialStatus);
WESetEndBarTxtX(Q.Ansi,8,GetPromptMode(Q.Mode),CurrKrs.Desktop.DialStatus);
End;
End;
{ ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure PDRefresh Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Propri‚taire: Prompt
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure permet de restitu‚e l'‚tat de la fenˆtre de dialogue de
prompt DOS.
}
Procedure PDRefresh;
Var
I,Y:Byte;
PC:PChr;
Q:Prompt Absolute Context;
Begin
Y:=Q.Ansi.Y;
WEPutWn(Q.Ansi,PDTitle(Q,Q.Ansi.MaxX),CurrKrs.MalteDos.Window);
If(Q.Ansi.MaxY<>MaxYTxts)Then Begin
WECloseIcon(Q.Ansi);
WEZoomIcon(Q.Ansi);
WESetEndBar(Q.Ansi,CurrKrs.Desktop.DialStatus);
If(IsGrf)Then Begin
BarSpcHorRelief(Q.Ansi.T.X1,Q.Ansi.T.Y2,Q.Ansi.T.X1+6,CurrKrs.Desktop.DialStatus);
BarSpcHorReliefExt(Q.Ansi.T.X1+1,Q.Ansi.T.Y2,Q.Ansi.T.X1+5,CurrKrs.Desktop.DialStatus);
BarSpcHorRelief(Q.Ansi.T.X1+7,Q.Ansi.T.Y2,Q.Ansi.T.X2,CurrKrs.Desktop.DialStatus);
BarSpcHorReliefExt(Q.Ansi.T.X1+8,Q.Ansi.T.Y2,Q.Ansi.T.X2-1,CurrKrs.Desktop.DialStatus);
End
Else
WESetEndBarTxtX(Q.Ansi,6,'³',CurrKrs.Desktop.DialStatus);
PDUpDateEcho(Q)
End;
If Q.ImageLst.Count>0Then Begin
WESetKr(Q.Ansi,CurrKrs.MalteDos.Env.Default);