You've already forked ada_language_server
mirror of
https://github.com/AdaCore/ada_language_server.git
synced 2026-02-12 12:45:50 -08:00
37 lines
989 B
Plaintext
37 lines
989 B
Plaintext
function Controller() {
|
|
installer.setValue("TargetDir", installer.value("InstallPrefix"));
|
|
installer.autoRejectMessageBoxes();
|
|
installer.installationFinished.connect(function() {
|
|
gui.clickButton(buttons.NextButton);
|
|
})
|
|
}
|
|
|
|
Controller.prototype.ComponentSelectionPageCallback = function()
|
|
{
|
|
var page = gui.currentPageWidget();
|
|
|
|
page.deselectAll();
|
|
page.selectComponent("com.adacore.gnat");
|
|
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);
|
|
}
|