-
Notifications
You must be signed in to change notification settings - Fork 5
/
DIALPLUS.PAS
5324 lines (4984 loc) · 146 KB
/
DIALPLUS.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/Suppl‚ment de dialogue Û
³ Û
³ dition Chantal pour Mode R‚el/IV - Version 1.1 Û
³ 1999/08/08 Û
³ Û
³ Tous droits r‚serv‚s par les Chevaliers de Malte (C) Û
³ Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Nom du programmeur
ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ
Sylvain Maltais
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette unit‚ renferme toutes les options suppl‚mentaires de dialogue
utilisateur utilis‚ couramment par le programmeur. Par exemple les options
pour l'ouverture d'un fichier,...
}
Unit DialPlus;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
INTERFACE
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
{$I DEF.INC}
Uses Systex,Isatex,Dialex;
Const
{ModŠle de fichier demander }
omCoder=$0001; { Fichier de programmeur }
omConfig=$0002; { Fichier de configuration }
omMacro=$0004; { Fichier de macro ou raccourci }
omDocument=$0008; { Fichier de document et de texte }
omDraw=$0010; { Fichier d'image }
omCursor=$0020; { Fichier de curseur }
omIcon=$0040; { Fichier d'ic“ne }
omFont=$0080; { Fichier de police de caractŠres }
omBase=$0100; { Fichier de base de donn‚es }
omResource=$0200; { Fichier de ressource }
omSound=$0400; { Fichier de musique ou bande sonore }
omCalc=$0800; { Fichier de chiffrier ‚lectronique }
omAnim=$1000; { Fichier d'animation }
omTechDraw=$2000; { Fichier de dessin technique (DFD, ‚lectronique,...)}
omCompress=$4000; { Fichier compress‚ }
omExecutable=$8000; { Ex‚cutable }
omAll=$FFFF; { Tous les fichiers }
Const
{Cat‚gorie de fichier}
cfoIconWindows=$0001; { Ic“ne Windows }
cfoIconOS2=$0002; { Ic“ne OS/2 }
cfoIconGenesis=$0003; { Ic“ne Genesis }
cfoIconAdele=$0004; { Ic“ne AdŠle }
cfoIconGeoWorks=$0005; { Ic“ne GeoWorks }
cfoIconGemDesktop=$0006; { Ic“ne GemDesktop }
cfoPointerOS2=$0007; { Pointeur OS/2 }
cfoBitMapWindows=$0008; { Image de format BitMap de format Windows }
cfoBitMapOS2=$0009; { Image de format BitMap de format OS/2 }
cfoMacPaint=$000A; { Image de format MacPaint }
cfoGemImg=$000B; { Image de format GEM/IMG et la filiŠre Ventura }
cfoGFX=$000C; { Image GFX sans entˆte: 320x200 en 256 couleurs }
cfoPPM=$000D; { Image PPM/PGM }
cfoPCX=$000E; { Image PCX }
cfoLBM=$000F; { Image LBM/BBM }
cfoTGA=$0010; { Image de format Targa }
cfoTIFF=$0011; { Image de format TIFF }
cfoGIF=$0012; { Image GIF }
cfoJPEG=$0013; { Image de format de compression JPEG/JFIF }
cfoWPG=$0014; { Graphique de WordPerfect }
cfoGPX=$0015; { Image de l'ensemble Malte Genesis GPX }
cfoBGX=$0016; { Image BitMap Genesis }
cfoHex=$0017; { Codage hexad‚cimal }
cfoGatElectric=$0018; { Plan ‚lectronique en fichier document GAT }
cfoResWindows=$0019; { Ressource de Windows (RES) }
cfoExeWindows=$001A; { Ex‚cutable de Windows (RES) }
cfoCorelDraw=$001B; { Image Corel Draw }
cfoXBM=$001C; { Image XBM }
diWordPerfectGraphics=$001D;{ Dessin de Word Perfect }
diMBF=$001E; { MonsterBookFont }
diRLL=$001F; { BibliothŠque d'image }
cfoSCi=$0020; { Image SCi }
cfoImi=$0021; { Dessin technique (Intelligent Image)}
cfoPNG=$0022; { Image graphique de format PNG }
cfoMacro=$0024; { Macro }
cfoMouseMenu=$0025; { Menu Souris }
cfoFNT=$0026; { Police de caractŠres BIOS }
cfoQQF=$0027; { Police de caractŠres QQF }
cfoProfessionnalWrite=$0028;{ Document "Professionnal Write"}
cfoRes=$0029; { Ressource }
cfoVoice=$002A; { Musique "Voice" VOC }
cfoWave=$002B; { Musique WAVE }
cfoBatch=$002C; { Fichier Batch }
cfoHTML=$002D; { Document HTML }
cfoANSI=$002E; { Format texte ANSI }
cfoASCII=$002F; { Format texte ASCII DOS }
cfoTextUnix=$0030; { Format texte ASCII Unix }
cfoRTF=$0031; { Format texte mise en format RTF }
cfoMGC=$0032; { Format tableur ®Malte Genesis Calc¯ }
cfoLst=$0033; { Format tableur liste ASCII }
cfo3DStudio=$0034; { Format d'une animation 3D Studio }
cfoLotus123=$0035; { Format tableur Lotus 1-2-3 }
cfoLogo=$0036; { Langage de programmation LOGO }
cfoExcel21=$0037; { Format tableur Excel 2.1 }
cfoWord=$0039; { Document Microsoft Word }
cfoAssembler=$003A; { Code Source de langage Assembleur }
cfoCobol=$003B; { Code Source de langage Cobol }
cfoGat=$003D; { Document GAT }
cfoDBase=$003E; { Base de donn‚es DBase }
cfoAC=$003F; { Code Source de langage AC }
cfoAda=$0040; { Code Source de langage Ada }
cfoBasic=$0041; { Code Source de langage Basic }
cfoC=$0042; { Code Source de langage C/C++ }
cfoEuphoria=$0043; { Code Source de langage Euphoria }
cfoFortran=$0044; { Code Source de langage Fortran }
cfoPascal=$0045; { Code Source de langage Pascal }
cfoFirstChoice=$0046; { Document Premier Choix }
cfoCorelPhotoPaint=$047; { Image Corel Photo-Paint }
cfoIcon=$0048; { Ic“ne }
cfoIcn=$0049; { Ic“ne Genesis }
cfoINI=$0050; { Configuration Initialisation .INI }
cfoCSV=$0051; { Tableur de format .CSV }
cfoGeoWorks=$BE00; { GeoWorks }
cfoExe=$C000; { Ex‚cutable }
cfoCursor=$D000; { Curseur }
cfoDocument=$D001; { Document }
cfoXokyReg=$E000; { Base de registres ®Xoky¯ }
cfoExtensior=$E001; { Extensior }
cfoCab=$F000; { Fichier compress‚ Microsoft Compressed File }
cfoZip=$F001; { Fichier compress‚ ®Zip¯ }
cfoZoo=$F002; { Fichier compress‚ ®Zoo¯ }
cfoArj=$F003; { Fichier compress‚ ®Arj¯ }
cfoSwag=$F004; { Fichier compress‚ ®Swag¯ }
cfoLZH=$F005; { Fichier compress‚ ®LZH¯ }
cfoRAR=$F006; { Fichier compress‚ ®RAR¯ }
cfoAll=$FFFF; { Tous les fichiers }
ExtAC:PChr=NIL; { Extension par d‚faut du langage AC: "*.AC" }
ExtAsm:PChr=NIL; { Extension par d‚faut du langage Assembleur: "*.ASM;*.MAC;*.INC" }
ExtBas:PChr=NIL; { Extension par d‚faut du langage Basic: "*.BAS" }
ExtC:PChr=NIL; { Extension par d‚faut du langage C/C++: "*.C;*.CAS;*.CC;*.CPP;*.H" }
ExtEuphoria:PChr=NIL; { Extension par d‚faut du langage Euphoria: "*.E;*.EX" }
ExtFortran:PChr=NIL; { Extension par d‚faut du langage Fortran: "*.FOR;*.F77" }
ExtIni:PChr=NIL; { Extension par d‚faut des fichiers d'initialisation: "*.INI" }
ExtMsMnu:PChr=NIL; { Extension par d‚faut du fichier souris PopMenu: "*.MNU;*.DEF" }
ExtPas:PChr=NIL; { Extension par d‚faut du langage Pascal: "*.PAS;*.INC" }
ExtRC:PChr=NIL; { Extension par d‚faut d'une ressource: "*.RC;*.RES" }
Procedure CMLoad(Var Q:ContextMenu;Const Path:String;Index:Word);
Procedure CMLoadApp(Var Q:ContextMenu;Index:Word);
Procedure CMDone(Var Q:ContextMenu);
Procedure ErrMsgRes(Code:Word);
Function ExecuteAppDPU(Index:Word;Var Output):Boolean;
Function ExecuteDPU(Const Name:String;Index:Word;Var Output):Boolean;
Procedure ExtensiorInit(Var Q:Extensior);
Procedure ExtensiorAdd(Var Q:Extensior;Const Name,Image,WildCard,Execute:String;Attr:Word);
Procedure ExtensiorEditor;
Function ExtensiorNumIcon(Var Q:Extensior):Word;
Procedure ExtensiorDone(Var Q:Extensior);
Function FindActionExtensior(Const Name:String;Var Action:String):Boolean;
Function FLInit(Var Q;X1,Y1,X2,Y2:Byte):Boolean;
Procedure FLInitNPropriety(Var Q:FileListBox;Const Path,Title:String;
Var H:History;Var M:ArrayList;
PreView,SettingDescr,Push:Boolean);
Procedure FLInitModel(Var Q:FileListBox;Const Path,Title:String;
Var H:History;PreView,SettingDescr,Push:Boolean;Model:Word);
Function FLDirectory(Const Q:FileListBox):String;
Function FLDrive(Const Q:FileListBox):Char;
Function FLMask(Const Q:FileListBox):String;
Function FLFormat(Const Q:FileListBox):Word;
Procedure FLRefresh(Var Q);
Function FLRun(Var QX):Word;
Function FLTitle(Var Q;Max:Byte):String;
Procedure FLMove2(Var Q;X,Y:Byte);
Procedure FLUpDateFormat(Var Q:FileListBox;Format:Word);
Function FLDone(Var Q):Word;
Function OpenWin(Const Path,Title:String):String;
Function _OpenWin(Const Path,Title:String;Var Q:History):String;
Function _OpenWinAllModel(Const Path,Title:String;Var Q:History):String;
Function _OpenWinModel(Const Path,Title:String;Var Q:History;Model:Word):String;
Function _OpenWinMultiModel(Const Path,Title:String;Var Q:History;Var M:ArrayList;
PreView,SettingDescr:Boolean):String;
Function RunDPU(Const CodeDPU;Var Output):Boolean;
Function RunMenuApp(Index:Word):Word;
Procedure SOInit(Var Inf:SwitchOption;X,Y:Byte;Const Name,Option:String;YP:Byte);
Function TypeCFO(Const Path:String):Word;
Function WEInputString(Var W:Window;X1,Y,X2,Len:Byte;Var S:String):Word;
Procedure WEMoveWn(Var Q:Window);
Procedure WERInit(Var R:ResourceWindow);
Procedure WERDecompile(Var R:ResourceWindow;Const CodeDPU;Var Output);
Procedure WERLoad(Var R:ResourceWindow;Const Name:String;Index:Word;Var Output);
Procedure WERLoadApp(Var R:ResourceWindow;Index:Word;Var Output);
Function WERRun(Var R:ResourceWindow):Boolean;
Procedure WERDone(Var R:ResourceWindow);
Procedure WinAddExtensior(Const Name:String);
Function WinInpNmWord(L:Byte;Const Title,Msg:String;Const Kr:MtxColors;Min,Max:Word;Var Num:Word):Word;
Procedure _CMLoad(Var Q:ContextMenu;Const Path:String;Index:Word;Var _Ptr);
Procedure _CMLoadApp(Var Q:ContextMenu;Index:Word;Var Ptr);
Function _RunMenuApp(Index:Word;Var Ptr):Word;
Procedure __CMInit(Var Q:ContextMenu);
Procedure __CMLoad(Var Q:ContextMenu;Const Path:String;Index:Word;Var _Ptr{:Array of Pointer});
Procedure __CreateError(Const FileName:String);
Procedure __DirectoryFull;
Procedure __DiskFull;
Function __DiskNotReady(Disk:Byte):Word;
Procedure __FileAccessDenied;
Procedure __FileNotFound(Const FileName:String);
Function __InputExit(Const Msg:String):Boolean;
Function __InputOverwriteFile(Const FileName:String):Boolean;
Procedure __OutOfMemory;
Procedure __PathNotFound;
Procedure __TooManyOpenFiles;
Procedure __UnknownCompress;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
IMPLEMENTATION
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
Uses
Adele,Memories,Systems,Video,Mouse,Dials,DialTree,
ResLoadI,ResServI,SysPlus,ResTex,Math,Registry,
Numerix,ResServD,ToolFile;
Function SOSelect(Var Inf:SwitchOption):Word;Near;Forward;
Function SOGetPos(Var Inf:SwitchOption):Byte;Near;Forward;
Procedure PutBoxRelief(Var G:GraphBoxRec);Near;Forward;
Procedure WEShowInput(Var W:Window;X1,Y,X2:Byte);Near;Forward;
Procedure WEShowInputText(Var W:Window;X1,Y,X2:Byte;Const S:String);Near;Forward;
Function MessageByLanguage(Const Raw:String):String;Near;
Var
P:Byte;
Begin
P:=Pos('³',Raw);
If P=0Then MessageByLanguage:=Raw
Else
Begin
If DefaultLanguage=0Then MessageByLanguage:=Left(Raw,P-1)
Else MessageByLanguage:=Copy(Raw,P+1,255)
End;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ·}
{³ O b j e t S e l e c t e O º}
{ÔÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ}
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Construteur SOInit Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Propri‚taire: SwitchOption
Portabilit‚: Global
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Ce constructeur initialise l'‚cran ainsi que les donn‚es de l'objet
®Selecte O¯ sans toutefois faire appel … une demande utilisateur. Il
s'occupe de pr‚parer et non par de faire prendre des d‚cisions …
l'utilisateur.
}
Procedure SOInit{Var Inf:SwitchOption;X,Y:Byte;Const Name,Option:String;YP:Byte};
Var
I,ML,LL:Byte;
OldShade:Boolean;
Begin
FillClr(Inf,SizeOf(Inf));Inf.P:=YP;ML:=0;LL:=0;Inf.X:=X;Inf.Y:=Y;
For I:=1to Length(Option)do If Option[I]='|'Then Begin
If(LL>ML)Then ML:=LL;
Inc(Inf.L);LL:=0
End
Else
Inc(LL);
If(LL>ML)Then ML:=LL;
Inc(ML,2+5);
SetBorderSimple;
OldShade:=GetShade;
SetShade(False);
If ML<Length(Name)+3Then ML:=Length(Name)+3;
ASM
{Inf.X1:=X;Inf.Y1:=Y;Inf.X2:=X+ML;Inf.Y2:=Y+2+Inf.L;}
{$IFDEF FLAT386}
LEA EDX,Inf
MOV AL,X
MOV AH,Y
MOV Word Ptr [EDX].SwitchOption.X1,AX
ADD AL,ML
ADD AH,[EDX].SwitchOption.L
ADD AH,2
MOV Word Ptr [EDX].SwitchOption.X2,AX
{$ELSE}
LES DI,Inf
MOV AL,X
MOV AH,Y
MOV Word Ptr ES:[DI].SwitchOption.X1,AX
ADD AL,ML
ADD AH,ES:[DI].SwitchOption.L
ADD AH,2
MOV Word Ptr ES:[DI].SwitchOption.X2,AX
{$ENDIF}
END;
PutFillBorder(X,Y,Inf.X2,Inf.Y2,GetLastKr);
SetBorderSimpleLuxe;
SetShade(OldShade);
Inf.Tl:=' '+Name+' ';
PutTxtXY(X+1,Y,Inf.Tl,GetKr);
For I:=0to(Inf.L)do UnSelIcon(X+2,Y+1+I,GetLastKr);
SelIcon(X+2,Y+1+Inf.P,GetLastKr);
PutTypingXY(X+6,Y+1,Option)
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Fonction SOSelect Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Propri‚taire: SwitchOption
Portabilit‚: Global
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette fonction permet de faire s‚lectionner … l'utilisateur le choix
d‚sirer dans fenˆtre de s‚lection. Elle retourne l'action effectuer par
l'utilisateur si celui-ci ne correspond pas … un traŒtement r‚gulier de
d‚placement dans la fenˆtre. Ainsi le code de touche ®Enter¯ sera
retourner aussi bien qu'un code de touche classique ®A¯ par cette
fonction mais jamais les touches mont‚e et descendre.
}
Function SOSelect{Var Inf:SwitchOption):Word};
Label Break;
Var
K,B:Word;
M:TextCharRec;
Data:TextBoxRec;
Procedure UnSel;Begin
UnSelIcon(Inf.X+2,Inf.Y+1+Inf.P,GetLastKr)
End;
Procedure Sel;Begin
SelIcon(Inf.X+2,Inf.Y+1+Inf.P,GetLastKr);
If(Pointer(@Inf.OnMove)<>NIL)Then Inf.OnMove(Inf.Context^);
End;
Procedure PutBorder;Begin
__PutBorderUnKr(Inf.X1);
PutTxtXY(Inf.X1+1,Inf.Y1,Inf.Tl,GetKr)
End;
Begin
SetBorderDouble;
PutBorder;
MoveLeft(Inf.X1,Data,SizeOf(Data));
Inc(Data.Y1);
Dec(Data.Y2);
Repeat
__ShowMousePtr;
_InitKbd;
Repeat
__GetMouseTextSwitchZ(M,B);
If B>0Then Begin
__HideMousePtr;
If WaitMouseBut0OrOutZone(Inf.X1)Then Begin
K:=kbMouse;
Goto Break;
End
Else
Begin
If Not WaitMouseBut0OrOutZone(Data)Then Begin
Dec(M.Y,Inf.Y1+1);
UnSel;
Inf.P:=M.Y;
Sel;
End;
__ShowMousePtr;
End;
End;
_BackKbd;
If(Pointer(@Inf.OnWait)<>NIL)Then Inf.OnWait(Inf.OnWaitContext^);
Until KeyPress;
K:=ReadKey;
__HideMousePtr;
Case(K)of
kbUp,kbDn:Begin
UnSel;
Case(K)of
kbUp:If Inf.P>0Then Dec(Inf.P)Else Inf.P:=Inf.L;
Else If(Inf.P<Inf.L)Then Inc(Inf.P)Else Inf.P:=0;
End;
Sel
End;
Else Goto Break;
End
Until False;
Break:
SetBorderSimple;
PutBorder;
SetBorderSimpleLuxe;
SOSelect:=K
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Fonction SOGetPos Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Propri‚taire: SwitchOption
Portabilit‚: Global
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette fonction permet de connaŒtre la position courante de la fenˆtre de
s‚lection. La premiŠre s‚lection retour 0, la deuxiŠme 1, et ainsi de
suite,...
}
Function SOGetPos{Var Inf:SwitchOption):Byte};Assembler;ASM
{$IFDEF FLAT386}
LEA EAX,DWord Ptr Inf
MOV AL,[EAX].SwitchOption.P
{$ELSE}
LES DI,Inf
MOV AL,ES:[DI].SwitchOption.P
{$ENDIF}
END;
Procedure Frame(Var R:ResourceWindow;Const Data);
Var
Q:Record
X1,Y1,X2,Y2:Byte;
Title:String;
End Absolute Data;
OldShade:Boolean;
Begin
SetBorderSimple;
OldShade:=GetShade;
SetShade(False);
WESetKrBorder(R.W);
PutFillBorder(WEGetRX1(R.W)+Q.X1,WEGetRY1(R.W)+Q.Y1,
WEGetRX1(R.W)+Q.X2,WEGetRY1(R.W)+Q.Y2,R.W.CurrColor);
SetBorderSimpleLuxe;
SetShade(OldShade);
If Q.Title<>''Then Begin
WESetKrHigh(R.W);
WEPutTxtXY(R.W,Q.X1+1,Q.Y1,' '+Q.Title+' ');
End;
WESetKrBorder(R.W);
End;
Procedure ErrMsgRes{Code:Word};Begin
If Code>0Then ErrNoMsgOk(Code);
End;
Procedure LFChgPath(Var Q:FileListBox);Forward;
Procedure MakeModel(Var M:ArrayList;Model:Word);
Function Add(Const Name,Ext:String;Code:Word):Boolean;
Var
R:MultiModel;
Begin
R.Name:=Name;R.Ext:=Ext;R.Code:=Code;
Add:=ALAddBlock(M,SizeOf(MultiModel),R);
End;
Begin
ALInit(M);
Add('Tous','*.*',cfoAll);
If(Model and omAnim=omAnim)Then Add('Animation','*.3DS',cfo3DStudio);
If(Model and omBase=omBase)Then Begin
Add('Base de donn‚es DBase','*.DBF',cfoDBase);
Add('Base de donn‚es Mentronix','*.DAT',cfoDBase);
End;
If(Model and omCoder=omCoder)Then Begin
Add('Code Source AC','*.AC',cfoAC);
Add('Code Source Ada','*.ADA',cfoAda);
Add('Code Source Assembleur','*.ASM;*.ASO;*.INC;*.MAC',cfoAssembler);
Add('Code Source Basic','*.BAS;*.FRM',cfoBasic);
Add('Code Source C/C++','*.C;*.CAS;*.CC;*.CPP;*.H;*.HPP',cfoC);
Add('Code Source Cobol','*.COB',cfoCobol);
Add('Code Source Euphoria','*.E;*.EX',cfoEuphoria);
Add('Code Source Fortran','*.FOR;*.F77',cfoFortran);
Add('Code Source Logo','*.LGO',cfoLogo);
Add('Code Source Pascal','*.PAS;*.INC;*.DPR',cfoPascal);
End;
If(Model and omCursor=omCursor)Then Add('Curseur Windows','*.CUR',cfoCursor);
If(Model and omTechDraw=omTechDraw)Then Begin
Add('Dessin ‚lectronique','*.IMI',cfoImi);
Add('Dessin vectorielle','*.IMI',cfoImi);
Add('DFD','*.IMI',cfoImi);
End;
If(Model and omDocument=omDocument)Then Begin
Add('Document','*.GAT;*.DOC;*.RTF',cfoDocument);
Add('Document GAT','*.GAT',cfoGAT);
Add('Document HTML','*.HTM',cfoHTML);
Add('Document Premier Choix','*.DOC',cfoFirstChoice);
End;
If(Model and omDraw=omDraw)Then Begin
Add('Image BitMap de Windows','*.BMP',cfoBitMapWindows);
Add('Image BitMap de OS/2','*.BMP',cfoBitMapOS2);
Add('Image BitMap de Genesis','*.BGX',cfoBGX);
Add('Image Corel Draws','*.CDR',cfoCorelDraw);
Add('Image Corel Photo-Paint','*.CPT',cfoCorelPhotoPaint);
Add('Image GEM/Ventura','*.IMG',cfoGEMImg);
Add('Image GFX','*.GFX;*.SEX',cfoGFX);
Add('Image GIF Compuserve','*.GIF',cfoGIF);
Add('Image GPX','*.GPX',cfoGPX);
Add('Image deLux Paint II','*.LBM;*.BBM',cfoLBM);
Add('Image MacPaint','*.MAC',cfoMacPaint);
Add('Image PCX de PC Paintbrush','*.PCX',cfoPCX);
Add('Image PPM/PGM','*.PPM',cfoPPM);
Add('Image SCi (RIX)','*.SCI',cfoSCi);
Add('Image TIFF','*.TIF;*.CPT',cfoTIFF);
Add('Image XBM de Unix','*.XBM',cfoXBM);
End;
If(Model and omConfig=omConfig)Then Add('Initialisation','*.INI',cfoIni);
If(Model and omIcon=omIcon)Then Begin
Add('Ic“ne','*.CUR;*.ICN;*.ICO',cfoIcon);
Add('Ic“ne Genesis','*.ICN',cfoIcn);
Add('Ic“ne OS/2','*.ICO',cfoIconOS2);
Add('Ic“ne Windows','*.ICO;*.CUR',cfoIconWindows);
End;
If(Model and omMacro=omMacro)Then Begin
Add('Macro','*.MAC',cfoMacro);
Add('Menu Souris','*.MNU;*.DEF',cfoMouseMenu);
End;
If(Model and omFont=omFont)Then Begin
Add('Police de caractŠres BIOS','*.FNT',cfoFNT);
Add('Police de caractŠres QQF','*.QQF',cfoQQF);
End;
If(Model and omDocument=omDocument)Then Add('Professionnal Write','*.DOC',cfoProfessionnalWrite);
If(Model)and(omResource or omDraw)>0Then Add('Ressource','*.RC;*.RES',cfoRes);
If(Model and omSound=omSound)Then Begin
Add('Son de format Voice','*.VOC',cfoVoice);
Add('Son de format WAVE','*.WAV',cfoWave);
End;
If(Model and omCalc=omCalc)Then Begin
Add('Tableur MGC','*.MGC',cfoMGC);
Add('Tableur Lotus 1-2-3','*.WK1',cfoLotus123);
Add('Tableur Excel Version 2.1','*.XLS',cfoExcel21);
Add('Tableur CSV','*.CSV',cfoCSV);
Add('Tableur HTML','*.HTM',cfoHTML);
Add('Tableur liste ASCII','*.LST',cfoLST);
End;
If(Model and omDocument=omDocument)Then Begin
Add('Texte ASCII DOS','*.ASC;*.TXT',cfoASCII);
Add('Texte ASCII Unix','*.TXT',cfoTextUnix);
Add('Texte ANSI','*.ANS',cfoANSI);
Add('Texte mise en format (RTF)','*.RTF;*.DOC',cfoRTF);
End;
End;
Function FLFormat{Const Q:FileListBox):Word};Begin
If(Q.PMM=NIL)Then FLFormat:=0
Else FLFormat:=Q.PMM^.Code;
End;
{ Cette fonction permet de retourner le type CFO (Cat‚gorie de fichier
Optionnel) correspondant au nom de fichier indiqu‚e.
}
Function TypeCFO(Const Path:String):Word;
Var
Ext:String;
Begin
TypeCFO:=$FFFF;
Ext:=Path2Ext(Path);
If Ext<>''Then Begin
If Pos(Ext,StrPas(ExtAC))>0Then TypeCFO:=cfoAC Else
If Pos(Ext,'.ADA')>0Then TypeCFO:=cfoAda Else
If Pos(Ext,StrPas(ExtAsm))>0Then TypeCFO:=cfoAssembler Else
If Pos(Ext,StrPas(ExtBas))>0Then TypeCFO:=cfoBasic Else
If Pos(Ext,'.BAT;.BTM')>0Then TypeCFO:=cfoBatch Else
If Pos(Ext,'.DBF')>0Then TypeCFO:=cfoDBase Else
If Pos(Ext,StrPas(ExtC))>0Then TypeCFO:=cfoC Else
If(Length(Ext)>=4)and(Pos(Ext,'.CBL')>0)Then TypeCFO:=cfoCobol Else
If Pos(Ext,StrPas(ExtEuphoria))>0Then TypeCFO:=cfoEuphoria Else
If Pos(Ext,StrPas(ExtFortran))>0Then TypeCFO:=cfoFortran Else
If Pos(Ext,'.GAT')>0Then TypeCFO:=cfoGat Else
If Pos(Ext,'.INI')>0Then TypeCFO:=cfoIni Else
If Pos(Ext,StrPas(ExtPas))>0Then TypeCFO:=cfoPascal Else
If Pos(Ext,StrPas(ExtRC))>0Then TypeCFO:=cfoRes;
End;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure WaitRetrace2 Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Portabilit‚: Local
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette routine fait simplement attendre 2 retour de balayage de l'‚cran.
Remarque
ÍÍÍÍÍÍÍÍ
þ Elle est essentiellement utilis‚ afin d'‚conomiser de la m‚moire et
c'est la raison pour laquelle est a un statue local.
}
Procedure WaitRetrace2;Near;Begin
WaitRetrace;WaitRetrace;
End;
Procedure FLInitComplexe(Var Q:FileListBox;Const Path:String;PreView,SettingDescr:Boolean;Var M:ArrayList);
Var
I:Byte;
J:Char;
Begin
FillClr(Q,SizeOf(FileListBox));
Q.ShowGlyphs:=(IsGrf)and(MediaSupport)and(NmXTxts>42);
If(Q.ShowGlyphs)and(UseExtensior)Then ExtensiorInit(Q.ExtImg);
Q.Tri:=fName;Q.UnixSupport:=True;
Q.StartPath:=Path;
Q.Path:=Path;
If(Q.Path[1]in['*','?'])and(StrI(2,Q.Path)=':')Then For J:='C'to'Z'do Begin
If DirExist(J+Copy(Q.Path,2,255))Then Begin
Q.Path[1]:=J;
Break;
End;
End;
Q.M:=M;
Q.PreView:=PreView;Q.SettingDescr:=SettingDescr;
If(PreView)and(MediaSupport)Then Q.Length:=70
Else Q.Length:=41;
Q.YD:=(Byte(M.Count>0)shl 1);Q.Height:=16;
Inc(Q.Height,Q.YD);
BFInit(Q.FileList);
Q.FileList.Tri:=Q.Tri;
Q.MaxCol:=1;
For I:=0to(Q.MaxCol)do Begin
Q.ColPos[I]:=(13+(Byte(Q.ShowGlyphs)shl 1))*I;
Q.EndColPos[I]:=Q.ColPos[I]+11+(Byte(Q.ShowGlyphs)shl 1);
If(Q.ShowGlyphs)Then Inc(Q.Length,2);
End;
End;
Function FLInit(Var Q;X1,Y1,X2,Y2:Byte):Boolean;
Var
M:ArrayList;
Begin
FLInit:=False;
ALInit(M);
FLInitComplexe(FileListBox(Q),'*.*',False,False,M);
WEInit(FileListBox(Q).W,X1,Y1,
X1+FileListBox(Q).Length,
Y1+FileListBox(Q).Height+Byte(DescrInFile));
FileListBox(Q).W.Title:='Ouvre';
FLRefresh(Q);
LFChgPath(FileListBox(Q));
FLInit:=True;
End;
Procedure FLInitNPropriety{Var Q:FileListBox;Const Path,Title:String;
Var H:History;Var M:RBuf;
PreView,SettingDescr,Push:Boolean};Begin
FLInitComplexe(Q,Path,PreView,SettingDescr,M);
WEInitO(Q.W,Q.Length,Q.Height+Byte(DescrInFile));
If(Push)Then WEPushWn(Q.W);
Q.W.Title:=Title;Q.H:=@H;
FLRefresh(Q);
LFChgPath(Q);
End;
Procedure FLInitModel{Var Q:FileListBox;Const Path,Title:String;
Var H:History;PreView,SettingDescr,Push:Boolean;Model:Word};
Var
M:ArrayList;
Begin
MakeModel(M,Model);
FLInitNPropriety(Q,Path,Title,H,M,PreView,SettingDescr,Push);
End;
{ Cette fonction permet de connaŒtre le r‚pertoire courant o— se trouve
actuellement la s‚lection du fichier.
}
Function FLDirectory{Const Q:FileListBox):String};Begin
FLDirectory:=Q.Path;
End;
{ Cette fonction permet de connaŒtre l'unit‚ courante o— se trouve
actuellement la s‚lection de fichier.
}
Function FLDrive{Const Q:FileListBox):Char};Begin
FLDrive:=Path2Drv(Q.Path);
End;
{ Cette fonction permet de connaŒtre le masque actuellement en usage
avec s‚paration par des points-virgules (exemple: ®*.INC;*.PAS¯).
}
Function FLMask{Const Q:FileListBox):String};Begin
FLMask:=Path2NoDir(Q.Path);
End;
Function FLTitle(Var Q;Max:Byte):String;Begin
FLTitle:=FileListBox(Q).W.Title;
End;
Procedure FLMove2(Var Q;X,Y:Byte);
Var
QX:FileListBox Absolute Q;
MX,MY:Byte;
Begin
MX:=QX.W.T.X2-QX.W.T.X1;MY:=QX.W.T.Y2-QX.W.T.Y1;
QX.W.T.X1:=X;QX.W.T.X2:=X+MX;
QX.W.T.Y1:=Y;QX.W.T.Y2:=Y+MY;
FLRefresh(Q);
End;
Procedure FLPutGlyphs(Var Q:FileListBox;X,Y,Kr:Byte;P:Word;Var Info:SearchRec);
Var
S:String;
Begin
If(Q.ShowGlyphs)Then Begin
If(UseExtensior)and(Q.ExtAss<>NIL)and(Q.ExtAss^[P]>0)and(Q.ExtAss^[P]<>$FFFF)Then Begin
If Info.Attr.Value and faDir=0Then S:=Path2Dir(Q.Path)+Info.Name
Else S:=Info.Name;
ExtensiorPutIcon(Q.ExtImg,(Q.RX1+X)shl 3,GetRawY(Q.RY1+Y),16,HeightChr,
Q.ExtAss^[P],Kr shr 4,S);
End
Else
If(sfaDir)in(Info.Attr.Flags)Then Begin
If(FolderIcon<>NIL)Then Begin
RIPutImageScale(FolderIcon^,(Q.RX1+X)shl 3,GetRawY(Q.RY1+Y),
16,HeightChr,Kr shr 4);
End;
End
Else
If Pos(Info.Name,'.EXE;.COM;.CMD;.BAT;.BTM')>0Then
DossierProgramIcon(Q.RX1+X,Q.RY1+Y,Kr)
Else
DossierDocumentIcon(Q.RX1+X,Q.RY1+Y,Kr);
End;
End;
{Cette proc‚dure permet d'afficher le nom courant}
Procedure _LFPutName(Var Q:FileListBox;Y:Byte;P:Wd;uX:Byte;Var X:SearchRec);
Var
Kr:Byte;
Begin
BFGetFile(Q.FileList,P,X);
Case(X.Attr.Value)of
faDir:Kr:=CurrKrs.OpenWin.Env.Dir;
Else Kr:=CurrKrs.OpenWin.Env.Input;
End;
Q.W.CurrColor:=Kr;
FLPutGlyphs(Q,uX,3+Y,Kr,P,X);
WEPutTxtXY(Q.W,uX+(Byte(Q.ShowGlyphs)shl 1),3+Y,SetFullName(X.Name));
End;
{Cette proc‚dure permet d'afficher un item dans la liste
des noms de fichiers}
Procedure LFPutListAt(Var Q:FileListBox;_P:Word);
Var
I:Word;
X:SearchRec;
Begin
If Not BFNoFile(Q.FileList)Then Begin
For I:=0to 7do Begin
If _P+I>BFMaxFiles(Q.FileList)Then Begin
WEClrWn(Q.W,Q.ColPos[0],3+I,Q.EndColPos[0],3+7,CurrKrs.OpenWin.Env.Input);
WEClrWn(Q.W,Q.ColPos[1],3,Q.EndColPos[1],3+7,CurrKrs.OpenWin.Env.Input);
Exit
End;
_LFPutName(Q,I,Q.Position+I,Q.ColPos[0],X)
End;
For I:=0to 7do Begin
If _P+I+8>BFMaxFiles(Q.FileList)Then Begin
WEClrWn(Q.W,Q.ColPos[1],3+I,Q.EndColPos[1],3+7,CurrKrs.OpenWin.Env.Input);
Exit
End;
_LFPutName(Q,I,Q.Position+I+8,Q.ColPos[1],X)
End;
End;
End;
Procedure FLUpdateModel(Var Q:FileListBox);
Var
S:String;
Begin
If Q.W.CurrColor=$8FThen WEShowInput(Q.W,0,13,37)
Else WEBarSpcHor(Q.W,0,13,37);
Adele.UpIcon(Q.RX1+38-UpIconLen,Q.RY1+13,CurrKrs.OpenWin.Window.Icon);
S:=Left(StrUSpc(Q.PMM^.Name+' ('+Q.PMM^.Ext+')',38-UpIconLen),38-UpIconLen);
If Q.W.CurrColor=$8FThen WEShowInputText(Q.W,0,13,37-UpIconLen,S)
Else WEPutTxtXY(Q.W,0,13,S);
End;
{Affiche la barre de s‚lection, d‚finition et de description}
Procedure LFPutBar(Var Q:FileListBox);
Var
Info:SearchRec;
S:String;
PC:PChr;
PQ:Record
Fill:Array[1..17]of Chr;
PC:PChr;
End Absolute Info;
Col,XC,YC:Byte;
Begin
If Not BFNoFile(Q.FileList)Then Begin
BFGetFile(Q.FileList,Q.Position+Q.YScreen,Info);
If(Q.W.Palette.Border shr 4=0)and(BitsPerPixel=1)Then Q.W.CurrColor:=$F0 Else
If(Q.W.Palette.Border shr 4=$F)Then Q.W.CurrColor:=$1F
Else Q.W.CurrColor:=$F;
Col:=Q.YScreen shr 3;XC:=Q.ColPos[Col];YC:=3+(Q.YScreen and 7);
FLPutGlyphs(Q,XC,YC,Q.W.CurrColor,Q.Position+Q.YScreen,Info);
If(Q.ShowGlyphs)Then Inc(XC,2);
WEBarSelHor(Q.W,XC,YC,Q.EndColPos[Col]);
If HeightChr>8Then WEBarSpcHorRelief(Q.W,XC,YC,Q.EndColPos[Col]);
Q.W.CurrColor:=CurrKrs.OpenWin.Env.Input;
WESetPos(Q.W,0,wnMax-Byte(DescrInFile));
WEPutTxt(Q.W,SetFullName(Info.Name));
If(Info.Attr.Value=faDir)Then S:='<Dossier>'
Else S:=Str2(Info.Size,9);
WEPutTxt(Q.W,S);
_WERight(Q.W);
WEPutTxt(Q.W,TimeToStr(Info.Time));
If(DescrInFile)Then Begin
WELn(Q.W);
WEPutPTxt(Q.W,PQ.PC);
WEClrEol(Q.W)
End;
{ Affiche l'image s'il y a un pr‚visualisateur }
If(Q.PreView)Then Begin
RIPreViewImage(Path2Dir(Q.Path)+Info.Name,Q.W,1,1,28 shl 3,GetRawY(13));
End;
End;
End;
{Cette proc‚dure permet d'afficher l'entr‚e du r‚pertoire}
Procedure LFPutInput(Var Q:FileListBox;Const Path:String);
Var
Len:Byte;
Begin
Len:=Succ(Q.EndColPos[Q.MaxCol])-UpIconLen;
WEPutTxtXYU(Q.W,0,1,Left(StrUSpc(Path,Len),Len));
End;
Procedure FLUpDateAllData(Var Q:FileListBox);Begin
LFPutListAt(Q,Q.Position);
Q.W.CurrColor:=CurrKrs.OpenWin.Env.Input;
WEPutTxtXY(Q.W,1,wnMax-1-Byte(DescrInFile),Q.Path);
WEClrEol(Q.W);
LFPutBar(Q);
LFPutInput(Q,Q.Path);
End;
Procedure FLUpDateFormat(Var Q:FileListBox;Format:Word);
Var
I:Word;
Begin
If Q.M.Count>0Then Begin
ALSetPtr(Q.M,0);
Q.CurrModelPos:=0;
If Q.M.Count>0Then For I:=0to Q.M.Count-1do Begin
Q.PMM:=_ALGetCurrBuf(Q.M);
If(Q.PMM^.Code=Format)Then Begin
WESetKr(Q.W,$8F);
FLUpDateModel(Q);
Break;
End;
ALNext(Q.M);
Inc(Q.CurrModelPos);
End;
End;
End;
Procedure FLRefresh(Var Q);
Var
QX:FileListBox Absolute Q;
Ext:ExtStr;
I,XUpShadow:Word;
Begin
XUpShadow:=Succ(QX.EndColPos[QX.MaxCol]);
WEPutWn(QX.W,QX.W.Title,CurrKrs.OpenWin.Window);
WECloseIcon(QX.W);
WEBar(QX.W);
QX.RX1:=WEGetRX1(QX.W);QX.RY1:=WEGetRY1(QX.W);
QX.W.CurrColor:=CurrKrs.OpenWin.Env.Input;
{WEBarSpcHorShade(QX.W,0,1,Pred(XUpShadow));}
WEShowInput(QX.W,0,1,Pred(XUpShadow));
Adele.UpIcon(QX.RX1+XUpShadow-UpIconLen,QX.RY1+1,CurrKrs.OpenWin.Window.Icon);
For I:=0to(QX.MaxCol)do Begin
WEClrWn(QX.W,QX.ColPos[I],3,QX.EndColPos[I],3+7,CurrKrs.OpenWin.Env.Input);
End;
QX.W.CurrColor:=QX.W.Palette.kShade;
WESetCube(QX.W,XUpShadow,3,'Ü');
BarTxtVer(QX.RX1+XUpShadow,QX.RY1+4,QX.RY1+11,'Û',QX.W.Palette.kShade);
WEBarTxtHor(QX.W,1,12,XUpShadow,'ß');
Adele.LeftIcon(QX.RX1,QX.RY1+11,CurrKrs.OpenWin.Window.Icon);
If LeftIconLen=1Then BarTxtHor(QX.RX1+1,QX.RY1+11,QX.RX1+XUpShadow-2,'±',CurrKrs.OpenWin.Window.Icon)
Else
Begin
QX.W.CurrColor:=(CurrKrs.OpenWin.Window.Icon shr 4)+((CurrKrs.OpenWin.Window.Icon and 7)shl 4);
WEBarSpcHor(QX.W,LeftIconLen,11,XUpShadow-RightIconLen);
WEBarSpcHorRelief(QX.W,LeftIconLen,11,Pred(XUpShadow)-RightIconLen)
End;
Adele.RightIcon(QX.RX1+XUpShadow-RightIconLen,QX.RY1+11,CurrKrs.OpenWin.Window.Icon);
WEClrWn(QX.W,0,QX.Height-3,QX.Length-2,
QX.Height-2+Byte(DescrInFile),CurrKrs.OpenWin.Env.Input);
WEPutkHor(QX.W,XUpShadow+2,1,11,'Correcte');
WEPutkHor(QX.W,XUpShadow+2,3,11,'D‚part');
WEPutkHor(QX.W,XUpShadow+2,5,11,'Racine');
WEPutkHor(QX.W,XUpShadow+2,7,11,'Cr‚e R‚p.');
WEPutkHor(QX.W,XUpShadow+2,9,11,'Annule');
QX.W.CurrColor:=CurrKrs.OpenWin.Env.Input;
{Recherche d'un modŠle correspondant et l'affiche }
If QX.M.Count>0Then Begin
ALSetPtr(QX.M,0);
Ext:=Path2Ext(QX.Path);QX.CurrModelPos:=0;
For I:=0to QX.M.Count-1do Begin
QX.PMM:=_ALGetCurrBuf(QX.M);
If Pos(Ext,QX.PMM^.Ext)>0Then Begin
WESetKr(QX.W,$8F);
FLUpDateModel(QX);
Break;
End;
ALNext(QX.M);
Inc(QX.CurrModelPos);
End;
End;
If(QX.NotFirstTime)Then FLUpDateAllData(QX);
QX.NotFirstTime:=True;
End;
{Cette proc‚dure permet d'afficher l'item}
Procedure LFPutItem(Var Q:FileListBox);
Var
X:SearchRec;
Kr,y3:Byte;
Begin
If Q.YScreen<=7Then y3:=0
Else y3:=8;
If Q.Position+Q.YScreen<=BFMaxFiles(Q.FileList)Then
_LFPutName(Q,Q.YScreen-y3,Q.Position+Q.YScreen,Q.ColPos[Q.YScreen shr 3],X)
End;
Function Chk4New(Var Path:String):Boolean;
Var
I:Byte;
Option:Set of (Card,Point);
Begin
Chk4New:=False;Option:=[];
For I:=1to Length(Path)do Case Path[I]of
'.':Include(Option,Point);
'*','?':Include(Option,Card);
';':Begin
If Option=[Point]Then Begin
{$IFDEF __Windows__}
SetLength(Path,I-1);
{$ELSE}
Path[0]:=Chr(I-1);
{$ENDIF}
Chk4New:=True;
End;
Exit;
End;
End;
End;
{Change le r‚pertoire de recherche}
Procedure LFChgPath(Var Q:FileListBox);
Label Ok;
Var
LW:Window;
I:Char;
Begin
WEPushEndBar(LW);
WEPutLastBar('Lecture du r‚pertoire en cours...');
Q.Position:=0;Q.YScreen:=0;
If Q.Path=''Then Begin