blob: 73680f50f495ef5c29239c0297a0736522447cd4 [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.
*/
/*
* Class ExceptionBreakpointPropertiesPanel
* @author Jeka
*/
package com.intellij.debugger.ui.breakpoints;
import com.intellij.debugger.DebuggerBundle;
import com.intellij.ide.util.ClassFilter;
import com.intellij.openapi.project.Project;
import com.intellij.ui.IdeBorderFactory;
import com.intellij.util.ui.DialogUtil;
import org.jetbrains.annotations.NotNull;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class ExceptionBreakpointPropertiesPanel extends BreakpointPropertiesPanel {
private JCheckBox myNotifyCaughtCheckBox;
private JCheckBox myNotifyUncaughtCheckBox;
private ExceptionBreakpoint myExceptionBreakpoint;
public ExceptionBreakpointPropertiesPanel(Project project, boolean compact) {
super(project, ExceptionBreakpoint.CATEGORY, compact);
}
protected ClassFilter createClassConditionFilter() {
return null;
}
protected JComponent createSpecialBox() {
myNotifyCaughtCheckBox = new JCheckBox(DebuggerBundle.message("label.exception.breakpoint.properties.panel.caught.exception"));
myNotifyUncaughtCheckBox = new JCheckBox(DebuggerBundle.message("label.exception.breakpoint.properties.panel.uncaught.exception"));
DialogUtil.registerMnemonic(myNotifyCaughtCheckBox);
DialogUtil.registerMnemonic(myNotifyUncaughtCheckBox);
Box notificationsBox = Box.createVerticalBox();
JPanel _panel = new JPanel(new BorderLayout());
_panel.add(myNotifyCaughtCheckBox, BorderLayout.NORTH);
notificationsBox.add(_panel);
_panel = new JPanel(new BorderLayout());
_panel.add(myNotifyUncaughtCheckBox, BorderLayout.NORTH);
notificationsBox.add(_panel);
_panel = new JPanel(new BorderLayout());
JPanel _panel0 = new JPanel(new BorderLayout());
_panel0.add(notificationsBox, BorderLayout.CENTER);
_panel0.add(Box.createHorizontalStrut(3), BorderLayout.WEST);
_panel0.add(Box.createHorizontalStrut(3), BorderLayout.EAST);
_panel.add(_panel0, BorderLayout.NORTH);
_panel.setBorder(IdeBorderFactory.createTitledBorder(
DebuggerBundle.message("label.exception.breakpoint.properties.panel.group.notifications"), true));
ActionListener listener = new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (!myNotifyCaughtCheckBox.isSelected() && !myNotifyUncaughtCheckBox.isSelected()) {
Object source = e.getSource();
JCheckBox toCheck = null;
if (myNotifyCaughtCheckBox.equals(source)) {
toCheck = myNotifyUncaughtCheckBox;
}
else if (myNotifyUncaughtCheckBox.equals(source)) {
toCheck = myNotifyCaughtCheckBox;
}
if (toCheck != null) {
toCheck.setSelected(true);
}
}
}
};
myNotifyCaughtCheckBox.addActionListener(listener);
myNotifyUncaughtCheckBox.addActionListener(listener);
return _panel;
}
protected void updateCheckboxes() {
super.updateCheckboxes();
myPassCountCheckbox.setEnabled(!(myExceptionBreakpoint instanceof AnyExceptionBreakpoint));
}
public void initFrom(Breakpoint breakpoint, boolean moreOptionsVisible) {
ExceptionBreakpoint exceptionBreakpoint = (ExceptionBreakpoint)breakpoint;
myExceptionBreakpoint = exceptionBreakpoint;
super.initFrom(breakpoint, moreOptionsVisible);
myNotifyCaughtCheckBox.setSelected(exceptionBreakpoint.NOTIFY_CAUGHT);
myNotifyUncaughtCheckBox.setSelected(exceptionBreakpoint.NOTIFY_UNCAUGHT);
}
public void saveTo(Breakpoint breakpoint, @NotNull Runnable afterUpdate) {
ExceptionBreakpoint exceptionBreakpoint = (ExceptionBreakpoint)breakpoint;
exceptionBreakpoint.NOTIFY_CAUGHT = myNotifyCaughtCheckBox.isSelected();
exceptionBreakpoint.NOTIFY_UNCAUGHT = myNotifyUncaughtCheckBox.isSelected();
super.saveTo(breakpoint, afterUpdate);
}
}