mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 19:17:52 +02:00
LCL: Refactored IsEditableTextKey(). Issue #37237, patch from delfion.
git-svn-id: trunk@63423 -
This commit is contained in:
parent
df829af1dd
commit
604efa0b8a
@ -910,11 +910,13 @@ end;
|
||||
|
||||
function IsEditableTextKey(Key: Word): Boolean;
|
||||
begin
|
||||
Result := (((Key >= VK_A) and (Key <= VK_Z)) or
|
||||
((Key >= VK_NUMPAD0) and (Key <= VK_DIVIDE)) or
|
||||
((Key >= VK_0) and (Key <= VK_9)) or
|
||||
((Key >= 186) and (Key <= 192)) or
|
||||
((Key >= 219) and (Key <= 222)));
|
||||
Result := Key in [
|
||||
VK_A..VK_Z,
|
||||
VK_0..VK_9,
|
||||
VK_NUMPAD0..VK_DIVIDE,
|
||||
VK_OEM_1..VK_OEM_3,
|
||||
VK_OEM_4..VK_OEM_7
|
||||
];
|
||||
end;
|
||||
|
||||
function SendApplicationMessage(Msg: Cardinal; WParam: WParam; LParam: LParam
|
||||
|
Loading…
Reference in New Issue
Block a user