Lines Matching refs:nAction

244 	sal_uInt16 nAction = getKeyboardAction( rKEvt, pWindow );  in onKeyInput()  local
246 return executeAction( nAction, ( rKEvt.GetKeyCode().IsShift() ) ? sal_True : sal_False, pWindow ); in onKeyInput()
1232 sal_uInt16 nAction = ACTION_HANDLED_BY_VIEW; in getKeyboardAction() local
1236 return nAction; in getKeyboardAction()
1247 nAction = ACTION_STOP_TEXT_EDIT; in getKeyboardAction()
1252 nAction = ACTION_REMOVE_SELECTION; in getKeyboardAction()
1262 nAction = ACTION_EDIT_CELL; in getKeyboardAction()
1274 nAction = ACTION_STOP_TEXT_EDIT; in getKeyboardAction()
1279 nAction = ACTION_REMOVE_SELECTION; in getKeyboardAction()
1285 nAction = ACTION_EDIT_CELL; in getKeyboardAction()
1297 nAction = ACTION_GOTO_FIRST_CELL; in getKeyboardAction()
1302 nAction = ACTION_GOTO_FIRST_COLUMN; in getKeyboardAction()
1315 nAction = ACTION_GOTO_LAST_CELL; in getKeyboardAction()
1320 nAction = ACTION_GOTO_LAST_COLUMN; in getKeyboardAction()
1329 nAction = ACTION_TAB; in getKeyboardAction()
1348 nAction = ACTION_GOTO_LEFT_CELL; in getKeyboardAction()
1352 nAction = ACTION_GOTO_RIGHT_CELL; in getKeyboardAction()
1369 nAction = ACTION_NONE; in getKeyboardAction()
1381 nAction = ACTION_GOTO_LEFT_CELL; in getKeyboardAction()
1385 nAction = ACTION_GOTO_RIGHT_CELL; in getKeyboardAction()
1389 nAction = ACTION_GOTO_DOWN_CELL; in getKeyboardAction()
1393 nAction = ACTION_GOTO_UP_CELL; in getKeyboardAction()
1401 nAction = ACTION_GOTO_FIRST_ROW; in getKeyboardAction()
1406 nAction = ACTION_GOTO_LAST_ROW; in getKeyboardAction()
1409 return nAction; in getKeyboardAction()
1412 bool SvxTableController::executeAction( sal_uInt16 nAction, bool bSelect, Window* pWindow ) in executeAction() argument
1418 switch( nAction ) in executeAction()
1422 gotoCell( pTableObj->getFirstCell(), bSelect, pWindow, nAction ); in executeAction()
1428 gotoCell( pTableObj->getLeftCell( getSelectionEnd(), !bSelect ), bSelect, pWindow, nAction ); in executeAction()
1434 gotoCell( pTableObj->getRightCell( getSelectionEnd(), !bSelect ), bSelect, pWindow, nAction); in executeAction()
1440 gotoCell( pTableObj->getLastCell(), bSelect, pWindow, nAction ); in executeAction()
1447 gotoCell( aPos, bSelect, pWindow, nAction ); in executeAction()
1454 gotoCell( aPos, bSelect, pWindow, nAction ); in executeAction()
1461 gotoCell( aPos, bSelect, pWindow, nAction ); in executeAction()
1467 gotoCell( pTableObj->getUpCell(getSelectionEnd(), !bSelect), bSelect, pWindow, nAction ); in executeAction()
1473 gotoCell( pTableObj->getDownCell(getSelectionEnd(), !bSelect), bSelect, pWindow, nAction ); in executeAction()
1480 gotoCell( aPos, bSelect, pWindow, nAction ); in executeAction()
1485 EditCell( getSelectionStart(), pWindow, 0, nAction ); in executeAction()
1503 gotoCell( pTableObj->getPreviousCell( getSelectionEnd(), true ), false, pWindow, nAction ); in executeAction()
1513 gotoCell( aNextCell, false, pWindow, nAction ); in executeAction()
1519 return nAction != ACTION_HANDLED_BY_VIEW; in executeAction()
1524 …TableController::gotoCell( const CellPos& rPos, bool bSelect, Window* pWindow, sal_uInt16 nAction ) in gotoCell() argument
1547 EditCell( rPos, pWindow, 0, nAction ); in gotoCell()
1665 …:Window* pWindow, const awt::MouseEvent* pMouseEvent /*= 0*/, sal_uInt16 nAction /*= ACTION_NONE *… in EditCell() argument
1731 nAction = ACTION_GOTO_LEFT_CELL; in EditCell()
1741 …if( ((nAction == ACTION_GOTO_LEFT_CELL) || (nAction == ACTION_GOTO_RIGHT_CELL)) && (eMode != Writi… in EditCell()
1743 const bool bLast = ((nAction == ACTION_GOTO_LEFT_CELL) && (eMode == WritingMode_LR_TB)) || in EditCell()
1744 ((nAction == ACTION_GOTO_RIGHT_CELL) && (eMode == WritingMode_RL_TB)); in EditCell()