Created
September 28, 2016 20:41
-
-
Save harrishancock/6791a30335cfd2341ea117d9b003ce46 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Usage: | |
// wget http://download.qt.io/archive/qt/5.5/5.5.1/qt-opensource-windows-x86-msvc2013-5.5.1.exe | |
// ./qt-opensource....exe --script <this script> -platform minimal | |
function Controller() { | |
installer.autoRejectMessageBoxes(); | |
installer.installationFinished.connect(function() { | |
gui.clickButton(buttons.NextButton); | |
}) | |
} | |
Controller.prototype.WelcomePageCallback = function() { | |
gui.clickButton(buttons.NextButton); | |
} | |
Controller.prototype.CredentialsPageCallback = function() { | |
gui.clickButton(buttons.NextButton); | |
} | |
Controller.prototype.IntroductionPageCallback = function() { | |
gui.clickButton(buttons.NextButton); | |
} | |
Controller.prototype.TargetDirectoryPageCallback = function() | |
{ | |
gui.currentPageWidget().TargetDirectoryLineEdit.setText("C:/Qt"); | |
gui.clickButton(buttons.NextButton); | |
} | |
Controller.prototype.ComponentSelectionPageCallback = function() { | |
var widget = gui.currentPageWidget(); | |
widget.deselectAll(); | |
widget.selectComponent("qt.55.win32_msvc2013"); | |
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.FinishedPageCallback = function() { | |
var checkBoxForm = gui.currentPageWidget().LaunchQtCreatorCheckBoxForm | |
if (checkBoxForm && checkBoxForm.launchQtCreatorCheckBox) { | |
checkBoxForm.launchQtCreatorCheckBox.checked = false; | |
} | |
gui.clickButton(buttons.FinishButton); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment