Warning, /network/falkon/mac/qt-mac-silent-install.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);
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 gui.currentPageWidget().TargetDirectoryLineEdit.setText(installer.value("HomeDir") + "/Qt");
0022 gui.clickButton(buttons.NextButton);
0023 }
0024
0025 Controller.prototype.ComponentSelectionPageCallback = function() {
0026 var widget = gui.currentPageWidget();
0027
0028 widget.deselectAll();
0029 widget.selectComponent("qt.58.clang_64");
0030 widget.selectComponent("qt.58.qtwebengine");
0031 widget.selectComponent("qt.58.qtscript");
0032
0033 gui.clickButton(buttons.NextButton);
0034 }
0035
0036 Controller.prototype.LicenseAgreementPageCallback = function() {
0037 gui.currentPageWidget().AcceptLicenseRadioButton.setChecked(true);
0038 gui.clickButton(buttons.NextButton);
0039 }
0040
0041 Controller.prototype.StartMenuDirectoryPageCallback = function() {
0042 gui.clickButton(buttons.NextButton);
0043 }
0044
0045 Controller.prototype.ReadyForInstallationPageCallback = function() {
0046 gui.clickButton(buttons.NextButton);
0047 }
0048
0049 Controller.prototype.FinishedPageCallback = function() {
0050 var checkBoxForm = gui.currentPageWidget().LaunchQtCreatorCheckBoxForm
0051 if (checkBoxForm && checkBoxForm.launchQtCreatorCheckBox) {
0052 checkBoxForm.launchQtCreatorCheckBox.checked = false;
0053 }
0054 gui.clickButton(buttons.FinishButton);
0055 }