14.08.2018 10:58, AlexeyT via Lazarus пишет:
> function KeyAndShiftStateToKeyString(Key: word; ShiftState:
> TShiftState): String;
>
> Maxim, can you add here param Localized too? it can be 3rd param with
> default "true".
AFAIR this function is exposed in LCLProc interface. As it seems to be
loc
function KeyAndShiftStateToKeyString(Key: word; ShiftState:
TShiftState): String;
Maxim, can you add here param Localized too? it can be 3rd param with
default "true".
--
Regards,
Alexey
--
___
Lazarus mailing list
Lazarus@lists.lazarus-ide.org
htt
function KeyAndShiftStateToKeyString(Key: word; ShiftState:
TShiftState): String;
if ssCtrl in ShiftState then AddPart(ifsCtrl);
if ssAlt in ShiftState then AddPart(ifsAlt);
if ssShift in ShiftState then AddPart(ifsVK_SHIFT);
if ssMeta in ShiftState then
{$IFDEF LCLcarbon}