/* * Copyright 2000-2015 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.refactoring.typeMigration.ui; import com.intellij.openapi.project.Project; import com.intellij.openapi.ui.DialogWrapper; import com.intellij.refactoring.RefactoringBundle; import com.intellij.ui.ScrollPaneFactory; import com.intellij.util.ui.JBUI; import com.intellij.util.ui.UIUtil; import org.jetbrains.annotations.NonNls; import org.jetbrains.annotations.NotNull; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; /** * created at Sep 12, 2001 * @author Jeka */ public class FailedConversionsDialog extends DialogWrapper { private final String[] myConflictDescriptions; public static final int VIEW_USAGES_EXIT_CODE = NEXT_USER_EXIT_CODE; public FailedConversionsDialog(String[] conflictDescriptions, Project project) { super(project, true); myConflictDescriptions = conflictDescriptions; setTitle(RefactoringBundle.message("usages.detected.title")); setOKButtonText(RefactoringBundle.message("ignore.button")); getOKAction().putValue(Action.MNEMONIC_KEY, new Integer('I')); init(); } @NotNull protected Action[] createActions() { return new Action[]{getOKAction(), new ViewUsagesAction(), new CancelAction()}; } protected JComponent createCenterPanel() { JPanel panel = new JPanel(new BorderLayout()); final JEditorPane messagePane = new JEditorPane(UIUtil.HTML_MIME, ""); messagePane.setEditable(false); JScrollPane scrollPane = ScrollPaneFactory.createScrollPane(messagePane); scrollPane.setPreferredSize(JBUI.size(500, 400)); panel.add(new JLabel(RefactoringBundle.message("the.following.problems.were.found")), BorderLayout.NORTH); panel.add(scrollPane, BorderLayout.CENTER); @NonNls StringBuilder buf = new StringBuilder(); for (String description : myConflictDescriptions) { buf.append(description); buf.append("<br><br>"); } messagePane.setText(buf.toString()); return panel; } protected String getDimensionServiceKey() { return "#com.intellij.refactoring.typeMigration.ui.FailedConversionsDialog"; } private class CancelAction extends AbstractAction { public CancelAction() { super(RefactoringBundle.message("cancel.button")); } public void actionPerformed(ActionEvent e) { doCancelAction(); } } private class ViewUsagesAction extends AbstractAction { public ViewUsagesAction() { super(RefactoringBundle.message("view.usages")); putValue(Action.MNEMONIC_KEY, new Integer('V')); putValue(DialogWrapper.DEFAULT_ACTION, Boolean.TRUE); } public void actionPerformed(ActionEvent e) { close(VIEW_USAGES_EXIT_CODE); } } }