ENH: Add support for HOME and END keys. Also fix Bug #666 - In CCMake when deleting something, it does not stop at the beginning of line

This commit is contained in:
Andy Cedilnik 2004-04-15 16:11:11 -04:00
parent 0986b42761
commit 685be51a0e
1 changed files with 6 additions and 3 deletions

View File

@ -162,18 +162,21 @@ bool cmCursesStringWidget::HandleInput(int& key, cmCursesMainForm* fm,
{
form_driver(form, REQ_CLR_EOL);
}
else if ( key == ctrl('a') )
else if ( key == ctrl('a') || key == KEY_HOME )
{
form_driver(form, REQ_BEG_FIELD);
}
else if ( key == ctrl('e') )
else if ( key == ctrl('e') || key == KEY_END )
{
form_driver(form, REQ_END_FIELD);
}
else if ( key == ctrl('d') || key == 127 ||
key == KEY_BACKSPACE || key == KEY_DC )
{
form_driver(form, REQ_DEL_PREV);
if ( form->curcol > 0 )
{
form_driver(form, REQ_DEL_PREV);
}
}
else
{