summaryrefslogtreecommitdiff
path: root/plugins/xpath/xpath-lang/src/org/intellij/lang/xpath/xslt/associations/impl/FileAssociationsConfigurable.java
blob: dc8c73771a46764abb73aeb2eccf75a722f17ace (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
/*
 * Copyright 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.lang.xpath.xslt.associations.impl;

import com.intellij.codeInsight.daemon.DaemonCodeAnalyzer;
import com.intellij.ide.util.treeView.TreeState;
import com.intellij.openapi.application.ReadAction;
import com.intellij.openapi.application.Result;
import com.intellij.openapi.components.*;
import com.intellij.openapi.options.Configurable;
import com.intellij.openapi.options.ConfigurationException;
import com.intellij.openapi.options.SearchableConfigurable;
import com.intellij.openapi.options.ShowSettingsUtil;
import com.intellij.openapi.project.Project;
import com.intellij.psi.PsiFile;
import org.jetbrains.annotations.NotNull;

import javax.swing.*;

public class FileAssociationsConfigurable implements SearchableConfigurable, Configurable.NoScroll {
    private final Project myProject;
    private final UIState myState;
    private AssociationsEditor myEditor;

    public FileAssociationsConfigurable(Project project) {
        myProject = project;
        myState = ServiceManager.getService(project, UIState.class);
    }

    @Override
    public String getDisplayName() {
        return "XSLT File Associations";
    }

  @Override
  @NotNull
    public String getHelpTopic() {
        return "xslt.associations";
    }

    @Override
    public JComponent createComponent() {
        myEditor = new ReadAction<AssociationsEditor>() {
            @Override
            protected void run(Result<AssociationsEditor> result) throws Throwable {
                result.setResult(new AssociationsEditor(myProject, myState.state));
            }
        }.execute().getResultObject();
        return myEditor.getComponent();
    }

    @Override
    public synchronized boolean isModified() {
        return myEditor != null && myEditor.isModified();
    }

    @Override
    public void apply() throws ConfigurationException {
        myEditor.apply();
        DaemonCodeAnalyzer.getInstance(myProject).restart();
    }

    @Override
    public void reset() {
        myEditor.reset();
    }

    @Override
    public synchronized void disposeUIResources() {
        if (myEditor != null) {
            myState.state = myEditor.getState();
            myEditor.dispose();
            myEditor = null;
        }
    }

    public AssociationsEditor getEditor() {
        return myEditor;
    }

    public static void editAssociations(Project project, final PsiFile file) {
        final FileAssociationsConfigurable instance = new FileAssociationsConfigurable(project);

        ShowSettingsUtil.getInstance().editConfigurable(project, instance, new Runnable() {
            @Override
            public void run() {
                final AssociationsEditor editor = instance.getEditor();
                if (file != null) {
                    editor.select(file);
                }
            }
        });
    }

    @State(name = "XSLT-Support.FileAssociations.UIState",
            storages = @Storage( file = StoragePathMacros.WORKSPACE_FILE)
    )
    public static class UIState implements PersistentStateComponent<TreeState> {
        private TreeState state;

        @Override
        public TreeState getState() {
            return state != null ? state : new TreeState();
        }

        @Override
        public void loadState(TreeState state) {
            this.state = state;
        }
    }

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

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