Warning, /network/falkon/linux/appimage/qt-installer-noninteractive.qs is written in an unsupported language. File is not indexed.

0001 function Controller() {
0002     installer.autoRejectMessageBoxes();
0003     installer.installationFinished.connect(function() {
0004         gui.clickButton(buttons.NextButton);
0005     })
0006 }
0007 
0008 Controller.prototype.WelcomePageCallback = function() {
0009     gui.clickButton(buttons.NextButton, 2000);
0010 }
0011 
0012 Controller.prototype.CredentialsPageCallback = function() {
0013     gui.clickButton(buttons.NextButton);
0014 }
0015 
0016 Controller.prototype.IntroductionPageCallback = function() {
0017     gui.clickButton(buttons.NextButton);
0018 }
0019 
0020 Controller.prototype.TargetDirectoryPageCallback = function()
0021 {
0022     gui.currentPageWidget().TargetDirectoryLineEdit.setText("/root/Qt");
0023     gui.clickButton(buttons.NextButton);
0024 }
0025 
0026 Controller.prototype.ComponentSelectionPageCallback = function() {
0027     var widget = gui.currentPageWidget();
0028 
0029     widget.deselectAll();
0030     widget.selectComponent("qt.qt5.5101.gcc_64");
0031     widget.selectComponent("qt.qt5.5101.qtscript");
0032     widget.selectComponent("qt.qt5.5101.qtwebengine");
0033 
0034     gui.clickButton(buttons.NextButton);
0035 }
0036 
0037 Controller.prototype.LicenseAgreementPageCallback = function() {
0038     gui.currentPageWidget().AcceptLicenseRadioButton.setChecked(true);
0039     gui.clickButton(buttons.NextButton);
0040 }
0041 
0042 Controller.prototype.StartMenuDirectoryPageCallback = function() {
0043     gui.clickButton(buttons.NextButton);
0044 }
0045 
0046 Controller.prototype.ReadyForInstallationPageCallback = function()
0047 {
0048     gui.clickButton(buttons.NextButton);
0049 }
0050 
0051 Controller.prototype.FinishedPageCallback = function() {
0052 var checkBoxForm = gui.currentPageWidget().LaunchQtCreatorCheckBoxForm
0053 if (checkBoxForm && checkBoxForm.launchQtCreatorCheckBox) {
0054     checkBoxForm.launchQtCreatorCheckBox.checked = false;
0055 }
0056     gui.clickButton(buttons.FinishButton);
0057 }