/* * 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.ide.util.gotoByName; import com.intellij.openapi.Disposable; import com.intellij.openapi.application.ModalityState; import com.intellij.openapi.project.Project; import com.intellij.psi.PsiElement; import javax.swing.*; import java.awt.*; public class ChooseByNamePanel extends ChooseByNameBase implements Disposable { private JPanel myPanel; private boolean myCheckBoxVisible = false; public ChooseByNamePanel(Project project, ChooseByNameModel model, String initialText, boolean isCheckboxVisible, final PsiElement context){ super(project, model, initialText, context); myCheckBoxVisible = isCheckboxVisible; } @Override protected void initUI(ChooseByNamePopupComponent.Callback callback, ModalityState modalityState, boolean allowMultipleSelection) { super.initUI(callback, modalityState, allowMultipleSelection); //myTextFieldPanel.setBorder(new EmptyBorder(0,0,0,0)); myTextFieldPanel.setBorder(null); myPanel = new JPanel(new GridBagLayout()); myPanel.add(myTextFieldPanel, new GridBagConstraints(0,0,1,1,1,0,GridBagConstraints.WEST,GridBagConstraints.HORIZONTAL,new Insets(0,0,0,0),0,0)); myPanel.add(myListScrollPane, new GridBagConstraints(0,1,1,1,1,1,GridBagConstraints.WEST,GridBagConstraints.BOTH,new Insets(0,0,0,0),0,0)); } public JComponent getPreferredFocusedComponent() { return myTextField; } @Override protected void showList(){ } @Override protected void hideList(){ } @Override protected void close(boolean isOk) { } @Override protected boolean isShowListForEmptyPattern() { return true; } @Override protected boolean isCloseByFocusLost() { return false; } @Override protected boolean isCheckboxVisible(){ return myCheckBoxVisible; } public JPanel getPanel(){ return myPanel; } @Override public void dispose() { setDisposed(true); cancelListUpdater(); } }