blob: 301e1e94c1ede7886d3483e50bab9a29a1cea3b8 [file] [log] [blame]
/*
* Copyright 2000-2009 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.uiDesigner.actions;
import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.Presentation;
import com.intellij.openapi.util.IconLoader;
import com.intellij.uiDesigner.CaptionSelection;
import com.intellij.uiDesigner.FormEditingUtil;
import com.intellij.uiDesigner.designSurface.GuiEditor;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.Nullable;
import javax.swing.*;
/**
* @author yole
*/
public abstract class RowColumnAction extends AnAction {
private final String myColumnText;
private final Icon myColumnIcon;
private final String myRowText;
private final Icon myRowIcon;
public RowColumnAction(final String columnText, @Nullable final Icon columnIcon,
final String rowText, @Nullable final Icon rowIcon) {
myColumnText = columnText;
myColumnIcon = columnIcon;
myRowText = rowText;
myRowIcon = rowIcon;
}
public void actionPerformed(final AnActionEvent e) {
GuiEditor editor = FormEditingUtil.getEditorFromContext(e.getDataContext());
CaptionSelection selection = CaptionSelection.DATA_KEY.getData(e.getDataContext());
if (editor == null || selection == null || !editor.ensureEditable()) {
return;
}
actionPerformed(selection);
selection.getContainer().revalidate();
editor.refreshAndSave(true);
}
protected abstract void actionPerformed(CaptionSelection selection);
public void update(final AnActionEvent e) {
final Presentation presentation = e.getPresentation();
CaptionSelection selection = CaptionSelection.DATA_KEY.getData(e.getDataContext());
if (selection == null) {
presentation.setEnabled(false);
}
else {
presentation.setEnabled(selection.getContainer() != null && selection.getFocusedIndex() >= 0);
if (!selection.isRow()) {
presentation.setText(myColumnText);
if (myColumnIcon != null) {
presentation.setIcon(myColumnIcon);
}
}
else {
presentation.setText(myRowText);
if (myRowIcon != null) {
presentation.setIcon(myRowIcon);
}
}
}
}
}