-
Notifications
You must be signed in to change notification settings - Fork 5
/
DRAWEDIT.PAS
3842 lines (3527 loc) · 103 KB
/
DRAWEDIT.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/Programme de Dessin Û
³ dition Chantal pour Mode R‚el/IV - Version 1.2 Û
³ 1996/02/31 Û
³ Û
³ Tous droits r‚serv‚s par les Chevaliers de Malte (C) Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Nom du programmeur
ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ
Sylvain Maltais
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette unit‚ permet de dessiner des dessins dans une fenˆtre
d'application en mode graphique. Il r‚clame bien entendu que le graphique
soit autoris‚ par la directive condition ®Graf¯.
}
Unit DrawEdit;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
INTERFACE
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
{$I DEF.INC}
{$IFDEF Graf}
Uses
Systex,Isatex;
Function DWInit(Var Q:DrawEditApp;Path:String;Inf:WIRec):Boolean;
Procedure DWBackOperation(Var Context);
Procedure DWOnMouseControl(Var Context;Control:Word);
Procedure DWOnMouseDown(Var Context;X,Y:Integer;TX,TY:Byte;Shift:Word);
Procedure DWOnMouseMove(Var Context;X,Y:Integer;TX,TY:Byte);
Procedure DWOnKeyDown(Var Context;Key:Word;Shift:ShiftState);
Procedure DWOnKeyPress(Var Context;Key:Char);
Procedure DWSelectFont(Var Q:DrawEditApp);
Procedure DWSelectSizeBrush(Var Q:DrawEditApp);
Procedure DWSetColor(Var Q:DrawEditApp);
Procedure DWCopyBox2Clipboard(Var Q:DrawEditApp;X1,Y1,X2,Y2:Word);
Procedure DWCopyImage2Clipboard(Var Q:DrawEditApp);
Procedure DWClearImage(Var Q:DrawEditApp);
Procedure DWFillBoxAbsolute(Var Q:DrawEditApp);
Procedure DWFillBoxRelative(Var Q:DrawEditApp);
Procedure DWLineAbsolute(Var Q:DrawEditApp);
Procedure DWLinePolaires(Var Q:DrawEditApp);
Procedure DWLineRelative(Var Q:DrawEditApp);
Procedure DWPointAbsolute(Var Q:DrawEditApp);
Function DWPutFont(Var Q:DrawEditApp;X,Y:Word;Const S:String):Word;
Procedure DWPasteClipboard2Image(Var Q:DrawEditApp;X,Y:Word);
Procedure DWRectAbsolute(Var Q:DrawEditApp);
Procedure DWRectRelative(Var Q:DrawEditApp);
Procedure DWFullScrn(Var Q:DrawEditApp);
Function DWNew(Var Q;X1,Y1,X2,Y2:Byte):Boolean;
Procedure DWOpen(Var Q;X1,Y1,X2,Y2:Byte;Const Path:String);
Procedure DWRefresh(Var Q);
Procedure DWSetMode(Var Q:DrawEditApp;M:Byte);
Function DWGetMode(Var Q:DrawEditApp):Byte;
Function DWSaveAs(Var Context;Const FileName:String):Boolean;
Function DWSave(Var Q):Boolean;
Procedure DWScrollDn(Var Q:DrawEditApp);
Function DWTitle(Var Q;Max:Byte):String;
Procedure DWMove2(Var Context;X,Y:Byte);
Procedure DWReSize(Var Context;X1,Y1,X2,Y2:Byte);
Procedure DWMagnify(Var Q:DrawEditApp;X:Boolean);
Procedure DWUpDateButton(Var Q:DrawEditApp);
Function DWDone(Var Context):Word;
Procedure WIInit(Var Inf:MCanvas;WI:WIRec);
Procedure WISetWnTxt(Var Inf:MCanvas;X1,Y1,X2,Y2:Byte;InitAll:Boolean);
Function WIIsInit(Var Inf:MCanvas):Boolean;
Function WIXMoveWn(Var Inf:MCanvas):Word;
Function WIYMoveWn(Var Inf:MCanvas):Word;
Procedure WIDraw(Var Inf:MCanvas;Const S:String);
Procedure WIMoveWnX(Var Inf:MCanvas;X:Integer);
Procedure WIMoveWnY(Var Inf:MCanvas;Y:Integer);
Procedure WIMoveWn(Var Inf:MCanvas;X,Y:Integer);
Procedure WICopyAllLn(Var Inf:MCanvas;Y:Wd;Var XBuf);
Procedure WICopyAllLnNoUpDate(Var Inf:MCanvas;Y:Word;Var XBuf);
Procedure WISetColor(Var Inf:MCanvas;Color:Word);
Procedure WIFloodFill(Var Q:MCanvas;X,Y:Integer);
Procedure WIPutFillBox(Var Inf:MCanvas;X1,Y1,X2,Y2:Word);
Procedure WIPutFillRoundRect(Var Q:MCanvas;x1,y1,x2,y2,b:Integer);
Procedure WIPutRect(Var Inf:MCanvas;X1,Y1,X2,Y2:Word);
Procedure WIPutRoundRect(Var Q:MCanvas;x1,y1,x2,y2,LineWidth,b:Integer);
Procedure WIPutTTextXY(Var Inf:MCanvas;X,Y:Word;Height:Byte;Const S:String);
Procedure WIPutLnHor(Var Inf:MCanvas;X1,Y,X2:Word);
Procedure WIPutPixel(Var Inf:MCanvas;X,Y:Word);
Procedure WISetPixel(Var Inf:MCanvas;X,Y:Word;Color:LongInt);
Procedure WIPutLine(Var Inf:MCanvas;X1,Y1,X2,Y2:Integer);
Procedure WIUpDateLn(Var Inf:MCanvas;Y:Word);
Function WIGetPixel(Var Inf:MCanvas;X,Y:Word):Word;
Procedure WIDone(Var Inf:MCanvas);
{$ENDIF}
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
IMPLEMENTATION
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
{$IFDEF Graf}
Uses
Adele,Memories,Apps,Systems,Video,Mouse,dialex,Dials,
Restex,ResLoadI,ResSaveI,ResServI,DialPlus,Goldnaxe,Math,
FontMana,Numerix,DrawKr,DrawInfo,DrawTxtu,DrawMacr,DrawMove;
Procedure DWPoint(Var Q:DrawEditApp;X,Y:Word);Near;Forward;
Procedure DWPush(Var Q:DrawEditApp);Near;Forward;
Procedure DWPutCur(Var Q:DrawEditApp;Kr:Byte);Near;Forward;
Procedure FillBool(Var X;Len:Word;Value:Boolean);Near;Forward;
Procedure FillBoolAt(Var X;At,Len:Word;Value:Boolean);Near;Forward;
Procedure FillQuartet(Var X;Len:Word;Value:Byte);Near;Forward;
Procedure WIPutLineHor(Var Q:MCanvas;X1,Y,X2:Word);Near;Forward;
Function InputSize(Var Inf:WIRec):Boolean;Near;Forward;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure FillBool Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure fixe des bits … la valeur de la variable de param‚trage
®Value¯ en m‚moire conventionnel (en mode r‚el) sous la longueur en bits:
Len.
}
Procedure FillBool{Var X;Len:Word;Value:Boolean};
Var
VX,EB:Byte;
W:Word;
XB:^TByte Absolute X;
Begin
VX:=Byte(Value)*$FF;
FillChr(X,Len shr 3,VX);
EB:=Len and 7;
If EB>0Then Begin
W:=(Len shr 3)+1;
If(Value)Then XB^[W]:=XB^[W]or($FFshr(8-EB))
Else XB^[W]:=XB^[W]and Not($FFshr(8-EB))
End
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure FillBoolAt Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure fixe des bits … la valeur de la variable de param‚trage
®Value¯ en m‚moire conventionnel (en mode r‚el) … partir de la position
en bits et de la longueur en bits: Len.
}
Procedure FillBoolAt{Var X;At,Len:Wd;Value:Boolean};
Var
VX,EB:Byte;
XB:^TByte Absolute X;
AtHi:Word;
Begin
If At=0Then FillBool(X,Len,Value)
Else
Begin
AtHi:=At shr 3; At:=At and 7;
If(Value)Then XB^[0]:=XB^[0]or($FFshl At)
Else XB^[0]:=XB^[0]and Not($FFshr At);
FillBool(XB^[1+AtHi],Len-At,Value)
End
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure FillQuartet Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure permet d'initialiser les quartets (au nombre de deux
par octet) avec la valeur sp‚cifi‚e.
}
Procedure FillQuartet(Var X;Len:Word;Value:Byte);Begin
ASM
MOV AL,Value
{$IFOPT G+}
SHL AL,4
{$ELSE}
MOV CL,4
SHL AL,CL
{$ENDIF}
OR Value,AL
END;
FillChr(X,Len shr 1,Value);
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Fonction ScrnBytesPerLine Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Portabilit‚: Local
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette fonction retourne le nombre d'octets par ligne d'‚cran au niveau
logique et non pas au niveau physique.
}
Function ScrnBytesPerLine(NumXPixels:Word):Word;Begin
ScrnBytesPerLine:=LocalBytesPerLine(NumXPixels,BitsPerPixel);
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure DWCopyImage2Clipboard Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Portabilit‚: Global
Propri‚taire: DrawWins
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure permet de copier l'image sur le presse-papier.
}
Procedure DWCopyImage2Clipboard(Var Q:DrawEditApp);Begin
RICopy2Clipboard(Q.Canvas.Image);
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure DWCopyBox2Clipboard Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Portabilit‚: Global
Propri‚taire: DrawWins
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure permet de copie une boŒte sp‚cifier par les coordonn‚es
(X1,Y1)-(X2,Y2) dans le presse-papier.
}
Procedure DWCopyBox2Clipboard(Var Q:DrawEditApp;X1,Y1,X2,Y2:Word);
Var
Res:ImageHeaderRes; { Entˆte de ressource destinataire }
Buffer:Array[0..4095]of Byte; { Tampon de transfert de donn‚es }
I:Word; { Variable de compteur de boucle }
FS,FT:Long; { Position source et destination }
Begin
If(X1>X2)Then SwapWord(X1,X2);
If(Y1>Y2)Then SwapWord(Y1,Y2);
Res:=Q.Canvas.Res;Res.Shadow:=False;
Res.NumXPixels:=X2-X1+1;Res.NumYPixels:=Y2-Y1+1;
FS:=LongInt(Y1)*LongInt(Q.Canvas.Res.BytesPerLine)+
LongInt(LocalBytesPerLine(X1,Res.BitsPerPixel))+SizeOf(Res);
FT:=SizeOf(Res);
Res.BytesPerLine:=LocalBytesPerLine(Res.NumXPixels,Res.BitsPerPixel);
MakeClipboard(SizeOf(Res)+Long(Res.BytesPerLine)*Long(Res.NumYPixels)+
LongInt(Res.NumPal*3));
SetAbsClipboard(0,SizeOf(Res),Res);
For I:=Y1 to(Y2)do Begin
XGetAbsRec(Q.Canvas.Image,FS,Res.BytesPerLine,Buffer);
SetAbsClipboard(FT,Res.BytesPerLine,Buffer);
Inc(FS,LongInt(Q.Canvas.Res.BytesPerLine));
Inc(FT,LongInt(Res.BytesPerLine));
End;
If Res.NumPal>0Then Begin
XGetAbsRec(Q.Canvas.Image,FS,Res.NumPal*3,Buffer);
SetAbsClipboard(FT,Res.NumPal*3,Buffer);
End;
End;
Function RGB2KrX(BitsPerPixel,R,G,B:Byte):Word;
Var
Kr:Byte;
Begin
Case(BitsPerPixel)of
4:Begin
If(R)and$80=$80Then Kr:=Kr or$04;
If(R)and$40=$40Then Kr:=Kr or$20;
If(G)and$80=$80Then Kr:=Kr or$02;
If(G)and$40=$40Then Kr:=Kr or$10;
If(B)and$80=$80Then Kr:=Kr or$01;
If(B)and$40=$40Then Kr:=Kr or$08;
RGB2KrX:=Kr and$F;
End;
8:RGB2KrX:=64+(B shr 6)+((G shr 5)shl 2)+((R and$C0)shr 1);
15:RGB2KrX:=((B shr 2)+((((G and$F8)shl 3)+((R and$F8)shl 8))))shr 1;
16:RGB2KrX:=(B shr 3)+((((G and$F8)shl 3)+((R and$F8)shl 8)))
End;
End;
Procedure ConvPixel(SBitsPerPixel,TBitsPerPixel:Byte;NumXPixels:Word;Const Palette;Var Buf);
Var I:Word;SB,SB1,SB2:Byte;
ByteBuf:TByte Absolute Buf;
WordBuf:TWord Absolute Buf;
PaletteRGB:Palette256RGB Absolute Palette;
Begin
Case(SBitsPerPixel)of
4:Case(TBitsPerPixel)of
8:Begin
For I:=(NumXPixels-1)shr 1downto 0do Begin
SB:=ByteBuf[I];
ByteBuf[I shl 1]:=SB shr 4;
ByteBuf[(I shl 1)+1]:=SB and$F;
End;
End;
9..16:Begin
For I:=(NumXPixels-1)shr 1downto 0do Begin
SB:=ByteBuf[I];SB1:=SB shr 4;SB2:=SB and$F;
WordBuf[I shl 1]:=RGB2KrX(TBitsPerPixel,DefaultRGB[SB1].R,DefaultRGB[SB1].G,DefaultRGB[SB1].B);
WordBuf[(I shl 1)+1]:=RGB2KrX(TBitsPerPixel,DefaultRGB[SB2].R,DefaultRGB[SB2].G,DefaultRGB[SB2].B);
End;
End;
End;
8:Case(TBitsPerPixel)of
15,16:Begin
For I:=NumXPixels-1downto 0do Begin
SB:=ByteBuf[I];
WordBuf[I]:=RGB2KrX(TBitsPerPixel,PaletteRGB[SB].R,PaletteRGB[SB].G,PaletteRGB[SB].B);
End;
End;
End;
24:Line2Doublon(Buf,Buf,Buf,BitsPerPixel,24,NumXPixels);
End;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure DWPasteClipboard2Image Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Portabilit‚: Global
Propri‚taire: DrawWins
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure permet de coller une image sur l'image actuellement
en traŒtement.
}
Procedure DWPasteClipboard2Image(Var Q:DrawEditApp;X,Y:Word);
Var
SRes:ImageHeaderRes; { Entˆte de ressource source }
Buf:Array[0..4095]of Byte; { Tampon de transfert de donn‚es }
J:Word; { Variable de compteur de boucle }
SP,TP,BL:LongInt; { Position Source et Destination }
BytesPerLine:Word; { Octets par ligne de l'image en nouveau format de couleur }
Palette:Palette256RGB; { Palette de couleur … utiliser }
Begin
GetAbsClipboard(0,SizeOf(SRes),SRes);
{Presse-papier contient une image valide?}
If(SRes.ID<>idResImage)or(Byte(SRes.Shadow)>1)Then Exit;
{Ligne d'image trop grande?}
If SRes.BytesPerLine>SizeOf(Buf)Then Begin
ErrNoMsgOk(errImageLineTooBig);
Exit;
End;
If(Y>Q.Canvas.Res.NumYPixels)Then Exit; { Copie en dehors de l'image? }
SP:=SizeOf(SRes);
BL:=SizeOf(Q.Canvas.Res)+LongInt(Q.Canvas.Res.BytesPerLine)*LongInt(Q.Canvas.YMove+Y);
TP:=BL+Long(LocalBytesPerLine(Q.Canvas.XMove+X,Q.Canvas.Res.BitsPerPixel));
BytesPerLine:=LocalBytesPerLine(SRes.NumXPixels,Q.Canvas.Res.BitsPerPixel);
If BytesPerLine=0Then Begin
ErrNoMsgOk(errCopyImageEmpty);
Exit;
End;
If SRes.NumPal<>0Then Begin
{ S‚curit‚ pour donn‚es invraisemblable...}
If SRes.NumPal>256Then SRes.NumPal:=256;
{ Chargement de la palette de couleur contenu dans le presse-papier }
GetAbsClipboard(Long(SRes.BytesPerLine)*
Long(SRes.NumYPixels)+
Long(SizeOf(SRes)),SRes.NumPal*3,Palette);
End
Else
Begin
FillClr(Palette,SizeOf(Palette));
MoveLeft(DefaultRGB,Palette,SizeOf(DefaultRGB));
End;
If(SRes.NumXPixels>Q.Canvas.Res.NumXPixels)Then Begin { Image trop grande pour le dessin? }
If(WarningMsgYesNo('Image trop grande pour le dessin. '+
'Appliquer un ajustement scalaire?')=kbYes)Then Begin
_RIPutScale(Clipboard,1,1,Q.Canvas.Res.NumXPixels,Q.Canvas.Res.NumYPixels,
Q.Canvas.Res.BitsPerPixel,[wiCopy2Target],Q.Canvas.Image);
XFreeMem(Q.Canvas.Miroir);
RIMakeDoublon(Q.Canvas.Image,rmAllResSteady,False,Q.Canvas);
DWRefresh(Q);
Exit;
End;
End;
For J:=0to SRes.NumYPixels-1do Begin
GetAbsClipboard(SP,SRes.BytesPerLine,Buf);
Inc(SP,LongInt(SRes.BytesPerLine));
ConvPixel(SRes.BitsPerPixel,Q.Canvas.Res.BitsPerPixel,
SRes.NumXPixels,Palette,Buf);
XSetAbsRec(Q.Canvas.Image,TP,BytesPerLine,Buf);
Inc(TP,LongInt(Q.Canvas.Res.BytesPerLine));
XGetAbsRec(Q.Canvas.Image,BL,Q.Canvas.Res.BytesPerLine,Buf);
Inc(BL,LongInt(Q.Canvas.Res.BytesPerLine));
WICopyAllLn(Q.Canvas,Y,Buf);
Inc(Y);
If(Y>Q.Canvas.Res.NumYPixels)Then Break;
End;
End;
Function DWScaleForm(Var Q:DrawEditApp;Var Width,Height:Word):Boolean;
Var
FormScale:Record
Width:Word;
Height:Word;
End;
Begin
DWScaleForm:=False;
FillClr(FormScale,SizeOf(FormScale));
FormScale.Width:=Width;
FormScale.Height:=Height;
If ExecuteAppDPU(125,FormScale)Then Begin
Width:=FormScale.Width;
Height:=FormScale.Height;
DWScaleForm:=True;
End;
End;
Procedure DWScale(Var Q:DrawEditApp;X,Y:Word);
Var
Width,Height:Word;
ClipboardRes:ImageHeaderRes;
Tmp:XInf;
SRes:ImageHeaderRes; { Entˆte de ressource source }
SP,TP,BL:LongInt; { Position Source et Destination }
Palette:Palette256RGB; { Palette de couleur … utiliser }
Procedure CopyToImage;
Var
Buf:Array[0..4095]of Byte; { Tampon de transfert de donn‚es }
J:Word; { Variable de compteur de boucle }
Begin
For J:=0to SRes.NumYPixels-1do Begin
XGetAbsRec(Tmp,SP,SRes.BytesPerLine,Buf);
Inc(SP,LongInt(SRes.BytesPerLine));
XSetAbsRec(Q.Canvas.Image,TP,SRes.BytesPerLine,Buf);
Inc(TP,LongInt(Q.Canvas.Res.BytesPerLine));
XGetAbsRec(Q.Canvas.Image,BL,Q.Canvas.Res.BytesPerLine,Buf);
Inc(BL,LongInt(Q.Canvas.Res.BytesPerLine));
WICopyAllLn(Q.Canvas,Y,Buf);
Inc(Y);
If(Y>Q.Canvas.Res.NumYPixels)Then Break;
End;
End;
Begin
GetAbsClipboard(0,SizeOf(ClipboardRes),ClipboardRes);
Width:=ClipboardRes.NumXPixels;
Height:=ClipboardRes.NumYPixels;
If DWScaleForm(Q,Width,Height)Then Begin
If(Width=ClipboardRes.NumXPixels)and(Height=ClipboardRes.NumYPixels)Then Begin
DWPasteClipboard2Image(Q,X,Y);
End
Else
Begin
SP:=SizeOf(SRes);
BL:=SizeOf(Q.Canvas.Res)+LongInt(Q.Canvas.Res.BytesPerLine)*LongInt(Q.Canvas.YMove+Y);
TP:=BL+Long(LocalBytesPerLine(Q.Canvas.XMove+X,Q.Canvas.Res.BitsPerPixel));
_RIPutScale(Clipboard,0,0,Width-1,Height-1,Q.Canvas.Res.BitsPerPixel,[wiCopy2Target],Tmp);
XGetAbsRec(Tmp,0,SizeOf(SRes),SRes);
CopyToImage;
XFreeMem(Tmp);
DWRefresh(Q);
End;
End;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure DWSelectFont Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Portabilit‚: Global
Propri‚taire: DrawWins
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure permet de s‚lectionner la police de caractŠres souhaiter
pour le programme de dessin.
}
Procedure DWSelectFont(Var Q:DrawEditApp);
Var
OldQQF:Pointer;
OldQQFSize:Word;
OldQQFHeight:Byte;
OldPathFont:String;
Begin
If SelectFont(Q.FontType)Then Begin
OldQQF:=QQF;
OldQQFSize:=QQFSize;
OldQQFHeight:=QQFHeight;
OldPathFont:=PathFont;
QQF:=NIL;
QQFSize:=0;
QQFHeight:=0;
PathFont:='';
LoadQQF({Q.FontType.Path+'|'+}Q.FontType.Index.Name);
Pointer(Q.QQF):=QQF;
Q.QQFSize:=QQFSize;
Q.QQFHeight:=QQFHeight;
Q.PathFont:=PathFont;
QQF:=OldQQF;
QQFSize:=OldQQFSize;
QQFHeight:=OldQQFHeight;
PathFont:=OldPathFont;
Q.Mode:=drwText;
End;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure DWLineAbsolue Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Portabilit‚: Global
Propri‚taire: DrawWins
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure offre … l'utilisateur la possibilit‚ d'‚crire une ligne
avec des coordonn‚es absolue rentrer manuellement.
}
Procedure DWLineAbsolute(Var Q:DrawEditApp);
Var
Data:Record
X1,Y1,X2,Y2:Word;
End;
Begin
FillClr(Data,SizeOf(Data));
If ExecuteAppDPU(8,Data)Then Begin
WIPutLine(Q.Canvas,Data.X1,Data.Y1,Data.X2,Data.Y2);
Q.Modified:=True;
Q.Canvas.DrawX:=Data.X2;
Q.Canvas.DrawY:=Data.Y2;
End;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure DWLineRelative Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Portabilit‚: Global
Propri‚taire: DrawWins
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure offre … l'utilisateur la possibilit‚ d'‚crire une ligne
avec un coordonn‚e absolue … partir de la position pr‚c‚dente devant ˆtre
rentrer manuellement.
}
Procedure DWLineRelative(Var Q:DrawEditApp);
Var
Data:Record
X2,Y2:Word;
End;
Begin
FillClr(Data,SizeOf(Data));
If ExecuteAppDPU(9,Data)Then Begin
WIPutLine(Q.Canvas,Q.Canvas.DrawX,Q.Canvas.DrawY,Data.X2,Data.Y2);
Q.Canvas.DrawX:=Data.X2;Q.Canvas.DrawY:=Data.Y2;Q.Modified:=True;
End;
End;
Procedure DWSelectSizeBrush(Var Q:DrawEditApp);
Var
Data:Record
Length,Height:Word;
End;
Begin
Data.Length:=Q.LengthBrush;
Data.Height:=Q.HeightBrush;
If ExecuteAppDPU(10,Data)Then Begin
Q.LengthBrush:=Data.Length;Q.HeightBrush:=Data.Height;
End;
End;
Procedure DWLinePolaires(Var Q:DrawEditApp);
Var
Data:Record
X,Y,Len,Degree,Minute,Second:Word;
Angle:Real;
End;
AX2,AY2:Word;
Begin
FillClr(Data,SizeOf(Data));
If ExecuteAppDPU(11,Data)Then Begin
Data.Angle:=(PI/180)*(360-(Data.Degree+(Data.Minute/60)+(Data.Second/360)));
AX2:=Data.X+Trunc(Cos(Data.Angle)*Data.Len);AY2:=Data.Y+Trunc(Sin(Data.Angle)*Data.Len);
WIPutLine(Q.Canvas,Data.X,Data.Y,AX2,AY2);
Q.Canvas.DrawX:=AX2;Q.Canvas.DrawY:=AY2;Q.Modified:=True;
End;
End;
Procedure DWRectAbsolute(Var Q:DrawEditApp);
Var
Data:Record
X1,Y1,X2,Y2:Word;
End;
Begin
FillClr(Data,SizeOf(Data));
If ExecuteAppDPU(12,Data)Then Begin
WIPutRect(Q.Canvas,Data.X1,Data.Y1,Data.X2,Data.Y2);
Q.Canvas.DrawX:=Data.X2;Q.Canvas.DrawY:=Data.Y2;Q.Modified:=True;
End;
End;
Procedure DWCircle3Point(Var Q:DrawEditApp);
Var
Data:Record
X1,Y1,X2,Y2,X3,Y3:Word;
End;
XC,YC,X0,Y0,X1,Y1,X2,Y2,X3,Y3,H2,H3,K2,K3,Rad:Integer;
Begin
FillClr(Data,SizeOf(Data));
If ExecuteAppDPU(122,Data)Then Begin
H2:=((Y1+Y2)shr 1)+((Sqr(x2))-((Sqr(x1))div((Y2-Y1)shl 1)));
H3:=((Y1+Y2)shr 1)+((Sqr(x3))-((Sqr(x1))div((Y2-Y1)shl 1)));
If Y2-Y1=0Then K2:=0
Else K2:=-((x2-x1)div(y2-y1));
If Y3-Y1=0Then K3:=0
Else k3:=-((x3-x1)div(y3-y1));
If K2-K3=0Then Begin
X0:=0;Y0:=0;
End
Else
Begin
X0:=(H3-H2)div(K2-K3);
Y0:=((K3*H2)-(K2*H3))div(K3-K2);
End;
XC:=(h3-h2)div(k2-k3);
YC:=((K3*H2)-(K2*H3))div(K3-K2);
If(X1-X0=0)or(Y1-Y0=0)Then Rad:=0
Else Rad:=Trunc(Sqrt(((Sqr(X1-X0))+(Sqr(Y1-Y0)))));
WIPutRoundRect(Q.Canvas,XC-Rad,YC-Rad,XC+Rad,YC+Rad,1,Rad);
End;
End;
Procedure DWRectRelative(Var Q:DrawEditApp);
Var
Data:Record
X2,Y2:Word;
End;
Begin
FillClr(Data,SizeOf(Data));
If ExecuteAppDPU(13,Data)Then Begin
WIPutRect(Q.Canvas,Q.Canvas.DrawX,Q.Canvas.DrawY,Data.X2,Data.Y2);
Q.Canvas.DrawX:=Data.X2;
Q.Canvas.DrawY:=Data.Y2;
Q.Modified:=True;
End;
End;
Procedure DWFillBoxAbsolute(Var Q:DrawEditApp);
Var
Data:Record
X1,Y1,X2,Y2:Word;
End;
Begin
FillClr(Data,SizeOf(Data));
If ExecuteAppDPU(14,Data)Then Begin
WIPutFillBox(Q.Canvas,Data.X1,Data.Y1,Data.X2,Data.Y2);
Q.Canvas.DrawX:=Data.X2;
Q.Canvas.DrawY:=Data.Y2;
Q.Modified:=True;
End;
End;
Procedure DWFillBoxRelative(Var Q:DrawEditApp);
Var
Data:Record
X2,Y2:Word;
End;
Begin
FillClr(Data,SizeOf(Data));
If ExecuteAppDPU(15,Data)Then Begin
WIPutFillBox(Q.Canvas,Q.Canvas.DrawX,Q.Canvas.DrawY,Data.X2,Data.Y2);
Q.Canvas.DrawX:=Data.X2;
Q.Canvas.DrawY:=Data.Y2;
Q.Modified:=True;
End;
End;
Procedure DWPointAbsolute(Var Q:DrawEditApp);
Var
Data:Record
X2,Y2:Word;
End;
Begin
FillClr(Data,SizeOf(Data));
If ExecuteAppDPU(16,Data)Then Begin
If(Data.X2>Q.Canvas.Res.NumXPixels)or
(Data.Y2>Q.Canvas.Res.NumYPixels)Then ErrNoMsgOk(errPointOutOfLimit)
Else
Begin
DWPoint(Q,Data.X2,Data.Y2);
Q.Canvas.DrawX:=Data.X2;
Q.Canvas.DrawY:=Data.Y2;
Q.Modified:=True;
End;
End;
End;
Procedure DWUpDateButton{Var Q:DrawWins};
Var
XB,YB:Byte;
GX1,GY1:Word;
Buffer:Array[0..4095]of Byte;
I,N:Word;
Show:Boolean;
Begin
XB:=$FF;YB:=$FF;
Case(Q.Mode)of
drwGetPixel:Begin
XB:=0;YB:=0;
End;
drwCopy:Begin
XB:=1;YB:=0;
End;
drwTrace:Begin
XB:=2;YB:=0;
End;
drwLine:Begin
XB:=2;YB:=1;
End;
drwText:Begin
XB:=0;YB:=2;
End;
drwBox:Begin
YB:=3;
XB:=Byte(Q.Fill);
End;
drwCadre:Begin
YB:=4;
XB:=Byte(Q.Fill);
End;
drwManyLine:Begin
XB:=1;YB:=2;
End;
drwBrush:Begin
XB:=1;YB:=1;
End;
drwPaint:Begin
XB:=2;YB:=2;
End;
End;
If(XB<>$FF)and(YB<>$FF)Then Begin
GX1:=(Q.ButtonDraw.X shl 3)+XB shl 5;
If HeightChr=16Then GY1:=YB shl 1
Else GY1:=YB shl 2;
GY1:=GetRawY(GY1+Q.ButtonDraw.Y);
N:=GetSizeSmlImg(0,0,31,31);
If N>SizeOf(Buffer)Then N:=SizeOf(Buffer);
Show:=IsShowMouse;
If(Show)Then Begin
__HideMousePtr;
BMLoadAllVert(Q.ButtonDraw,'SYS:MBDRAW.ICN',WEGetRX1(Q.W),WEGetRY1(Q.W),3);
End;
GetSmlImg(GX1,GY1,GX1+31,GY1+31,Buffer);
For I:=0to N-1do Buffer[I]:=Not Buffer[I];
PutSmlImg(GX1,GY1,GX1+31,GY1+31,Buffer);
If(Show)Then Begin
__ShowMousePtr;
WaitMouseBut0;
End;
End;
End;
Procedure RGBColor(Value:Word;Var Context);
Var
Q:DrawEditApp Absolute Context;
ColorRGB:RGB;
Begin
ColorRGB.R:=Q.Canvas.PaletteRGB^[Value].R;
ColorRGB.G:=Q.Canvas.PaletteRGB^[Value].G;
ColorRGB.B:=Q.Canvas.PaletteRGB^[Value].B;
If ChoiceRGBColor(ColorRGB)Then Begin
Q.Canvas.PaletteRGB^[Value].R:=ColorRGB.R;
Q.Canvas.PaletteRGB^[Value].G:=ColorRGB.G;
Q.Canvas.PaletteRGB^[Value].B:=ColorRGB.B;
End;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure DWSetColor Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Portabilit‚: Global
Propri‚taire: DrawWins
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure permet de s‚lectionner une couleur dans la palette de
couleur du dessin.
}
Procedure DWSetColor(Var Q:DrawEditApp);
Procedure HighColor;
Var
ColorRGB:RGB;
Begin
FillClr(ColorRGB,SizeOf(ColorRGB));
Case(Q.Canvas.Res.BitsPerPixel)of
15:Begin
ColorRGB.B:=(Q.Canvas.CurrColor and$1F)shl 3;
ColorRGB.G:=((Q.Canvas.CurrColor shr 5)and$1F)shl 3;
ColorRGB.R:=((Q.Canvas.CurrColor shr 10)and$1F)shl 3;
End;
16,24:Begin
ColorRGB.B:=(Q.Canvas.CurrColor and$3F)shl 2;
ColorRGB.G:=((Q.Canvas.CurrColor shr 6)and$1F)shl 3;
ColorRGB.R:=((Q.Canvas.CurrColor shr 11)and$1F)shl 3;
End;
End;
If ChoiceRGBColor(ColorRGB)Then Begin
Q.Canvas.CurrColor:=RGB2KrX(Q.Canvas.Res.BitsPerPixel,ColorRGB.R,
ColorRGB.G,ColorRGB.B);
End;
End;
Procedure SetPaletteColor;
Var
Data:Record
Color:Byte;
OnMouseButton2:Procedure(Value:Word;Var Context);
Context:Pointer;
Palette:Pointer;
End;
PaletteMono:Array[0..1]of RGB;
Begin
FillClr(Data,SizeOf(Data));
Data.Color:=Q.Canvas.CurrColor;
If Q.Canvas.Struct.BitsPerPixel<4Then Begin
Data.Color:=Data.Color and Pred(1 shl Q.Canvas.Struct.BitsPerPixel);
End;
If(Q.Canvas.PaletteRGB<>NIL)Then Begin
Data.OnMouseButton2:=RGBColor;
Data.Context:=@Q;
Data.Palette:=Q.Canvas.PaletteRGB;
End
Else
Begin
If Q.Canvas.Res.BitsPerPixel=1Then Begin
FillClr(PaletteMono,SizeOf(PaletteMono));
PaletteMono[1].R:=$FF;
PaletteMono[1].G:=$FF;
PaletteMono[1].B:=$FF;
Data.Palette:=@PaletteMono;
End
Else
Data.Palette:=@DefaultRGB;
End;
If ExecuteAppDPU(48-1+Q.Canvas.Struct.BitsPerPixel,Data)Then Begin
Q.Canvas.CurrColor:=Data.Color;
End;
End;
Begin
If Q.Canvas.Res.BitsPerPixel>=15Then Begin
If __GetMouseButton>0Then WaitMouseBut0;
HighColor;
End
Else
If Q.Canvas.Res.BitsPerPixel<=8Then SetPaletteColor;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure DWPutCadre Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Portabilit‚: Local
Propri‚taire: DrawWins
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure affiche la rŠgles et les ic“nes tout autour du dessin
de l'objet ®DrawWins¯.
}
Procedure DWPutCadre(Var Q:DrawEditApp);Near;
Var
J,I,H,YW,GX1,GY1,GX2,KrHigh:Word;
MatrixLeft,MatrixRight:Array[0..3]of Word; { Bordure en 15 et 16 bits de couleurs }
Begin
WESetEndBar(Q.W,CurrKrs.Desktop.DialStatus);
If(IsGrf)Then Begin
BarSpcHorRelief(Q.W.T.X1,Q.W.T.Y2,Q.W.T.X1+15,CurrKrs.Desktop.DialStatus);
BarSpcHorReliefExt(Q.W.T.X1+1,Q.W.T.Y2,Q.W.T.X1+14,CurrKrs.Desktop.DialStatus);
BarSpcHorRelief(Q.W.T.X1+16,Q.W.T.Y2,Q.W.T.X2,CurrKrs.Desktop.DialStatus);
BarSpcHorReliefExt(Q.W.T.X1+17,Q.W.T.Y2,Q.W.T.X2-2,CurrKrs.Desktop.DialStatus);
LuxeBox(Q.W.T.X2-1,Q.W.T.Y2);
End
Else
WESetEndBarTxtX(Q.W,16,'³',CurrKrs.Desktop.DialStatus);
WESetEndBarTxtX(Q.W,18,WordToStr(Q.Canvas.Res.NumXPixels)+
'x'+WordToStr(Q.Canvas.Res.NumYPixels)+'c'+
IntToStr(LongInt(1) shl Long(Q.Canvas.Struct.BitsPerPixel))+':'+
BasicStr(Long(Q.Canvas.Res.BytesPerLine)*
Long(Q.Canvas.Res.NumYPixels))+' octet(s)',
CurrKrs.Desktop.DialStatus);
If(IsGraf)Then Begin
BMLoadAllVert(Q.ButtonDraw,'SYS:MBDRAW.ICN',WEGetRX1(Q.W),WEGetRY1(Q.W),3);
DWUpDateButton(Q);
GY1:=GetRawY(WEGetRY1(Q.W)+BMUseYTexts(Q.ButtonDraw));
GX1:=WEGetRX1(Q.W)shl 3;
GX2:=(WEGetRX1(Q.W)+11)shl 3;
Q.Canvas.MagnifyX:=GX1+8;
Q.Canvas.MagnifyY:=GY1+8;
Q.Canvas.MagnifyLength:=GX2-GX1-16;
If BitsPerPixel>=15Then Begin
For J:=0to 3do Begin
KrHigh:=((3-J)shl 6)+63;
MatrixLeft[J]:=RGB2Color(KrHigh,KrHigh,KrHigh+(J shl 6));
MatrixRight[3-J]:=RGB2Color(0,0,J shl 6);
End;
For J:=GY1 to GetRawY(WEGetRY1(Q.W)+Q.W.MaxY+1)do Begin
ClrLnHorImg(GX1,J,4,BitsPerPixel,MatrixLeft);
PutLnHor(GX1+4,J,GX2+3,9);
ClrLnHorImg(GX2+4,J,4,BitsPerPixel,MatrixRight)
End;
End
Else
For J:=GY1 to GetRawY(WEGetRY1(Q.W)+Q.W.MaxY+1)do Begin
ClrLnHorImg(GX1,J,4,8,MatrixBorderLeft);
PutLnHor(GX1+4,J,GX2+3,9);
ClrLnHorImg(GX2+4,J,4,8,MatrixBorderRight)
End;
For J:=0to 3do Begin
PutLnHor(GX1+J,GY1+J,GX2+7-J,48+(J shl 2));
PutLnHor(GX1+J,GetRawY(WEGetRY1(Q.W)+Q.W.MaxY+1)-1-J,GX2+7-J,252+J)
End;
{ Affiche la rŠgle }
Q.W.CurrColor:=$7F;
Adele.LeftIcon(Q.W.T.X1+12+Byte(Q.W.NotFullScrnX),Q.W.T.Y2-1,CurrKrs.Draw.Window.Icon);
WEBarSpcHor(Q.W,14,wnMax,wnMax-2);
WEBarSpcHorRelief(Q.W,14,wnMax,wnMax-2);
Adele.RightIcon(Q.W.T.X2-3,Q.W.T.Y2-1,CurrKrs.Draw.Window.Icon);
End;
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Fonction DWTitle Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Portabilit‚: Global
Propri‚taire: DrawWins
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette fonction permet de connaŒtre le nom attribu‚ … cette application
pour l'int‚gration au routine de la m‚thode ®H¯.
}
Function DWTitle(Var Q;Max:Byte):String;
Const
Name='Editeur Dessin ';
Begin
DWTitle:=Name+TruncName(DrawEditApp(Q).FileName,Max-Length(Name))
End;