Searched refs:KeyMove (Results 1 – 1 of 1) sorted by relevance
410 void KeyMove( int dx, int dy );669 void ColorFieldControl::KeyMove( int dx, int dy ) in KeyMove() function in cui::ColorFieldControl701 case KEY_DOWN: KeyMove( 0, bCtrl ? 5 : 1 ); return; in KeyInput()702 case KEY_UP: KeyMove( 0, bCtrl ? -5 : -1 ); return; in KeyInput()703 case KEY_LEFT: KeyMove( bCtrl ? -5 : -1, 0 ); return; in KeyInput()704 case KEY_RIGHT: KeyMove( bCtrl ? 5 : 1, 0 ); return; in KeyInput()814 void KeyMove( int dy );978 void ColorSliderControl::KeyMove( int dy ) in KeyMove() function in cui::ColorSliderControl992 case KEY_DOWN: KeyMove( rKEvt.GetKeyCode().IsMod1() ? 5 : 1 ); return; in KeyInput()993 case KEY_UP: KeyMove( rKEvt.GetKeyCode().IsMod1() ? -5 : -1 ); return; in KeyInput()
Completed in 20 milliseconds