lazarus/components/synedit/lazsyneditmousecmdstypes.pp
martin 1b32e584ad SynEdit: hide conflicting button names
git-svn-id: trunk@34278 -
2011-12-19 13:11:02 +00:00

20 lines
407 B
ObjectPascal

unit LazSynEditMouseCmdsTypes;
{$mode objfpc}{$H+}
interface
(* For streaming compatibility the enum members of TSynMouseButton must have the
same names as Controls.TMouseButton
To avoid conflicts the definiton will be hidden here and aliases be defind for
common usage
*)
type
TSynMouseButton = (mbLeft, mbRight, mbMiddle, mbExtra1, mbExtra2, mbWheelUp, mbWheelDown);
implementation
end.