51 lines
1.3 KiB
Text
51 lines
1.3 KiB
Text
|
function Controller()
|
||
|
{
|
||
|
installer.autoRejectMessageBoxes();
|
||
|
installer.setMessageBoxAutomaticAnswer("OverwriteTargetDirectory", QMessageBox.Yes);
|
||
|
installer.setMessageBoxAutomaticAnswer("stopProcessesForUpdates", QMessageBox.Ignore);
|
||
|
installer.installationFinished.connect(function() {
|
||
|
gui.clickButton(buttons.NextButton);
|
||
|
})
|
||
|
}
|
||
|
|
||
|
Controller.prototype.IntroductionPageCallback = function()
|
||
|
{
|
||
|
gui.clickButton(buttons.NextButton);
|
||
|
}
|
||
|
|
||
|
Controller.prototype.TargetDirectoryPageCallback = function()
|
||
|
{
|
||
|
gui.clickButton(buttons.NextButton);
|
||
|
}
|
||
|
|
||
|
Controller.prototype.ComponentSelectionPageCallback = function()
|
||
|
{
|
||
|
gui.clickButton(buttons.NextButton);
|
||
|
}
|
||
|
|
||
|
Controller.prototype.LicenseAgreementPageCallback = function()
|
||
|
{
|
||
|
gui.currentPageWidget().AcceptLicenseRadioButton.setChecked(true);
|
||
|
gui.clickButton(buttons.NextButton);
|
||
|
}
|
||
|
|
||
|
Controller.prototype.StartMenuDirectoryPageCallback = function()
|
||
|
{
|
||
|
gui.clickButton(buttons.NextButton);
|
||
|
}
|
||
|
|
||
|
Controller.prototype.ReadyForInstallationPageCallback = function()
|
||
|
{
|
||
|
gui.clickButton(buttons.NextButton);
|
||
|
}
|
||
|
|
||
|
Controller.prototype.PerformInstallationPageCallback = function()
|
||
|
{
|
||
|
gui.clickButton(buttons.NextButton);
|
||
|
}
|
||
|
|
||
|
Controller.prototype.FinishedPageCallback = function()
|
||
|
{
|
||
|
gui.clickButton(buttons.FinishButton);
|
||
|
}
|