Lines Matching refs:MoveSelection
302 MoveSelection( nSelectIndex ); in GrabFocusAndSelect()
307 MoveSelection( NEXT_FIELD ); in SelectNextField()
328 MoveSelection( nInsertIndex ); in InsertField()
343 … MoveSelection( (mnSelectIndex < maFields.size()) ? mnSelectIndex : (maFields.size() - 1) ); in RemoveField()
367 MoveSelection( nInsertIndex ); in MoveField()
566 … case KEY_UP: MoveSelection( mbVertical ? PREV_FIELD : PREV_LINE ); break; in KeyInput()
567 … case KEY_DOWN: MoveSelection( mbVertical ? NEXT_FIELD : NEXT_LINE ); break; in KeyInput()
568 … case KEY_LEFT: MoveSelection( mbVertical ? PREV_LINE : PREV_FIELD ); break; in KeyInput()
569 … case KEY_RIGHT: MoveSelection( mbVertical ? NEXT_LINE : NEXT_FIELD ); break; in KeyInput()
570 … case KEY_PAGEUP: MoveSelection( PREV_PAGE ); break; in KeyInput()
571 … case KEY_PAGEDOWN: MoveSelection( NEXT_PAGE ); break; in KeyInput()
572 … case KEY_HOME: MoveSelection( FIRST_FIELD ); break; in KeyInput()
573 … case KEY_END: MoveSelection( LAST_FIELD ); break; in KeyInput()
694 void ScPivotFieldWindow::MoveSelection( size_t nSelectIndex ) in MoveSelection() function in ScPivotFieldWindow
700 void ScPivotFieldWindow::MoveSelection( MoveType eMoveType ) in MoveSelection() function in ScPivotFieldWindow
745 MoveSelection( eMoveType ); in MoveSelectedField()