blob: bf11ceb86752c5d469514e6a91af42ff80fadd34 [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.debugger.settings;
import com.intellij.debugger.DebuggerBundle;
import com.intellij.debugger.DebuggerManagerEx;
import com.intellij.debugger.impl.DebuggerSession;
import com.intellij.openapi.options.BaseConfigurable;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.project.ProjectManager;
import com.intellij.xdebugger.impl.XDebuggerUtilImpl;
import javax.swing.*;
import java.util.Iterator;
/**
* @author Eugene Belyaev
*/
public class ThreadsViewConfigurable extends BaseConfigurable {
private final ThreadsViewSettings mySettings;
private JPanel myPanel;
private JCheckBox myShowGroupsCheckBox;
private JCheckBox myLineNumberCheckBox;
private JCheckBox myClassNameCheckBox;
private JCheckBox mySourceCheckBox;
private JCheckBox myShowSyntheticsCheckBox;
private JCheckBox myShowCurrentThreadChechBox;
private final CompositeDataBinding myDataBinding = new CompositeDataBinding();
public ThreadsViewConfigurable(ThreadsViewSettings settings) {
mySettings = settings;
myDataBinding.addBinding(new ToggleButtonBinding("SHOW_CLASS_NAME", myClassNameCheckBox));
myDataBinding.addBinding(new ToggleButtonBinding("SHOW_LINE_NUMBER", myLineNumberCheckBox));
myDataBinding.addBinding(new ToggleButtonBinding("SHOW_SOURCE_NAME", mySourceCheckBox));
myDataBinding.addBinding(new ToggleButtonBinding("SHOW_THREAD_GROUPS", myShowGroupsCheckBox));
myDataBinding.addBinding(new ToggleButtonBinding("SHOW_SYNTHETIC_FRAMES", myShowSyntheticsCheckBox));
myDataBinding.addBinding(new ToggleButtonBinding("SHOW_CURRENT_THREAD", myShowCurrentThreadChechBox));
}
public String getDisplayName() {
return DebuggerBundle.message("threads.view.configurable.display.name");
}
public JComponent createComponent() {
return myPanel;
}
public void apply() {
myDataBinding.saveData(mySettings);
final Project[] openProjects = ProjectManager.getInstance().getOpenProjects();
for (int i = 0; i < openProjects.length; i++) {
Project project = openProjects[i];
for (Iterator iterator = (DebuggerManagerEx.getInstanceEx(project)).getSessions().iterator(); iterator.hasNext();) {
((DebuggerSession)iterator.next()).refresh(false);
}
XDebuggerUtilImpl.rebuildAllSessionsViews(project);
}
}
public void reset() {
myDataBinding.loadData(mySettings);
}
public boolean isModified() {
return myDataBinding.isModified(mySettings);
}
public String getHelpTopic() {
return "reference.dialogs.customizeThreadView";
}
public void disposeUIResources() {
}
}