mirror of
https://github.com/AdaCore/VSS.git
synced 2026-02-12 13:06:25 -08:00
37 lines
979 B
Plaintext
37 lines
979 B
Plaintext
function Controller() {
|
|
installer.setValue("TargetDir", "cached_gnatdoc");
|
|
installer.autoRejectMessageBoxes();
|
|
installer.installationFinished.connect(function() {
|
|
gui.clickButton(buttons.NextButton);
|
|
})
|
|
}
|
|
|
|
Controller.prototype.ComponentSelectionPageCallback = function()
|
|
{
|
|
var page = gui.currentPageWidget();
|
|
|
|
page.deselectAll();
|
|
page.selectComponent("com.adacore.gnatstudio");
|
|
gui.clickButton(buttons.NextButton);
|
|
}
|
|
|
|
Controller.prototype.LicenseAgreementPageCallback = function()
|
|
{
|
|
var page = gui.pageById(QInstaller.LicenseCheck);
|
|
|
|
page.AcceptLicenseRadioButton.click();
|
|
gui.clickButton(buttons.NextButton);
|
|
}
|
|
|
|
Controller.prototype.IntroductionPageCallback =
|
|
Controller.prototype.TargetDirectoryPageCallback =
|
|
Controller.prototype.ReadyForInstallationPageCallback = function()
|
|
{
|
|
gui.clickButton(buttons.NextButton);
|
|
}
|
|
|
|
Controller.prototype.FinishedPageCallback = function()
|
|
{
|
|
gui.clickButton(buttons.FinishButton);
|
|
}
|