lazarus/components/synedit/lazsyneditmousecmdstypes.pp
martin 4075258215 SynEdit: support horizontal mouse wheel
git-svn-id: trunk@60562 -
2019-03-02 19:29:53 +00:00

20 lines
434 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, mbWheelLeft, mbWheelRight);
implementation
end.