mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
82 lines
2.3 KiB
Plaintext
82 lines
2.3 KiB
Plaintext
|
// Emacs mode hint: -*- mode: JavaScript -*-
|
||
|
|
||
|
function Controller() {
|
||
|
installer.autoRejectMessageBoxes();
|
||
|
installer.installationFinished.connect(function() {
|
||
|
gui.clickButton(buttons.NextButton);
|
||
|
|
||
|
})
|
||
|
|
||
|
}
|
||
|
|
||
|
Controller.prototype.WelcomePageCallback = function() {
|
||
|
// click delay here because the next button is initially disabled for ~1 second
|
||
|
gui.clickButton(buttons.NextButton, 3000);
|
||
|
|
||
|
}
|
||
|
|
||
|
Controller.prototype.CredentialsPageCallback = function() {
|
||
|
gui.clickButton(buttons.NextButton);
|
||
|
|
||
|
}
|
||
|
|
||
|
Controller.prototype.IntroductionPageCallback = function() {
|
||
|
gui.clickButton(buttons.NextButton);
|
||
|
|
||
|
}
|
||
|
|
||
|
Controller.prototype.TargetDirectoryPageCallback = function()
|
||
|
{
|
||
|
gui.currentPageWidget().TargetDirectoryLineEdit.setText(installer.value("HomeDir") + "/Qt");
|
||
|
gui.clickButton(buttons.NextButton);
|
||
|
|
||
|
}
|
||
|
|
||
|
Controller.prototype.ComponentSelectionPageCallback = function() {
|
||
|
var widget = gui.currentPageWidget();
|
||
|
|
||
|
widget.deselectAll();
|
||
|
widget.selectComponent("qt.qt5.5124.gcc_64");
|
||
|
|
||
|
// widget.deselectComponent("qt.tools.qtcreator");
|
||
|
// widget.deselectComponent("qt.55.qt3d");
|
||
|
// widget.deselectComponent("qt.55.qtcanvas3d");
|
||
|
// widget.deselectComponent("qt.55.qtlocation");
|
||
|
// widget.deselectComponent("qt.55.qtquick1");
|
||
|
// widget.deselectComponent("qt.55.qtscript");
|
||
|
// widget.deselectComponent("qt.55.qtwebengine");
|
||
|
// widget.deselectComponent("qt.extras");
|
||
|
// widget.deselectComponent("qt.tools.doc");
|
||
|
// widget.deselectComponent("qt.tools.examples");
|
||
|
|
||
|
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);
|
||
|
|
||
|
}
|