use of com.android.tools.idea.wizard.dynamic.SingleStepPath in project android by JetBrains.
the class FirstRunWizard method init.
@Override
public void init() {
File initialSdkLocation = FirstRunWizardDefaults.getInitialSdkLocation(myMode);
ConsolidatedProgressStep progressStep = new FirstRunProgressStep();
myComponentsPath = new InstallComponentsPath(myMode, initialSdkLocation, progressStep, true);
if (myMode == FirstRunWizardMode.NEW_INSTALL) {
boolean sdkExists = false;
if (initialSdkLocation.isDirectory()) {
AndroidSdkHandler sdkHandler = AndroidSdkHandler.getInstance(initialSdkLocation);
ProgressIndicator progress = new StudioLoggerProgressIndicator(getClass());
sdkExists = ((AndroidSdkHandler) sdkHandler).getLocalPackage(SdkConstants.FD_TOOLS, progress) != null;
}
addPath(new SingleStepPath(new FirstRunWelcomeStep(sdkExists)));
}
if (myMode == FirstRunWizardMode.NEW_INSTALL) {
if (initialSdkLocation.getPath().isEmpty()) {
// We don't have a default path specified, have to do custom install.
myState.put(KEY_CUSTOM_INSTALL, true);
} else {
addPath(new SingleStepPath(new InstallationTypeWizardStep(KEY_CUSTOM_INSTALL)));
}
addPath(new SingleStepPath(new SelectThemeStep(KEY_CUSTOM_INSTALL)));
}
if (myMode == FirstRunWizardMode.MISSING_SDK) {
addPath(new SingleStepPath(new MissingSdkAlertStep()));
}
addPath(myComponentsPath);
if (SystemInfo.isLinux && myMode == FirstRunWizardMode.NEW_INSTALL) {
addPath(new SingleStepPath(new LinuxHaxmInfoStep()));
}
if (myMode != FirstRunWizardMode.INSTALL_HANDOFF) {
addPath(new SingleStepPath(new LicenseAgreementStep(getDisposable())));
}
addPath(new SingleStepPath(progressStep));
super.init();
}
use of com.android.tools.idea.wizard.dynamic.SingleStepPath in project android by JetBrains.
the class NewModuleWizardDynamic method addPaths.
private void addPaths() {
Collection<NewModuleDynamicPath> contributions = getContributedPaths();
Iterable<ModuleTemplateProvider> templateProviders = Iterables.concat(ImmutableSet.of(new AndroidModuleTemplatesProvider()), contributions);
addPath(new SingleStepPath(new ChooseModuleTypeStep(templateProviders, getDisposable())));
for (NewFormFactorModulePath path : NewFormFactorModulePath.getAvailableFormFactorModulePaths(getDisposable())) {
path.setGradleSyncIfNecessary(false);
addPath(path);
}
for (NewModuleDynamicPath contribution : contributions) {
addPath(contribution);
}
}
use of com.android.tools.idea.wizard.dynamic.SingleStepPath in project android by JetBrains.
the class SdkUpdaterConfigPanel method setUpSingleSdkChooser.
private void setUpSingleSdkChooser() {
myEditSdkLink.setHyperlinkText("Edit");
myEditSdkLink.addHyperlinkListener(new HyperlinkAdapter() {
@Override
protected void hyperlinkActivated(HyperlinkEvent e) {
final DynamicWizardHost host = new DialogWrapperHost(null);
DynamicWizard wizard = new DynamicWizard(null, null, "SDK Setup", host) {
@Override
public void init() {
DownloadingComponentsStep progressStep = new DownloadingComponentsStep(myHost.getDisposable(), myHost);
String sdkPath = mySdkLocationTextField.getText();
File location;
if (StringUtil.isEmpty(sdkPath)) {
location = FirstRunWizardDefaults.getInitialSdkLocation(FirstRunWizardMode.MISSING_SDK);
} else {
location = new File(sdkPath);
}
InstallComponentsPath path = new InstallComponentsPath(FirstRunWizardMode.MISSING_SDK, location, progressStep, false);
progressStep.setInstallComponentsPath(path);
addPath(path);
addPath(new SingleStepPath(progressStep));
super.init();
}
@Override
public void performFinishingActions() {
File sdkLocation = IdeSdks.getInstance().getAndroidSdkPath();
if (sdkLocation == null) {
return;
}
String stateSdkLocationPath = myState.get(WizardConstants.KEY_SDK_INSTALL_LOCATION);
assert stateSdkLocationPath != null;
File stateSdkLocation = new File(stateSdkLocationPath);
if (!FileUtil.filesEqual(sdkLocation, stateSdkLocation)) {
setAndroidSdkLocation(stateSdkLocation);
sdkLocation = stateSdkLocation;
}
mySelectedSdkLocation.setValue(sdkLocation);
}
@NotNull
@Override
protected String getProgressTitle() {
return "Setting up SDK...";
}
@Override
protected String getWizardActionDescription() {
return "Setting up SDK...";
}
};
wizard.init();
wizard.show();
}
});
mySdkLocationTextField.setEditable(false);
}
Aggregations