sticky documentation popup [take 1]
[fedora-idea.git] / platform / platform-impl / src / com / intellij / ide / BrowserSettings.java
blob6a6fa0b42216413af34502af892a3bf19e299d0a
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package com.intellij.ide;
18 import com.intellij.openapi.options.Configurable;
19 import com.intellij.openapi.options.ConfigurationException;
20 import com.intellij.openapi.options.SearchableConfigurable;
21 import com.intellij.openapi.util.IconLoader;
22 import org.jetbrains.annotations.Nls;
24 import javax.swing.*;
26 /**
27 * @author spleaner
29 public class BrowserSettings implements Configurable, SearchableConfigurable {
30 private static final Icon ICON = IconLoader.getIcon("/general/browsersettings.png");
31 private BrowserSettingsPanel mySettingsPanel;
33 public String getId() {
34 return getHelpTopic();
37 public Runnable enableSearch(final String option) {
38 return null;
41 @Nls
42 public String getDisplayName() {
43 return IdeBundle.message("browsers.settings");
46 public Icon getIcon() {
47 return ICON;
50 public String getHelpTopic() {
51 return "reference.settings.ide.settings.web.browsers";
54 public JComponent createComponent() {
55 if (mySettingsPanel == null) {
56 mySettingsPanel = new BrowserSettingsPanel();
59 return mySettingsPanel;
62 public boolean isModified() {
63 return mySettingsPanel != null && mySettingsPanel.isModified();
66 public void apply() throws ConfigurationException {
67 if (mySettingsPanel != null) {
68 mySettingsPanel.apply();
72 public void reset() {
73 if (mySettingsPanel != null) {
74 mySettingsPanel.reset();
78 public void disposeUIResources() {
79 mySettingsPanel = null;