blob: ef346aa730770bb2e50b798dd91f37a0472bd3cf [file] [log] [blame]
/*
* Copyright 2002-2005 Sascha Weinreuter
*
* 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 org.intellij.plugins.xpathView.eval;
import org.intellij.plugins.xpathView.Config;
import org.intellij.plugins.xpathView.HistoryElement;
import org.intellij.plugins.xpathView.ui.InputExpressionDialog;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.wm.ToolWindowManager;
import com.intellij.openapi.wm.ToolWindow;
import com.intellij.openapi.wm.ToolWindowId;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
public class EvalExpressionDialog extends InputExpressionDialog<EvalFormPanel> {
public EvalExpressionDialog(Project project, Config settings, HistoryElement[] history) {
super(project, settings, history, new EvalFormPanel());
setTitle("Evaluate XPath Expression");
}
protected void init() {
final ToolWindow findWindow = ToolWindowManager.getInstance(myProject).getToolWindow(ToolWindowId.FIND);
final boolean available = findWindow != null && findWindow.isAvailable();
final boolean enabled = mySettings.OPEN_NEW_TAB && available;
myForm.getNewTabCheckbox().setEnabled(available);
myForm.getNewTabCheckbox().setSelected(enabled);
myForm.getHighlightCheckbox().setSelected(mySettings.HIGHLIGHT_RESULTS);
myForm.getHighlightCheckbox().addItemListener(new ItemListener() {
public void itemStateChanged(ItemEvent e) {
updateOkAction();
}
});
myForm.getUsageViewCheckbox().setSelected(mySettings.SHOW_USAGE_VIEW);
myForm.getUsageViewCheckbox().addItemListener(new ItemListener() {
public void itemStateChanged(ItemEvent e) {
myForm.getNewTabCheckbox().setEnabled(available && myForm.getUsageViewCheckbox().isSelected());
updateOkAction();
}
});
super.init();
}
protected boolean isOkEnabled() {
final EvalFormPanel form = getForm();
final boolean b = form.getHighlightCheckbox().isSelected() || form.getUsageViewCheckbox().isSelected();
return b & super.isOkEnabled();
}
protected void doOKAction() {
final EvalFormPanel form = getForm();
if (form.getNewTabCheckbox().isEnabled()) {
mySettings.OPEN_NEW_TAB = form.getNewTabCheckbox().isSelected();
}
mySettings.HIGHLIGHT_RESULTS = form.getHighlightCheckbox().isSelected();
mySettings.SHOW_USAGE_VIEW = form.getUsageViewCheckbox().isSelected();
super.doOKAction();
}
protected String getPrivateDimensionServiceKey() {
return "XPathView.InputDialog.DIMENSION_SERVICE_KEY";
}
}