We have an application (a C++ .exe and a .net CF application) that run's on Motorola MC70s.
The device is restricted using Motorola Appcenter to only allow access to our software and the calendar to allow the user to change the date/time.
The client has requested that we implement screen locking/unlocking functionality triggered by a key press combination.
I'm actually a bit stumped about how to approach this.
I was thinking of perhaps having a background process capturing every keypress, checking if both required keys are down at the same time and if so "lock" the device, not accepting any input until the same key combination is pressed again. This will require capturing every keypress and if not the locking combination then ignoring it so whatever application is expecting the keypress receives it.
What are the implications I should be aware of taking this approach and are there any better approaches to achieve this funcationality?