blob: 37efc9d0dc51f94e91211e7fa409c24baa07e308 [file] [log] [blame]
/*
* Copyright 2000-2012 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.
*/
package com.intellij.application.options.codeStyle.arrangement.action;
import com.intellij.application.options.codeStyle.arrangement.match.ArrangementMatchingRulesControl;
import com.intellij.openapi.application.ApplicationBundle;
import gnu.trove.TIntArrayList;
import org.jetbrains.annotations.NotNull;
import java.util.List;
/**
* @author Denis Zhdanov
* @since 9/28/12 1:20 PM
*/
public class MoveArrangementMatchingRuleDownAction extends AbstractMoveArrangementRuleAction {
public MoveArrangementMatchingRuleDownAction() {
getTemplatePresentation().setText(ApplicationBundle.message("arrangement.action.rule.move.down.text"));
getTemplatePresentation().setDescription(ApplicationBundle.message("arrangement.action.rule.move.down.description"));
}
@Override
protected void fillMappings(@NotNull ArrangementMatchingRulesControl control, @NotNull List<int[]> mappings) {
TIntArrayList rows = control.getSelectedModelRows();
int bottom = control.getModel().getSize();
for (int i = 0; i < rows.size(); i++) {
int row = rows.get(i);
if (row == bottom - 1) {
mappings.add(new int[] { row, row });
bottom--;
}
else {
mappings.add(new int[]{ row, row + 1 });
}
}
}
}