Example usage for com.intellij.openapi.ui DialogWrapper subclass-usage

List of usage examples for com.intellij.openapi.ui DialogWrapper subclass-usage

Introduction

In this page you can find the example usage for com.intellij.openapi.ui DialogWrapper subclass-usage.

Usage

From source file com.android.tools.idea.gradle.variant.view.ModuleVariantsInfoGraph.java

class ModuleVariantsInfoGraph extends DialogWrapper {
    @NotNull
    private final Module myModule;
    @NotNull
    private final AndroidModuleModel myAndroidModel;

From source file com.android.tools.idea.logcat.ConfigureLogcatFormatDialog.java

/**
 * A dialog allowing users to customize a final-pass format to be used by
 * {@link AndroidLogcatFormatter}.
 */
public class ConfigureLogcatFormatDialog extends DialogWrapper {

From source file com.android.tools.idea.logcat.EditLogFilterDialog.java

/**
 * A dialog which is shown to the user when they request to modify or add a new log filter.
 */
final class EditLogFilterDialog extends DialogWrapper {
    static final int FILTER_HISTORY_SIZE = 5;
    private static final String NEW_FILTER_NAME_PREFIX = "Unnamed-";

From source file com.android.tools.idea.npw.assetstudio.ui.IconPickerDialog.java

/**
 * Generate a dialog to pick a pre-configured material icon in vector format.
 */
public final class IconPickerDialog extends DialogWrapper {
    private static final String DEFAULT_ICON_NAME = "action/ic_android_black_24dp.xml";
    private static final String[] ICON_CATEGORIES = initIconCategories();

From source file com.android.tools.idea.npw.ChooseApiLevelDialog.java

/**
 * An explanation dialog that helps the user select an API level.
 */
public class ChooseApiLevelDialog extends DialogWrapper
        implements DistributionChartComponent.SelectionChangedListener {
    private JPanel myPanel;

From source file com.android.tools.idea.refactoring.rtl.RtlSupportDialog.java

public class RtlSupportDialog extends DialogWrapper {
    private JPanel myPanel;
    private JCheckBox myAndroidManifestCheckBox;
    private JCheckBox myLayoutsCheckBox;
    private JTextArea myLabel;
    private JCheckBox myReplaceLeftRightPropertiesCheckBox;

From source file com.android.tools.idea.rendering.webp.WebpConversionDialog.java

public class WebpConversionDialog extends DialogWrapper
        implements DocumentListener, ChangeListener, ActionListener {
    private JSlider myQualitySlider;
    private JBTextField myQualityField;
    private JBRadioButton myLossyButton;
    private JBRadioButton myLosslessButton;

From source file com.android.tools.idea.rendering.webp.WebpPreviewDialog.java

public class WebpPreviewDialog extends DialogWrapper implements ChangeListener, KeyListener {
    private final WebpConversionTask myTask;
    private final Project myProject;
    private final WebpConversionSettings mySettings;
    private JBLabel myPngSizeLabel;
    private JSlider myQualitySlider;

From source file com.android.tools.idea.run.DeviceChooserDialog.java

public class DeviceChooserDialog extends DialogWrapper {
    private final DeviceChooser myDeviceChooser;

    public DeviceChooserDialog(@NotNull AndroidFacet facet, @NotNull IAndroidTarget projectTarget,
            boolean multipleSelection, @Nullable String[] selectedSerials, @Nullable Predicate<IDevice> filter) {
        super(facet.getModule().getProject(), true);

From source file com.android.tools.idea.run.editor.DeepLinkChooserDialog.java

public class DeepLinkChooserDialog extends DialogWrapper {

    private static final String TAG_INTENT_FILTER = "intent-filter";
    private static final String TAG_ACTION = "action";
    private static final String TAG_CATEGORY = "category";
    private static final String TAG_DATA = "data";