------------------------------------------------------------------------------
| 500 | |
| 501 | //------------------------------------------------------------------------------ |
| 502 | bool activateKeyboard() |
| 503 | { |
| 504 | if ( !gInputEnabled || !Input::isActive() || !gKBEnabled ) |
| 505 | return( false ); |
| 506 | |
| 507 | gKBActive = true; |
| 508 | |
| 509 | return( gKBActive ); |
| 510 | } |
| 511 | |
| 512 | //------------------------------------------------------------------------------ |
| 513 | void deactivateKeyboard() |
no test coverage detected