- Timestamp:
- Jul 31, 2007 8:18:52 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMLogViewer.ui.h
r3926 r3933 222 222 QKeyEvent *e = static_cast<QKeyEvent*> (aEvent); 223 223 224 /* processing the return keypress for themSearchString225 * widget as thesearch next string action */224 /* handle the Enter keypress for mSearchString 225 * widget as a search next string action */ 226 226 if (aObject == mSearchString && 227 227 (e->state() == 0 || e->state() & Keypad) && … … 231 231 return true; 232 232 } 233 /* processingother search next/previous shortcuts */233 /* handle other search next/previous shortcuts */ 234 234 else if (e->key() == Key_F3) 235 235 { … … 240 240 return true; 241 241 } 242 /* processing ctrl-f key combination as theshortcut to242 /* handle ctrl-f key combination as a shortcut to 243 243 * move to the search field */ 244 244 else if (e->state() == ControlButton && e->key() == Key_F) … … 251 251 } 252 252 } 253 /* processing the alpha-numeric keys as the shortcuts tothe254 * search panel displaying and search activation*/255 else if ( e->state() == 0 &&253 /* handle alpha-numeric keys to implement the 254 * "find as you type" feature */ 255 else if ((e->state() & ~ShiftButton) == 0 && 256 256 e->key() >= Qt::Key_Exclam && 257 257 e->key() <= Qt::Key_AsciiTilde)
Note:
See TracChangeset
for help on using the changeset viewer.