forked from mirror/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
874 B
25 lines
874 B
/**
|
|
* Source: http://stackoverflow.com/questions/21389105/qt-installer-framework-offline-update-how
|
|
*/
|
|
|
|
function Controller()
|
|
{
|
|
}
|
|
|
|
Controller.prototype.TargetDirectoryPageCallback = function()
|
|
{
|
|
var widget = gui.currentPageWidget();
|
|
widget.TargetDirectoryLineEdit.textChanged.connect( this, Controller.prototype.targetChanged );
|
|
Controller.prototype.targetChanged( widget.TargetDirectoryLineEdit.text );
|
|
}
|
|
|
|
Controller.prototype.targetChanged = function( text )
|
|
{
|
|
if( text != "" && installer.fileExists(text + "/components.xml") )
|
|
{
|
|
if( QMessageBox.question("PreviousInstallation", "Previous installation detected", "Do you want to uninstall the previous installation?", QMessageBox.Yes | QMessageBox.No) == QMessageBox.Yes )
|
|
{
|
|
installer.execute( text+"/maintenancetool.exe", new Array("--script", text+"/uninstall.qs") )
|
|
}
|
|
}
|
|
}
|
|
|