mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-30 00:11:51 +02:00
MG: broke actnlist <-> forms circle
git-svn-id: trunk@1244 -
This commit is contained in:
parent
bdb0ba6f53
commit
7b77ff94b0
@ -39,8 +39,8 @@ interface
|
||||
{$ENDIF}
|
||||
|
||||
uses
|
||||
Classes, SysUtils, vclglobals, GraphType, Graphics, LMessages, LCLLinux,
|
||||
ImgList, UTrace, Menus, LCLType;
|
||||
Classes, SysUtils, vclglobals, LCLType, LCLProc, GraphType, Graphics,
|
||||
LMessages, LCLLinux, ImgList, UTrace, Menus;
|
||||
|
||||
|
||||
const
|
||||
@ -955,6 +955,8 @@ function CNSendMessage(LM_Message : integer; Sender : TObject; data : pointer) :
|
||||
Function FindDragTarget(const Pos : TPoint; AllowDisabled: Boolean): TControl;
|
||||
Function FindLCLWindow(const Pos : TPoint) : TWinControl;
|
||||
Function FindControl(Handle : hwnd) : TWinControl;
|
||||
|
||||
function SendAppMessage(Msg: Cardinal; WParam, LParam: Longint): Longint;
|
||||
Procedure MoveWindowOrg(dc : hdc; X,Y : Integer);
|
||||
|
||||
procedure SetCaptureControl(Control : TControl);
|
||||
@ -1027,6 +1029,11 @@ begin
|
||||
else Result := nil;
|
||||
end;
|
||||
|
||||
function SendAppMessage(Msg: Cardinal; WParam, LParam: Longint): Longint;
|
||||
begin
|
||||
Result:=LCLProc.SendApplicationMessage(Msg,WParam,LParam);
|
||||
end;
|
||||
|
||||
Procedure MoveWindowOrg(dc : hdc; X,Y : Integer);
|
||||
begin
|
||||
MoveWindowOrgEx(dc,X,Y);
|
||||
@ -1373,6 +1380,9 @@ end.
|
||||
{ =============================================================================
|
||||
|
||||
$Log$
|
||||
Revision 1.80 2002/10/26 11:05:59 lazarus
|
||||
MG: broke actnlist <-> forms circle
|
||||
|
||||
Revision 1.79 2002/10/24 10:05:50 lazarus
|
||||
MG: broke graphics.pp <-> clipbrd.pp circle
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user