procedure TForm1.FormMouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Integer);
var
a,b,c,d,e,f:integer;
begin
{when the mouse move with the Left mouse button pressed this draws
a line which follows the mouse
it also mirrors the line in all 4 quadrants
draws as position (x,y) (a,b) (c,d) and (e,f)}
with canvas do
begin
MoveTo(X,Y);
if (shift=[ssLeft] ) then
begin
LineTo(x+1,y+1); //original line
{mirror in y-axis }
c:=x;
d:=Y+2*((clientheight div 2) - Y);
moveto(c,d);
lineto(c-1,d-1);
{mirror in x-axis}
b:=y;
a:=x+2*(clientwidth div 2 - x);
moveto(a,b);
lineto(a-1,b+1);
{mirrors (a,b) in y-axis}
e:=a;f:=d;
moveto(e,f);
lineto(e+1,f-1);
end;
end;
end;
procedure TForm1.ScrollBar1Change(Sender: TObject);
begin
{the scrollbar controls the penwidth}
canvas.Pen.Width:=scrollbar1.Position;
Edit1.Text:=inttostr(scrollbar1.position); //display width on form
end;
procedure TForm1.Shape2MouseUp(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
begin
{uses color dialog to select new background color and
clears the screen to the new colour}
if cd1.Execute then
begin
canvas.brush.Color:= cd1.color;
canvas.FillRect(rect(0,0,clientwidth,clientheight));
Shape2.Brush.Color:=cd1.color; //display color in rectangle
end;
end;
procedure TForm1.Shape1MouseUp(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
begin
{uses color dialog to change the pen color for drawing}
if cd1.Execute then
begin
canvas.pen.Color:= cd1.color;
Shape1.Brush.Color:=cd1.Color;
end;
end;
Draw Mirror Effect on PaintBox
Abonnieren
Posts (Atom)
Beliebte Posts
-
Network Source Code Update Source Code Network Update : https://asciigen.blogspot.com/p/network.html Send Message 1.0 Source Server Client ...
-
Windows Key Sniffer 0.82 - Update 08/2024 Der Windows Key Sniffer hat mir im Laufe der Zeit viel Arbeit erspart und unterstützt, viele Wi...
-
Windows Defender Bypass Version 0.75 - Update 11/2024 Den Windows 10-eigenen Virenschutz Defender kann man auf mehreren Wegen abschalten,...
-
ASCii GIF Animator Update Version 0.68 (32 bit) - 11/2024 Bei dieser überarbeiteten Version ist die Kompatibilität zu den verschiedenen GIF...
-
MD5 Hacker v.0.26 - Update 08.2024 MD5 Hashs sollten eigentlich nicht entschlüsselt werden können. Jedoch gibt es Tools, mit welchen auch ...
-
Host Editor Version 0.64 - Update 11/2024 Hosts File Editor allows for the easy editing of host files and backup creation. Create your own h...
-
Dir Sniffer Version 0.08 - Update 08/2024 Dir Sniffer ist ein kleines aber nützliches Tool um herauszufinden, was ihr Programm auf ihrem...
-
Oldskool Font Generator v.0.29 - Update 11/2023 Das Tool stell 508 Bitmap Fonts zu Verfügung. Eigene Fonts können integriert werden, sie...
-
ASCii Text Creator v.0.24 - Update 11.2023 * Add BugFix Gui Move Message Send * Add 447 Figlet Font Pack * Fixed Invert Unicode Function * ...
Keine Kommentare:
Kommentar veröffentlichen