mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-15 18:19:07 +02:00
MG: fixes for fpc1.1
git-svn-id: trunk@2449 -
This commit is contained in:
parent
1737ab40fa
commit
fcbeaadf01
@ -38,6 +38,7 @@ var
|
|||||||
//Dragging : Boolean;
|
//Dragging : Boolean;
|
||||||
|
|
||||||
MouseCaptureWidget: PGtkWidget;
|
MouseCaptureWidget: PGtkWidget;
|
||||||
|
MouseCapureByLCL: boolean;
|
||||||
|
|
||||||
const
|
const
|
||||||
DblClickTime = 250;// 250 miliseconds or less between clicks is a double click
|
DblClickTime = 250;// 250 miliseconds or less between clicks is a double click
|
||||||
@ -272,6 +273,16 @@ const
|
|||||||
OldCheckMenuItemToggleSize: integer = 0;
|
OldCheckMenuItemToggleSize: integer = 0;
|
||||||
|
|
||||||
|
|
||||||
|
{ Accelerators }
|
||||||
|
type
|
||||||
|
PAcceleratorKey = ^TAcceleratorKey;
|
||||||
|
TAcceleratorKey = record
|
||||||
|
Key: guint;
|
||||||
|
Mods: TGdkModifierType;
|
||||||
|
Signal: string;
|
||||||
|
Realized: boolean;
|
||||||
|
end;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user