summaryrefslogtreecommitdiff
path: root/xml/impl/src/com/intellij/application/options/emmet/EmmetConfigurable.java
blob: a702df6fde616b30a8c7b0808386586b415f797a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*
 * Copyright 2000-2013 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.application.options.emmet;

import com.intellij.codeInsight.CodeInsightBundle;
import com.intellij.codeInsight.template.impl.TemplateSettings;
import com.intellij.openapi.Disposable;
import com.intellij.openapi.options.Configurable;
import com.intellij.openapi.options.ConfigurationException;
import com.intellij.openapi.options.SearchableConfigurable;
import com.intellij.ui.components.JBCheckBox;
import com.intellij.xml.XmlBundle;
import org.jetbrains.annotations.Nls;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

/**
 * User: zolotov
 * Date: 2/20/13
 */
public class EmmetConfigurable implements SearchableConfigurable, Disposable, Configurable.NoScroll {
  private JBCheckBox myEnableEmmetJBCheckBox;
  private JComboBox myEmmetExpandShortcutCombo;
  private JBCheckBox myEnableBEMFilterJBCheckBox;
  private JBCheckBox myAutoInsertCssVendorJBCheckBox;
  private JBCheckBox myEnabledFuzzySearchJBCheckBox;
  private JPanel myPanel;
  private JPanel myPrefixesPanel;

  private CssEditPrefixesListPanel myCssEditPrefixesListPanel;

  private static final String SPACE = CodeInsightBundle.message("template.shortcut.space");
  private static final String TAB = CodeInsightBundle.message("template.shortcut.tab");
  private static final String ENTER = CodeInsightBundle.message("template.shortcut.enter");

  public EmmetConfigurable() {
    myEnableEmmetJBCheckBox.addActionListener(new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent e) {
        boolean selected = myEnableEmmetJBCheckBox.isSelected();
        myEmmetExpandShortcutCombo.setEnabled(selected);
        //myInsertFallbackGradientColorJBCheckBox.setEnabled(selected);
        myAutoInsertCssVendorJBCheckBox.setEnabled(selected);
        myCssEditPrefixesListPanel.setEnabled(selected && myAutoInsertCssVendorJBCheckBox.isSelected());
        myEnableBEMFilterJBCheckBox.setEnabled(selected);
        myEnabledFuzzySearchJBCheckBox.setEnabled(selected);
      }
    });

    myAutoInsertCssVendorJBCheckBox.addActionListener(new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent e) {
        myCssEditPrefixesListPanel.setEnabled(myAutoInsertCssVendorJBCheckBox.isSelected());
      }
    });

    myEmmetExpandShortcutCombo.addItem(SPACE);
    myEmmetExpandShortcutCombo.addItem(TAB);
    myEmmetExpandShortcutCombo.addItem(ENTER);
  }

  private char getSelectedEmmetExpandShortcut() {
    Object selectedItem = myEmmetExpandShortcutCombo.getSelectedItem();
    if (TAB.equals(selectedItem)) {
      return TemplateSettings.TAB_CHAR;
    }
    else if (ENTER.equals(selectedItem)) {
      return TemplateSettings.ENTER_CHAR;
    }
    return TemplateSettings.SPACE_CHAR;
  }

  @Override
  public void dispose() {
  }

  @NotNull
  @Override
  public String getId() {
    return "reference.idesettings.emmet";
  }

  @Nullable
  @Override
  public Runnable enableSearch(String option) {
    return null;
  }

  @Nls
  @Override
  public String getDisplayName() {
    return XmlBundle.message("emmet.configuration.title");
  }

  @Nullable
  @Override
  public String getHelpTopic() {
    return getId();
  }

  @Nullable
  @Override
  public JComponent createComponent() {
    return myPanel;
  }

  @Override
  public boolean isModified() {
    EmmetOptions emmetOptions = EmmetOptions.getInstance();
    return emmetOptions.isEmmetEnabled() != myEnableEmmetJBCheckBox.isSelected() ||
           emmetOptions.isBemFilterEnabledByDefault() != myEnableBEMFilterJBCheckBox.isSelected() ||
           emmetOptions.isAutoInsertCssPrefixedEnabled() != myAutoInsertCssVendorJBCheckBox.isSelected() ||
           emmetOptions.isFuzzySearchEnabled() != myEnabledFuzzySearchJBCheckBox.isSelected() ||
           !emmetOptions.getAllPrefixInfo().equals(myCssEditPrefixesListPanel.getState()) ||
           emmetOptions.getEmmetExpandShortcut() != getSelectedEmmetExpandShortcut();
  }


  @Override
  public void apply() throws ConfigurationException {
    EmmetOptions emmetOptions = EmmetOptions.getInstance();
    emmetOptions.setEmmetEnabled(myEnableEmmetJBCheckBox.isSelected());
    emmetOptions.setEnableBemFilterByDefault(myEnableBEMFilterJBCheckBox.isSelected());
    emmetOptions.setEmmetExpandShortcut(getSelectedEmmetExpandShortcut());
    emmetOptions.setAutoInsertCssPrefixedEnabled(myAutoInsertCssVendorJBCheckBox.isSelected());
    emmetOptions.setFuzzySearchEnabled(myEnabledFuzzySearchJBCheckBox.isSelected());
    emmetOptions.setPrefixInfo(myCssEditPrefixesListPanel.getState());
  }

  @Override
  public void reset() {
    EmmetOptions emmetOptions = EmmetOptions.getInstance();
    myEnableEmmetJBCheckBox.setSelected(emmetOptions.isEmmetEnabled());
    myEnableBEMFilterJBCheckBox.setEnabled(emmetOptions.isEmmetEnabled());
    myEnableBEMFilterJBCheckBox.setSelected(emmetOptions.isBemFilterEnabledByDefault());
    myEmmetExpandShortcutCombo.setEnabled(emmetOptions.isEmmetEnabled());
    myAutoInsertCssVendorJBCheckBox.setEnabled(emmetOptions.isEmmetEnabled());
    myAutoInsertCssVendorJBCheckBox.setSelected(emmetOptions.isAutoInsertCssPrefixedEnabled());
    myEnabledFuzzySearchJBCheckBox.setEnabled(emmetOptions.isEmmetEnabled());
    myEnabledFuzzySearchJBCheckBox.setSelected(emmetOptions.isFuzzySearchEnabled());
    //myInsertFallbackGradientColorJBCheckBox.setEnabled(emmetOptions.isEmmetEnabled());
    //myInsertFallbackGradientColorJBCheckBox.setSelected(emmetOptions.isInsertFallbackGradientColorEnabled());

    myCssEditPrefixesListPanel.setEnabled(emmetOptions.isEmmetEnabled() && emmetOptions.isAutoInsertCssPrefixedEnabled());
    myCssEditPrefixesListPanel.setState(emmetOptions.getAllPrefixInfo());

    char shortcut = (char)emmetOptions.getEmmetExpandShortcut();
    if (shortcut == TemplateSettings.TAB_CHAR) {
      myEmmetExpandShortcutCombo.setSelectedItem(TAB);
    }
    else if (shortcut == TemplateSettings.ENTER_CHAR) {
      myEmmetExpandShortcutCombo.setSelectedItem(ENTER);
    }
    else {
      myEmmetExpandShortcutCombo.setSelectedItem(SPACE);
    }
  }

  @Override
  public void disposeUIResources() {
    myCssEditPrefixesListPanel = null;
    myPrefixesPanel = null;
  }

  private void createUIComponents() {
    myCssEditPrefixesListPanel = new CssEditPrefixesListPanel();
    myPrefixesPanel = myCssEditPrefixesListPanel.createMainComponent();
    myPrefixesPanel.setEnabled(true);
  }
}