blob: 3f87693029a97659da6d464a1d511bb2bc56f018 [file] [log] [blame]
/*
* 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.jetbrains.python.facet;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.project.ProjectManager;
import com.intellij.openapi.projectRoots.ProjectJdkTable;
import com.intellij.openapi.projectRoots.Sdk;
import com.intellij.openapi.projectRoots.ui.ProjectJdksEditor;
import com.intellij.ui.ComboboxWithBrowseButton;
import com.jetbrains.python.sdk.PySdkListCellRenderer;
import com.jetbrains.python.sdk.PythonSdkType;
import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.List;
/**
* @author yole
*/
public class PythonSdkComboBox extends ComboboxWithBrowseButton {
private Project myProject;
public PythonSdkComboBox() {
getComboBox().setRenderer(new PySdkListCellRenderer("<No Interpreter>", null));
addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Sdk selectedSdk = getSelectedSdk();
final Project project = myProject != null ? myProject : ProjectManager.getInstance().getDefaultProject();
ProjectJdksEditor editor = new ProjectJdksEditor(selectedSdk, project, PythonSdkComboBox.this);
editor.show();
if (editor.isOK()) {
selectedSdk = editor.getSelectedJdk();
updateSdkList(selectedSdk, false);
}
}
});
updateSdkList(null, true);
}
public void setProject(Project project) {
myProject = project;
}
public void updateSdkList(Sdk sdkToSelect, boolean selectAnySdk) {
final List<Sdk> sdkList = ProjectJdkTable.getInstance().getSdksOfType(PythonSdkType.getInstance());
if (selectAnySdk && sdkList.size() > 0) {
sdkToSelect = sdkList.get(0);
}
sdkList.add(0, null);
getComboBox().setModel(new DefaultComboBoxModel(sdkList.toArray(new Sdk[sdkList.size()])));
getComboBox().setSelectedItem(sdkToSelect);
}
public void updateSdkList() {
updateSdkList((Sdk) getComboBox().getSelectedItem(), false);
}
public Sdk getSelectedSdk() {
return (Sdk) getComboBox().getSelectedItem();
}
}