blob: be2628f6741c5166f80e85dce665af2d5259a9fe [file] [log] [blame]
/*
* Copyright 2000-2014 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* @author max
*/
package com.intellij.openapi.editor.actions;
import com.intellij.openapi.actionSystem.DataContext;
import com.intellij.openapi.editor.*;
import com.intellij.openapi.editor.actionSystem.EditorActionHandler;
import com.intellij.openapi.editor.ex.EditorEx;
import com.intellij.openapi.editor.impl.EditorImpl;
class MoveCaretLeftOrRightHandler extends EditorActionHandler {
enum Direction {LEFT, RIGHT}
private final Direction myDirection;
MoveCaretLeftOrRightHandler(Direction direction) {
super(true);
myDirection = direction;
}
@Override
public void doExecute(Editor editor, Caret caret, DataContext dataContext) {
final SelectionModel selectionModel = editor.getSelectionModel();
final CaretModel caretModel = editor.getCaretModel();
ScrollingModel scrollingModel = editor.getScrollingModel();
if (selectionModel.hasSelection() && (!(editor instanceof EditorEx) || !((EditorEx)editor).isStickySelection())) {
if (editor.getIndentsModel().getCaretIndentGuide() != null) {
selectionModel.removeSelection();
}
else {
int start = selectionModel.getSelectionStart();
int end = selectionModel.getSelectionEnd();
int caretOffset = caretModel.getOffset();
VisualPosition targetPosition = myDirection == Direction.RIGHT ? selectionModel.getSelectionEndPosition() : selectionModel.getSelectionStartPosition();
//int leftGuard = start + (myDirection == Direction.LEFT ? 1 : 0);
//int rightGuard = end - (myDirection == Direction.RIGHT ? 1 : 0);
//if (TextRange.from(leftGuard, rightGuard - leftGuard + 1).contains(caretModel.getOffset())) { // See IDEADEV-36957
if (start <= caretOffset && end >= caretOffset) { // See IDEADEV-36957
selectionModel.removeSelection();
if (caretModel.supportsMultipleCarets() && editor.isColumnMode() && targetPosition != null) {
caretModel.moveToVisualPosition(targetPosition);
}
else {
caretModel.moveToOffset(myDirection == Direction.RIGHT ? end : start);
}
if (caret == editor.getCaretModel().getPrimaryCaret()) {
scrollingModel.scrollToCaret(ScrollType.RELATIVE);
}
return;
}
}
}
final boolean scrollToCaret = (!(editor instanceof EditorImpl) || ((EditorImpl)editor).isScrollToCaret())
&& caret == editor.getCaretModel().getPrimaryCaret();
caretModel.moveCaretRelatively(myDirection == Direction.RIGHT ? 1 : -1, 0, false, false, scrollToCaret);
}
}