Hi all
How can a Editbox can catch ctrl+c Key input
I use the answer in NetWork:
KeyEventArgs *kEvent = (KeyEventArgs*)(&args);
switch (kEvent->codepoint)
{
case 3:
......;
}
but when I try that, the codepoint aslo = -858993460 so it's the wrong answer
I want to ask how to catch ctrl+c Key input
Thank you!
Editbox catch ctrl+c Key input
Moderators: CEGUI MVP, CEGUI Team
- CrazyEddie
- CEGUI Project Lead
- Posts: 6760
- Joined: Wed Jan 12, 2005 12:06
- Location: England
- Contact:
Re: Editbox catch ctrl+c Key input
Hi,
the codepoint field is only valid for character input (and not, for example, key up / key down events).
HTH
CE.
the codepoint field is only valid for character input (and not, for example, key up / key down events).
HTH
CE.
Useful Links: Forum Guidelines | Documentation | Tutorials | HOWTO | Videos | Donate to CEGUI | CEGUI Twitter
Re: Editbox catch ctrl+c Key input
Thank you CE
Who is online
Users browsing this forum: Baidu [Spider] and 1 guest
