blob: 88f36728669cedc323af1874a1c5903f182ea06c [file] [log] [blame]
/*
* Copyright 2000-2009 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.openapi.keymap.impl.ui;
import com.intellij.openapi.actionSystem.ex.QuickList;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.ui.DialogWrapper;
import com.intellij.openapi.keymap.KeyMapBundle;
import javax.swing.*;
public class EditQuickListDialog extends DialogWrapper {
private QuickList myList;
private final QuickList[] myAllQuickLists;
private QuickListPanel myPanel;
private final Project myProject;
public EditQuickListDialog(Project project, QuickList list, QuickList[] allQuickLists) {
super(project, true);
myProject = project;
myList = list;
myAllQuickLists = allQuickLists;
setTitle(KeyMapBundle.message("edit.quick.list.dialog.title"));
init();
}
protected JComponent createCenterPanel() {
myPanel = new QuickListPanel(myList, myAllQuickLists, myProject);
return myPanel.getPanel();
}
public QuickList getList() {
return myList;
}
protected void doOKAction() {
ListModel model = myPanel.getActionsList().getModel();
int size = model.getSize();
String[] ids = new String[size];
for (int i = 0; i < size; i++) {
String actionId = (String)model.getElementAt(i);
ids[i] = actionId;
}
myList = new QuickList(myPanel.getDisplayName(), myPanel.getDescription(), ids, myList.isReadonly());
super.doOKAction();
}
protected String getDimensionServiceKey() {
return "#com.intellij.openapi.keymap.impl.ui.EditQuickListDialog";
}
}