LCL: maskedit, jump to dot by pressing the key from Ingo Steiniger (issue #14180)

git-svn-id: trunk@21118 -
This commit is contained in:
vincents 2009-08-06 12:51:40 +00:00
parent f65b51e00b
commit 6f343b79e0

View File

@ -1387,6 +1387,25 @@ begin
Key := 0;
Exit;
end;
// goto a dot
if (Key = VK_OEM_PERIOD) then
begin
FCursorPos := FCursorPos+Pos('.', Copy(Text, (FCursorPos+1), Length(Text)-(FCursorPos+1)));
Key := 0;
SetCursorPos;
Exit;
end;
// goto a comma
if (Key = VK_OEM_COMMA) then
begin
FCursorPos := FCursorPos+Pos(',', Copy(Text, (FCursorPos+1), Length(Text)-(FCursorPos+1)));
SetCursorPos;
Key := 0;
Exit;
end;
end;