2014-07-08 12:01:03 +02:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2015-02-17 11:18:57 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
** Contact: http://www.qt.io/licensing/
|
2014-07-08 12:01:03 +02:00
|
|
|
**
|
|
|
|
** This file is part of the Qt Installer Framework.
|
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:FDL$
|
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-02-17 11:18:57 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
** and conditions see http://qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at http://www.qt.io/contact-us.
|
2014-07-08 12:01:03 +02:00
|
|
|
**
|
|
|
|
** GNU Free Documentation License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Free
|
|
|
|
** Documentation License version 1.3 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file included in the packaging of
|
|
|
|
** this file. Please review the following information to ensure
|
|
|
|
** the GNU Free Documentation License version 1.3 requirements
|
|
|
|
** will be met: http://www.gnu.org/copyleft/fdl.html.
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/*!
|
2015-02-26 11:24:04 +01:00
|
|
|
\example quitinstaller
|
2014-07-08 12:01:03 +02:00
|
|
|
\ingroup qtifwexamples
|
|
|
|
\title Quit Installer Example
|
|
|
|
|
2015-02-26 11:24:04 +01:00
|
|
|
\image qtifw-examples-quitinstaller.png
|
2014-12-22 16:08:16 +01:00
|
|
|
|
2015-01-14 15:19:53 +01:00
|
|
|
\brief Using a component script to quit an installer.
|
2014-07-08 12:01:03 +02:00
|
|
|
|
2014-12-22 16:08:16 +01:00
|
|
|
\e{Quit Installer} illustrates how to use the \c Component() function to
|
|
|
|
display a message box to end users for quitting the installation if some
|
|
|
|
requirements for the installation are not met.
|
|
|
|
|
2014-07-08 12:01:03 +02:00
|
|
|
\include installerfw-examples-configuring.qdocinc
|
|
|
|
|
2015-02-26 11:24:04 +01:00
|
|
|
\quotefile quitinstaller/config/config.xml
|
2014-07-08 12:01:03 +02:00
|
|
|
|
2014-12-22 16:08:16 +01:00
|
|
|
\include installerfw-examples-packaging.qdocinc
|
|
|
|
|
|
|
|
\list
|
2015-01-20 16:47:37 +01:00
|
|
|
\li The \c <Default> element is set to \c true to preselect the
|
2014-12-22 16:08:16 +01:00
|
|
|
component in the installer.
|
2015-01-20 16:47:37 +01:00
|
|
|
\li The \c <Script> element specifies the file name of the JavaScript
|
2014-12-22 16:08:16 +01:00
|
|
|
file that is loaded to perform operations.
|
|
|
|
\endlist
|
|
|
|
|
2015-02-26 11:24:04 +01:00
|
|
|
\quotefile quitinstaller/packages/org.qtproject.ifw.example.quitinstaller/meta/package.xml
|
2014-12-22 16:08:16 +01:00
|
|
|
|
|
|
|
\section1 Quitting the Installation
|
|
|
|
|
|
|
|
In installscript.js, we use the \c Component() function to display a
|
|
|
|
message box for quitting the installer to end users:
|
|
|
|
|
2015-02-26 11:24:04 +01:00
|
|
|
\quotefromfile quitinstaller/packages/org.qtproject.ifw.example.quitinstaller/meta/installscript.js
|
2014-12-22 16:08:16 +01:00
|
|
|
\skipto Component()
|
|
|
|
\printuntil QMessageBox.Ok
|
|
|
|
|
|
|
|
If end users select \uicontrol OK, we use the \c installer::setValue()
|
|
|
|
function to display a message and the \c installer.setDefaultPageVisible()
|
|
|
|
function to hide the subsequent installer pages:
|
|
|
|
|
|
|
|
\printuntil NextButton
|
|
|
|
|
|
|
|
If end users select \uicontrol Cancel, we display the default installer
|
|
|
|
pages and use the \c installer::setValue() function to display another
|
|
|
|
message on the last installer page:
|
|
|
|
|
|
|
|
\printuntil /^\}/
|
|
|
|
|
2014-07-08 12:01:03 +02:00
|
|
|
\include installerfw-examples-generating.qdocinc
|
|
|
|
*/
|