forked from openmopac/mopac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qtifw_controller.qs
21 lines (19 loc) · 1.1 KB
/
qtifw_controller.qs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function Controller()
{
}
Controller.prototype.IntroductionPageCallback = function()
{
var widget = gui.currentPageWidget(); // get the current wizard page
if (widget != null && installer.isInstaller()) {
widget.MessageLabel.setText("Welcome to the MOPAC Setup Wizard.\n\n\
This is the first official release of the open-source version of MOPAC [https://github.com/openmopac/mopac], \
which continues from the commercial development of MOPAC that has ended with MOPAC2016. \
The original MOPAC developer, James J. P. Stewart, will continue to be involved with MOPAC at a gradually diminishing level of activity.\n\n\
For long-time users, there are some small changes to be aware of. \
The main executable has been renamed from \"MOPAC2016\" to \"mopac\", and it now depends \
on a core shared library, \"libmopac\", as well as Intel's OpenMP shared library, \
both of which are contained in this installer package."); // set the welcome text
installer.setDefaultPageVisible(QInstaller.StartMenuSelection, false);
installer.setDefaultPageVisible(QInstaller.ComponentSelection, false);
}
}