List of usage examples for com.intellij.openapi.ui ComponentWithBrowseButton subclass-usage
From source file com.google.idea.blaze.base.ui.FileSelectorWithStoredHistory.java
/** A file selector panel with text field, browse button and stored history. */ public class FileSelectorWithStoredHistory extends ComponentWithBrowseButton<TextFieldWithStoredHistory> { public static FileSelectorWithStoredHistory create(String historyKey, String title) { TextFieldWithStoredHistory textField = new TextFieldWithStoredHistory(historyKey); return new FileSelectorWithStoredHistory(textField, title);
From source file com.intellij.ide.util.scopeChooser.PackageSetChooserCombo.java
public class PackageSetChooserCombo extends ComponentWithBrowseButton<JComponent> { private static final Logger LOG = Logger.getInstance("#" + PackageSetChooserCombo.class.getName()); private final Project myProject; public PackageSetChooserCombo(final Project project, final String preselect) {
From source file com.intellij.ui.ComboboxWithBrowseButton.java
public class ComboboxWithBrowseButton extends ComponentWithBrowseButton<JComboBox> { public ComboboxWithBrowseButton() { super(new JComboBox(), null); } public ComboboxWithBrowseButton(JComboBox comboBox) {
From source file com.intellij.ui.EditorComboWithBrowseButton.java
/** * @author ven */ public class EditorComboWithBrowseButton extends ComponentWithBrowseButton<EditorComboBox> implements TextAccessor { public EditorComboWithBrowseButton(final ActionListener browseActionListener, final String text, @NotNull final Project project, final String recentsKey) {
From source file com.intellij.ui.EditorTextFieldWithBrowseButton.java
/** * User: anna */ public class EditorTextFieldWithBrowseButton extends ComponentWithBrowseButton<EditorTextField> implements TextAccessor { public EditorTextFieldWithBrowseButton(Project project, boolean isClassAccepted) {
From source file com.intellij.ui.ReferenceEditorComboWithBrowseButton.java
/** * @author ven */ public class ReferenceEditorComboWithBrowseButton extends ComponentWithBrowseButton<EditorComboBox> implements TextAccessor { public ReferenceEditorComboWithBrowseButton(final ActionListener browseActionListener, final String text,
From source file com.intellij.ui.ReferenceEditorWithBrowseButton.java
/** * @author ven */ public class ReferenceEditorWithBrowseButton extends ComponentWithBrowseButton<EditorTextField> implements TextAccessor { private final Function<String, Document> myFactory;
From source file com.intellij.ui.TextFieldWithHistoryWithBrowseButton.java
/** * User: anna */ public class TextFieldWithHistoryWithBrowseButton extends ComponentWithBrowseButton<TextFieldWithHistory> { public TextFieldWithHistoryWithBrowseButton() { super(new TextFieldWithHistory(), null);
From source file org.intellij.xquery.runner.ui.run.main.module.ModuleSelector.java
/** * User: ligasgr * Date: 19/09/13 * Time: 16:27 */ public class ModuleSelector extends ComponentWithBrowseButton<EditorTextField> implements TextAccessor {
From source file org.intellij.xquery.runner.ui.run.XQueryModuleSelector.java
/** * User: ligasgr * Date: 19/09/13 * Time: 16:27 */ public class XQueryModuleSelector extends ComponentWithBrowseButton<EditorTextField> implements TextAccessor {