List of usage examples for com.intellij.openapi.ui TextFieldWithBrowseButton subclass-usage
From source file com.android.tools.idea.npw.assetstudio.ui.ImageAssetBrowser.java
/** * Panel which wraps a {@link ImageAsset}, allowing the user to browse for an image file to use as * an asset. */ public final class ImageAssetBrowser extends TextFieldWithBrowseButton implements AssetComponent<ImageAsset> { private final ImageAsset myImageAsset = new ImageAsset();
From source file com.android.tools.idea.npw.assetstudio.ui.VectorAssetBrowser.java
/** * Text field with browse button which wraps a {@link VectorAsset}, which allows the user to * specify a path to an SVG file or other supported vector format. */ public final class VectorAssetBrowser extends TextFieldWithBrowseButton implements AssetComponent<VectorAsset>, Disposable {
From source file com.android.tools.idea.ui.TextFieldWithLaunchBrowserButton.java
/** * A text field with an accompanying button to launch the browser with a given URL. */ public class TextFieldWithLaunchBrowserButton extends TextFieldWithBrowseButton { private static final Logger LOG = Logger.getInstance(TextFieldWithLaunchBrowserButton.class); private final String myUrl;
From source file com.android.tools.idea.wizard.TextFieldWithLaunchBrowserButton.java
/** * A text field with an accompanying button to launch the browser with a given URL. */ public class TextFieldWithLaunchBrowserButton extends TextFieldWithBrowseButton { private static final Logger LOG = Logger.getInstance(TextFieldWithLaunchBrowserButton.class); private final String myUrl;
From source file com.intellij.util.xml.ui.BigStringComponent.java
/** * @author peter */ public class BigStringComponent extends TextFieldWithBrowseButton { private final String myWindowTitle;
From source file net.andydvorak.intellij.lessc.ui.configurable.TextFieldWithBrowseButtonImpl.java
public class TextFieldWithBrowseButtonImpl extends TextFieldWithBrowseButton { private final Project myProject; private String myTitle; public TextFieldWithBrowseButtonImpl(final Project project) {
From source file net.sf.logsupport.ui.ReviewSelectionTextField.java
/**
* Creates a text field that may be used to select report files for reading and writing them.
*
* @author Juergen_Kellerer, 2010-04-18
* @version 1.0
*/