summaryrefslogtreecommitdiff
path: root/plugins/groovy/src/org/jetbrains/plugins/groovy/debugger/GroovyDebuggerSettingsConfigurable.java
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/groovy/src/org/jetbrains/plugins/groovy/debugger/GroovyDebuggerSettingsConfigurable.java')
-rw-r--r--plugins/groovy/src/org/jetbrains/plugins/groovy/debugger/GroovyDebuggerSettingsConfigurable.java97
1 files changed, 97 insertions, 0 deletions
diff --git a/plugins/groovy/src/org/jetbrains/plugins/groovy/debugger/GroovyDebuggerSettingsConfigurable.java b/plugins/groovy/src/org/jetbrains/plugins/groovy/debugger/GroovyDebuggerSettingsConfigurable.java
new file mode 100644
index 000000000000..8f143d9a5fd1
--- /dev/null
+++ b/plugins/groovy/src/org/jetbrains/plugins/groovy/debugger/GroovyDebuggerSettingsConfigurable.java
@@ -0,0 +1,97 @@
+/*
+ * Copyright 2000-2014 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 org.jetbrains.plugins.groovy.debugger;
+
+import com.intellij.openapi.options.ConfigurationException;
+import com.intellij.openapi.options.SearchableConfigurable;
+import org.jetbrains.annotations.Nls;
+import org.jetbrains.annotations.NotNull;
+import org.jetbrains.plugins.groovy.GroovyBundle;
+
+import javax.swing.*;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+
+/**
+ * @author ilyas
+ */
+public class GroovyDebuggerSettingsConfigurable implements SearchableConfigurable {
+ private JPanel myPanel;
+ private JCheckBox myEnableHotSwap;
+ private boolean isModified = false;
+ private final GroovyDebuggerSettings mySettings;
+
+ public GroovyDebuggerSettingsConfigurable(final GroovyDebuggerSettings settings) {
+ mySettings = settings;
+
+ myEnableHotSwap.addActionListener(new ActionListener() {
+ @Override
+ public void actionPerformed(final ActionEvent e) {
+ isModified = mySettings.ENABLE_GROOVY_HOTSWAP != myEnableHotSwap.isSelected();
+ }
+ });
+ }
+
+ @Override
+ @Nls
+ public String getDisplayName() {
+ return GroovyBundle.message("groovy.debug.caption");
+ }
+
+ @Override
+ @NotNull
+ public String getHelpTopic() {
+ return "reference.idesettings.debugger.groovy";
+ }
+
+ @Override
+ @NotNull
+ public String getId() {
+ return getHelpTopic();
+ }
+
+ @Override
+ public Runnable enableSearch(String option) {
+ return null;
+ }
+
+ @Override
+ public JComponent createComponent() {
+ return myPanel;
+ }
+
+ @Override
+ public boolean isModified() {
+ return isModified;
+ }
+
+ @Override
+ public void apply() throws ConfigurationException {
+ if (isModified) {
+ mySettings.ENABLE_GROOVY_HOTSWAP = myEnableHotSwap.isSelected();
+ }
+ isModified = false;
+ }
+
+ @Override
+ public void reset() {
+ myEnableHotSwap.setSelected(mySettings.ENABLE_GROOVY_HOTSWAP);
+ }
+
+ @Override
+ public void disposeUIResources() {
+ }
+}