I came up with an exercise that would allow me to better understand Delphi. It contains all the things I necessarily want to know. I'm using Graphics32 component (TRect, TPaintBox32, etc.) and Borland Delphi 7.
Exercise. Write a class Square (preferably in a different .pas file than the main form of program) which allow to draw squares (with parameters like: color, size, location on screen previously set in constructor) on the main form of program. Double click on some square should change its color for random color. When we click and hold on some square we should be able to move this square with a mouse until we release click.
The way I see it: in the main form of program I will create array of Square and then the rest will be done by methods of Square class. But I don't know if this is even possible? Drawing squares, handling clicks seem to me to be very problematic. Does the Square class need separate form (.dfm file)?
I would be very very grateful for help.
EDIT: Center of the square and its border should be in different colors. Also it would be nice to add a horizontal line in the middle of the square in a border color.
EDIT2: I don't know how to apply your hints to my program. Maybe on some code will be easier to help me.
Here I've got class Box which represents square that should be able to symulate Brown motion:
unit Unit2;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, GR32, GR32_Image, ExtCtrls, StdCtrls;
type
Box = class
private
speed:TTimer;
liveTime:TTimer;
isAlive:boolean;
rect:TRect;
live:integer;
public
//procedure PaintBox321PaintBuffer(Sender: TObject);
procedure liveTimeTimer(Sender: TObject);
procedure speedTimer(Sender: TObject);
function color():TColor32;
constructor Create();
end;
implementation
constructor Box.Create();
var x,y:integer;
begin
x:=random(900); y:=random(420);
rect:=MakeRect(x,y,x+30,y+30);
isAlive:=true; live:=random(26)+5;
liveTime := TTimer.Create(nil);
speed := TTimer.Create(nil);
liveTime.interval:=1000;
speed.interval:=live*100;
liveTime.OnTimer := liveTimeTimer;
speed.OnTimer := speedTimer;
end;
{
procedure Box.PaintBox321PaintBuffer(Sender: TObject);
begin
if isAlive then begin
PaintBox321.Buffer.Clear(Color32(255,255,255,125));
PaintBox321.Buffer.FillRectS(rect, color());
end;
end;
}
procedure Box.liveTimeTimer(Sender: TObject);
begin
if isAlive then begin
live:=live-1;
if live=0 then isAlive:=false;
end;
end;
procedure Box.speedTimer(Sender: TObject);
begin
if isAlive then begin
OffsetRect(rect, 3*(random(3)-1), 3*(random(3)-1));
speed.interval:=live*100;
//PaintBox321.Repaint;
end;
end;
function Box.color():TColor32;
begin
color:=Color32(255-live*5,255-live*5,255-live*5,125);
end;
end.
And the main form code: unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, GR32, GR32_Image, ExtCtrls, StdCtrls, Unit2;
type
TForm1 = class(TForm)
PaintBox321: TPaintBox32;
Button1: TButton;
procedure FormCreate(Sender: TObject);
procedure PaintBox321PaintBuffer(Sender: TObject);
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1:TForm1;
Boxes:array of Box;
BoxesNumber:integer;
implementation
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
randomize;
BoxesNumber:=-1;
end;
procedure TForm1.PaintBox321PaintBuffer(Sender: TObject);
begin
PaintBox321.Buffer.Clear(Color32(255,255,255,125));
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
BoxesNumber:=BoxesNumber+1;
SetLength(Boxes, BoxesNumber+1);
Boxes[BoxesNumber]:=Box.Create();
end;
end.
Please, read it, it's very simple. I commented fragments responsible for drawing, which I don't know how to code. I really want to know how apply here handling clicks and drawing boxes.
