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
|
void __fastcall TForm1::Panel1MouseDown(TObject *Sender,
TMouseButton Button, TShiftState Shift, int X, int Y)
{
Mobile->BoundsRect = ((TPanel*)Sender)->BoundsRect;
Mobile->BringToFront();
Mobile->Visible = true;
IsDragging = true;
Start = Point(X,Y); // pour garder l'offet de départ au cas où
Off = Point(X,Y); // l'offset en cours
}
void __fastcall TForm1::Panel1MouseMove(TObject *Sender, TShiftState Shift,
int X, int Y)
{
if(IsDragging)
{
if(DragHorizontal)
{
Mobile->SetBounds(Mobile->Left + X - Off.x,
Mobile->Top,
Mobile->Width,
Mobile->Height);
}
else
{
Mobile->SetBounds(Mobile->Left,
Mobile->Top + Y - Off.y,
Mobile->Width,
Mobile->Height);
}
Off = Point(X,Y);
}
}
void __fastcall TForm1::Panel1MouseUp(TObject *Sender, TMouseButton Button,
TShiftState Shift, int X, int Y)
{
if(IsDragging)
{
IsDragging = false;
Mobile->Visible = false;
// Réflexion à suivre...
//....
//Si l'objet doit se placer bêtement à l'endroit du Mobile
//mais sur le même Parent :
((TPanel*)Sender)->BoundsRect = Mobile->BoundsRect;
}
} |
Partager