From 36a12f8d13e7e43fee4be09a1c87606b79b55e5c Mon Sep 17 00:00:00 2001
From: Alex Spataru This is the complete list of members for Downloader, including all inherited members. Implements an integrated file downloader with a nice UI. Calculates the appropiate size units (bytes, KB or MB) for the received data and the total download size. Then, this function proceeds to update the dialog controls/UI. References round(). Referenced by updateProgress(). Uses two time samples (from the current time and a previous sample) to calculate how many bytes have been downloaded. Then, this function proceeds to calculate the appropiate units of time (hours, minutes or seconds) and constructs a user-friendly string, which is displayed in the dialog. Referenced by updateProgress(). Prompts the user if he/she wants to cancel the download and cancels the download if the user agrees to do that. Instructs the OS to open the downloaded file. References openDownload(), and useCustomInstallProcedures(). Referenced by onDownloadFinished(). Writes the downloaded data to a temp. directory and updates the UI controls. References installUpdate(). Referenced by startDownload(). Opens the downloaded file. Referenced by installUpdate(). Rounds the given input to two decimal places Referenced by calculateSizes(). Begins downloading the file at the given url References useCustomInstallProcedures(). References onDownloadFinished(), and updateProgress(). Referenced by Updater::setUseCustomInstallProcedures(). Referenced by Updater::setUpdateAvailable(). Uses the received and total parameters to get the download progress and update the progressbar value on the dialog. References calculateSizes(), and calculateTimeRemaining(). Referenced by startDownload(). Returns Referenced by startDownload(), and Updater::useCustomInstallProcedures(). Referenced by installUpdate(), and Updater::useCustomInstallProcedures(). Manages the updater instances. Instructs the References Updater::checkForUpdates(). References Updater::checkForUpdates(), and getUpdater(). References Updater::changelog(). References Updater::changelog(), and getUpdater(). Returns References Updater::downloaderEnabled(). References Updater::downloaderEnabled(), and getUpdater(). References Updater::downloadUrl(). References Updater::downloadUrl(), and getUpdater(). References Updater::latestVersion(). References getUpdater(), and Updater::latestVersion(). References Updater::moduleName(). References getUpdater(), and Updater::moduleName(). References Updater::moduleVersion(). References getUpdater(), and Updater::moduleVersion().
-
diff --git a/doc/output/html/class_downloader.html b/doc/output/html/class_downloader.html
index 12e5b2a..6557dfe 100644
--- a/doc/output/html/class_downloader.html
+++ b/doc/output/html/class_downloader.html
@@ -88,6 +88,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
Public Slots |
Signals |
Public Member Functions |
+Private Slots |
+Private Member Functions |
+Private Attributes |
List of all members
- Downloader(QWidget *parent=0) (defined in Downloader) Downloader explicit
- downloadFinished(const QString &url, const QString &filepath) (defined in Downloader) Downloader signal
- setUseCustomInstallProcedures(const bool &custom) Downloader slot
+ startDownload(const QUrl &url) Downloader slot
+ calculateSizes(qint64 received, qint64 total) Downloader privateslot
+ calculateTimeRemaining(qint64 received, qint64 total) Downloader privateslot
+ cancelDownload() Downloader privateslot
+ Downloader(QWidget *parent=0) (defined in Downloader) Downloader explicit
+ downloadFinished(const QString &url, const QString &filepath) (defined in Downloader) Downloader signal
+ installUpdate() Downloader privateslot
+ m_filePath (defined in Downloader) Downloader private
+ m_manager (defined in Downloader) Downloader private
+ m_reply (defined in Downloader) Downloader private
+ m_startTime (defined in Downloader) Downloader private
+ m_ui (defined in Downloader) Downloader private
+ m_useCustomProcedures (defined in Downloader) Downloader private
+ onDownloadFinished() Downloader privateslot
+ openDownload() Downloader privateslot
+ round(const qreal &input) Downloader private
+ setUseCustomInstallProcedures(const bool &custom) Downloader slot
+ startDownload(const QUrl &url) Downloader slot updateProgress(qint64 received, qint64 total) Downloader privateslot useCustomInstallProcedures() const Downloader ~Downloader() (defined in Downloader) Downloader bool useCustomInstallProcedures () const
+
+
+
+Private Slots
+void openDownload ()
+
+void installUpdate ()
+
+void cancelDownload ()
+
+void onDownloadFinished ()
+
+void calculateSizes (qint64 received, qint64 total)
+
+void updateProgress (qint64 received, qint64 total)
+
+void calculateTimeRemaining (qint64 received, qint64 total)
+
+
+
+Private Member Functions
+qreal round (const qreal &input)
+
+
+
+Private Attributes
+
+uint m_startTime
+
+
+QString m_filePath
+
+
+Ui::Downloader * m_ui
+
+
+QNetworkReply * m_reply
+
+
+bool m_useCustomProcedures
+
+
+QNetworkAccessManager * m_manager Detailed Description
Member Function Documentation
+
+
+
+
+
+
+
+
+
+
+
+ void Downloader::calculateSizes
+ (
+ qint64
+ received,
+
+
+
+
+ qint64
+ total
+
+
+
+ )
+
+
+privateslot
+
+
+
+
+
+
+
+
+
+
+ void Downloader::calculateTimeRemaining
+ (
+ qint64
+ received,
+
+
+
+
+ qint64
+ total
+
+
+
+ )
+
+
+privateslot
+
+
+
+
+
+
+
+
+
+
+ void Downloader::cancelDownload
+ (
+ )
+
+
+privateslot
+
+
+
+
+
+
+
+
+
+
+ void Downloader::installUpdate
+ (
+ )
+
+
+privateslot
+
+
+useCustomInstallProcedures()
returns true
, the function will not instruct the OS to open the downloaded file. You can use the signals fired by the QSimpleUpdater
to install the update with your own implementations/code.
+
+
+
+
+
+
+
+
+
+ void Downloader::onDownloadFinished
+ (
+ )
+
+
+privateslot
+
+
+
+
+
+
+
+
+
+
+
+
+ void Downloader::openDownload
+ (
+ )
+
+
+privateslot
+
+
+
+
+
+
+
+
+
+
+
+
+ qreal Downloader::round
+ (
+ const qreal &
+ input )
+
+
+private
+
+
+
+
+
+
+
+
+
+
+ void Downloader::updateProgress
+ (
+ qint64
+ received,
+
+
+
+
+ qint64
+ total
+
+
+
+ )
+
+
+privateslot
+ true
if the updater shall not intervene when the download has finished (you can use the QSimpleUpdater
signals to know when the download is completed). getNotifyOnUpdate(const QString &url) const QSimpleUpdater getPlatformKey(const QString &url) const QSimpleUpdater
- getUpdateAvailable(const QString &url) const QSimpleUpdater
- setDownloaderEnabled(const QString &url, const bool &enabled) QSimpleUpdater slot
- setModuleName(const QString &url, const QString &name) QSimpleUpdater slot
- setModuleVersion(const QString &url, const QString &version) QSimpleUpdater slot
- setNotifyOnFinish(const QString &url, const bool ¬ify) QSimpleUpdater slot
- setNotifyOnUpdate(const QString &url, const bool ¬ify) QSimpleUpdater slot
- setPlatformKey(const QString &url, const QString &platform) QSimpleUpdater slot
- setUseCustomInstallProcedures(const QString &url, const bool &custom) QSimpleUpdater slot
- usesCustomInstallProcedures(const QString &url) const QSimpleUpdater
+ ~QSimpleUpdater() (defined in QSimpleUpdater) QSimpleUpdater protected
+ getUpdater(const QString &url) const QSimpleUpdater private
+ setDownloaderEnabled(const QString &url, const bool &enabled) QSimpleUpdater slot
+ setModuleName(const QString &url, const QString &name) QSimpleUpdater slot
+ setModuleVersion(const QString &url, const QString &version) QSimpleUpdater slot
+ setNotifyOnFinish(const QString &url, const bool ¬ify) QSimpleUpdater slot
+ setNotifyOnUpdate(const QString &url, const bool ¬ify) QSimpleUpdater slot
+ setPlatformKey(const QString &url, const QString &platform) QSimpleUpdater slot
+ setUseCustomInstallProcedures(const QString &url, const bool &custom) QSimpleUpdater slot
+ usesCustomInstallProcedures(const QString &url) const QSimpleUpdater ~QSimpleUpdater() (defined in QSimpleUpdater) QSimpleUpdater protected
diff --git a/doc/output/html/class_q_simple_updater.html b/doc/output/html/class_q_simple_updater.html
index 2ce316b..765a386 100644
--- a/doc/output/html/class_q_simple_updater.html
+++ b/doc/output/html/class_q_simple_updater.html
@@ -89,6 +89,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
Signals |
Public Member Functions |
Static Public Member Functions |
+Private Member Functions |
List of all members
static QSimpleUpdater * getInstance ()
+
+
+
+Private Member Functions
+Updater * getUpdater (const QString &url) const Detailed Description
Updater
instance with the registered url
to download and interpret the update definitions file.
-Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically checkForUpdates()
before using this function
-Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically true
if the Updater
instance registered with the given url has the integrated downloader enabled.
-Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically checkForUpdates()
before using this function
-Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically checkForUpdates()
before using this function
-Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically
-Updater
instance registered with the given url shall notify the user when it finishes checking for updates.
Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically References Updater::notifyOnFinish().
+References getUpdater(), and Updater::notifyOnFinish().
@@ -388,7 +394,7 @@ If anUpdater
instance registered with the given url shall notify the user when an update is available.
Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically References Updater::notifyOnUpdate().
+References getUpdater(), and Updater::notifyOnUpdate().
@@ -414,7 +420,7 @@ If anNote If an Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically
-References Updater::platformKey().
+References getUpdater(), and Updater::platformKey().
@@ -435,7 +441,37 @@ If an Warning You should call checkForUpdates()
before using this function
- Note
- If an
Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically
-References Updater::updateAvailable().
+References getUpdater(), and Updater::updateAvailable().
+
+
+
+
+
+
+
+
+
+
+
+ Updater * QSimpleUpdater::getUpdater
+ (
+ const QString &
+ url )
+ const
+
+
+
+
+private
+
+
+
+Returns the Updater
instance registered with the given url.
+If an Updater
instance registered with teh given url does not exist, this function will create it and configure it automatically.
+
+References Updater::setUrl().
+
+Referenced by checkForUpdates(), getChangelog(), getDownloaderEnabled(), getDownloadUrl(), getLatestVersion(), getModuleName(), getModuleVersion(), getNotifyOnFinish(), getNotifyOnUpdate(), getPlatformKey(), getUpdateAvailable(), setDownloaderEnabled(), setModuleName(), setModuleVersion(), setNotifyOnFinish(), setNotifyOnUpdate(), setPlatformKey(), setUseCustomInstallProcedures(), and usesCustomInstallProcedures().
@@ -473,7 +509,7 @@ If an Updater
instance registered with the given url will open the integrated downloader if the user agrees to install the update (if any).
- Note
- If an
Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically
-References Updater::setDownloaderEnabled().
+References getUpdater(), and Updater::setDownloaderEnabled().
@@ -513,7 +549,7 @@ If an Updater::setModuleName().
+References getUpdater(), and Updater::setModuleName().
@@ -551,7 +587,7 @@ The module name is used on the user prompts. If the module name is empty, then t
Changes the module
- Version
- of the
Updater
instance registered at the given url.
- Note
- The module version is used to compare it with the remove version. If the module name is empty, then the
Updater
instance will use the application version.
-References Updater::setModuleVersion().
+References getUpdater(), and Updater::setModuleVersion().
@@ -589,7 +625,7 @@ The module name is used on the user prompts. If the module name is empty, then t
If notify is set to true
, then the Updater
instance registered with the given url will notify the user when it has finished interpreting the update definitions file.
- Note
- If an
Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically
-References Updater::setNotifyOnFinish().
+References getUpdater(), and Updater::setNotifyOnFinish().
@@ -627,7 +663,7 @@ The module name is used on the user prompts. If the module name is empty, then t
If notify is set to true
, then the Updater
instance registered with the given url will notify the user when an update is available.
- Note
- If an
Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically
-References Updater::setNotifyOnUpdate().
+References getUpdater(), and Updater::setNotifyOnUpdate().
@@ -672,7 +708,7 @@ The module name is used on the user prompts. If the module name is empty, then t
- Note
- If an
Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically
-References Updater::setPlatformKey().
+References getUpdater(), and Updater::setPlatformKey().
@@ -711,7 +747,7 @@ The module name is used on the user prompts. If the module name is empty, then t
If you want to implement your own way to handle the downloaded file, just bind to the downloadFinished()
signal and disable the integrated downloader with the setUseCustomInstallProcedures()
function.
- Note
- If an
Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically
-References Updater::setUrl(), and Updater::setUseCustomInstallProcedures().
+References getUpdater(), and Updater::setUseCustomInstallProcedures().
@@ -732,7 +768,7 @@ The module name is used on the user prompts. If the module name is empty, then t
If you want to implement your own way to handle the downloaded file, just bind to the downloadFinished()
signal and disable the integrated downloader with the setUseCustomInstallProcedures()
function.
- Note
- If an
Updater
instance registered with the given url is not found, that Updater
instance will be initialized automatically
-References Updater::useCustomInstallProcedures().
+References getUpdater(), and Updater::useCustomInstallProcedures().
diff --git a/doc/output/html/class_updater-members.html b/doc/output/html/class_updater-members.html
index a15d12b..7cb5ca0 100644
--- a/doc/output/html/class_updater-members.html
+++ b/doc/output/html/class_updater-members.html
@@ -94,14 +94,30 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
changelog() const Updater
checkForUpdates() Updater slot
checkingFinished(const QString &url) (defined in Updater) Updater signal
- downloaderEnabled() const Updater
- downloadFinished(const QString &url, const QString &filepath) (defined in Updater) Updater signal
- downloadUrl() const Updater
- latestVersion() const Updater
- moduleName() const Updater
- moduleVersion() const Updater
- notifyOnFinish() const Updater
- notifyOnUpdate() const Updater
+ compare(const QString &x, const QString &y) Updater private
+ downloaderEnabled() const Updater
+ downloadFinished(const QString &url, const QString &filepath) (defined in Updater) Updater signal
+ downloadUrl() const Updater
+ latestVersion() const Updater
+ m_changelog (defined in Updater) Updater private
+ m_downloader (defined in Updater) Updater private
+ m_downloaderEnabled (defined in Updater) Updater private
+ m_downloadUrl (defined in Updater) Updater private
+ m_latestVersion (defined in Updater) Updater private
+ m_manager (defined in Updater) Updater private
+ m_moduleName (defined in Updater) Updater private
+ m_moduleVersion (defined in Updater) Updater private
+ m_notifyOnFinish (defined in Updater) Updater private
+ m_notifyOnUpdate (defined in Updater) Updater private
+ m_openUrl (defined in Updater) Updater private
+ m_platform (defined in Updater) Updater private
+ m_updateAvailable (defined in Updater) Updater private
+ m_url (defined in Updater) Updater private
+ moduleName() const Updater
+ moduleVersion() const Updater
+ notifyOnFinish() const Updater
+ notifyOnUpdate() const Updater
+ onReply(QNetworkReply *reply) Updater privateslot
platformKey() const Updater
setDownloaderEnabled(const bool &enabled) Updater slot
setModuleName(const QString &name) Updater slot
@@ -109,13 +125,14 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
setNotifyOnFinish(const bool ¬ify) Updater slot
setNotifyOnUpdate(const bool ¬ify) Updater slot
setPlatformKey(const QString &platformKey) Updater slot
- setUrl(const QString &url) Updater slot
- setUseCustomInstallProcedures(const bool &custom) Updater slot
- updateAvailable() const Updater
- Updater() (defined in Updater) Updater
- url() const Updater
- useCustomInstallProcedures() const Updater
- ~Updater() (defined in Updater) Updater
+ setUpdateAvailable(const bool &available) Updater privateslot
+ setUrl(const QString &url) Updater slot
+ setUseCustomInstallProcedures(const bool &custom) Updater slot
+ updateAvailable() const Updater
+ Updater() (defined in Updater) Updater
+ url() const Updater
+ useCustomInstallProcedures() const Updater
+ ~Updater() (defined in Updater) Updater
diff --git a/doc/output/html/class_updater.html b/doc/output/html/class_updater.html
index bffa4d1..b76c110 100644
--- a/doc/output/html/class_updater.html
+++ b/doc/output/html/class_updater.html
@@ -88,6 +88,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
Public Slots |
Signals |
Public Member Functions |
+Private Slots |
+Private Member Functions |
+Private Attributes |
List of all members
Updater Class Reference
@@ -163,6 +166,63 @@ Public Member Functions
bool useCustomInstallProcedures () const
+
+
+Private Slots
+void onReply (QNetworkReply *reply)
+
+void setUpdateAvailable (const bool &available)
+
+
+
+Private Member Functions
+bool compare (const QString &x, const QString &y)
+
+
+
+Private Attributes
+
+QString m_url
+
+
+bool m_notifyOnUpdate
+
+
+bool m_notifyOnFinish
+
+
+bool m_updateAvailable
+
+
+bool m_downloaderEnabled
+
+
+QString m_openUrl
+
+
+QString m_platform
+
+
+QString m_changelog
+
+
+QString m_moduleName
+
+
+QString m_downloadUrl
+
+
+QString m_moduleVersion
+
+
+QString m_latestVersion
+
+
+Downloader * m_downloader
+
+
+QNetworkAccessManager * m_manager
+
Detailed Description
Downloads and interprests the update definition file.
@@ -211,6 +271,47 @@ Public Member Functions
Referenced by QSimpleUpdater::checkForUpdates().
+
+
+
+
+
+
+
+
+
+
+ bool Updater::compare
+ (
+ const QString &
+ x,
+
+
+
+
+ const QString &
+ y
+
+
+
+ )
+
+
+
+
+
+private
+
+
+
+Compares the two version strings (x and y).
+- If x is greater than , this function returns
true
.
+- If y is greater than , this function returns
false
.
+- If both versions are the same, this function returns
false
.
+
+
+Referenced by onReply().
+
@@ -227,7 +328,7 @@ Public Member Functions
Returns true
if the integrated downloader is enabled.
- Note
- If set to
true
, the Updater
will open the downloader dialog if the user agrees to download the update.
-Referenced by QSimpleUpdater::getDownloaderEnabled(), and setUseCustomInstallProcedures().
+Referenced by QSimpleUpdater::getDownloaderEnabled(), and setUpdateAvailable().
@@ -245,7 +346,7 @@ Public Member Functions
Returns the download URL defined by the update definitions file.
- Warning
- You should call
checkForUpdates()
before using this function
-Referenced by QSimpleUpdater::getDownloadUrl(), and setUseCustomInstallProcedures().
+Referenced by QSimpleUpdater::getDownloadUrl(), and setUpdateAvailable().
@@ -263,7 +364,7 @@ Public Member Functions
Returns the latest version defined by the update definitions file.
- Warning
- You should call
checkForUpdates()
before using this function
-Referenced by QSimpleUpdater::getLatestVersion(), and setUseCustomInstallProcedures().
+Referenced by QSimpleUpdater::getLatestVersion(), onReply(), and setUpdateAvailable().
@@ -281,7 +382,7 @@ Public Member Functions
Returns the name of the module (if defined)
-Referenced by QSimpleUpdater::getModuleName(), and setUseCustomInstallProcedures().
+Referenced by QSimpleUpdater::getModuleName(), and setUpdateAvailable().
@@ -299,7 +400,7 @@ Public Member Functions
Returns the "local" version of the installed module
-Referenced by QSimpleUpdater::getModuleVersion(), and setUseCustomInstallProcedures().
+Referenced by QSimpleUpdater::getModuleVersion(), and onReply().
@@ -318,7 +419,7 @@ Public Member Functions
Returns true
if the updater should notify the user when it finishes checking for updates.
- Note
- If set to
true
, the Updater
will notify the user even when there are no updates available (by congratulating him/her about being smart)
-Referenced by QSimpleUpdater::getNotifyOnFinish(), and setUseCustomInstallProcedures().
+Referenced by QSimpleUpdater::getNotifyOnFinish(), and setUpdateAvailable().
@@ -336,7 +437,34 @@ Public Member Functions
Returns true
if the updater should notify the user when an update is available.
-Referenced by QSimpleUpdater::getNotifyOnUpdate(), and setUseCustomInstallProcedures().
+Referenced by QSimpleUpdater::getNotifyOnUpdate(), and setUpdateAvailable().
+
+
+
+
+
+
+
+
+
+
+
+ void Updater::onReply
+ (
+ QNetworkReply *
+ reply )
+
+
+
+
+
+privateslot
+
+
+
+Called when the download of the update definitions file is finished.
+
+References compare(), latestVersion(), moduleVersion(), platformKey(), setUpdateAvailable(), and url().
@@ -360,7 +488,7 @@ Public Member Functions
On Microsoft Windows: windows
-Referenced by QSimpleUpdater::getPlatformKey(), setPlatformKey(), and setUseCustomInstallProcedures().
+Referenced by QSimpleUpdater::getPlatformKey(), onReply(), and setPlatformKey().
@@ -532,6 +660,35 @@ Public Member Functions
Referenced by QSimpleUpdater::setPlatformKey().
+
+
+
+
+
+
+
+
+
+
+ void Updater::setUpdateAvailable
+ (
+ const bool &
+ available )
+
+
+
+
+
+privateslot
+
+
+
+Prompts the user based on the value of the available parameter and the settings of this instance of the Updater
class.
+
+References downloaderEnabled(), downloadUrl(), latestVersion(), moduleName(), notifyOnFinish(), notifyOnUpdate(), Downloader::startDownload(), and updateAvailable().
+
+Referenced by onReply().
+
@@ -559,7 +716,7 @@ Public Member Functions
References url().
-Referenced by QSimpleUpdater::setUseCustomInstallProcedures().
+Referenced by QSimpleUpdater::getUpdater().
@@ -586,7 +743,7 @@ Public Member Functions
If the custom parameter is set to true
, the Updater
will not try to open the downloaded file. Use the signals fired by the QSimpleUpdater
to install the update from the downloaded file by yourself.
-References downloaderEnabled(), downloadUrl(), latestVersion(), moduleName(), moduleVersion(), notifyOnFinish(), notifyOnUpdate(), platformKey(), Downloader::setUseCustomInstallProcedures(), Downloader::startDownload(), updateAvailable(), and url().
+References Downloader::setUseCustomInstallProcedures().
Referenced by QSimpleUpdater::setUseCustomInstallProcedures().
@@ -606,7 +763,7 @@ Public Member Functions
Returns true
if there is an update available.
- Warning
- You should call
checkForUpdates()
before using this function
-Referenced by QSimpleUpdater::getUpdateAvailable(), and setUseCustomInstallProcedures().
+Referenced by QSimpleUpdater::getUpdateAvailable(), and setUpdateAvailable().
@@ -624,7 +781,7 @@ Public Member Functions
Returns the URL of the update definitions file
-Referenced by checkForUpdates(), setUrl(), and setUseCustomInstallProcedures().
+Referenced by checkForUpdates(), onReply(), and setUrl().
diff --git a/doc/output/html/functions.html b/doc/output/html/functions.html
index 315bea7..ba4c874 100644
--- a/doc/output/html/functions.html
+++ b/doc/output/html/functions.html
@@ -79,10 +79,13 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
c
d
g
+ i
l
m
n
+ o
p
+ r
s
u
@@ -106,6 +109,15 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
Here is a list of all documented class members with links to the class documentation for each member:
- c -
+- calculateSizes()
+: Downloader
+
+- calculateTimeRemaining()
+: Downloader
+
+- cancelDownload()
+: Downloader
+
- changelog()
: Updater
@@ -113,6 +125,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
: QSimpleUpdater
, Updater
+- compare()
+: Updater
+
@@ -160,6 +175,16 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
getUpdateAvailable()
: QSimpleUpdater
+getUpdater()
+: QSimpleUpdater
+
+
+
+
+- i -
+- installUpdate()
+: Downloader
+
@@ -190,6 +215,19 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
+- o -
+- onDownloadFinished()
+: Downloader
+
+- onReply()
+: Updater
+
+- openDownload()
+: Downloader
+
+
+
+
- p -
- platformKey()
: Updater
@@ -197,6 +235,13 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
+- r -
+- round()
+: Downloader
+
+
+
+
- s -
- setDownloaderEnabled()
: QSimpleUpdater
@@ -222,6 +267,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
: QSimpleUpdater
, Updater
+- setUpdateAvailable()
+: Updater
+
- setUrl()
: Updater
@@ -240,6 +288,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
- updateAvailable()
: Updater
+- updateProgress()
+: Downloader
+
- url()
: Updater
diff --git a/doc/output/html/functions_func.html b/doc/output/html/functions_func.html
index 776b2bd..2d03d8f 100644
--- a/doc/output/html/functions_func.html
+++ b/doc/output/html/functions_func.html
@@ -79,10 +79,13 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
- c
- d
- g
+ - i
- l
- m
- n
+ - o
- p
+ - r
- s
- u
@@ -106,6 +109,15 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
- c -
+- calculateSizes()
+: Downloader
+
+- calculateTimeRemaining()
+: Downloader
+
+- cancelDownload()
+: Downloader
+
- changelog()
: Updater
@@ -113,6 +125,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
: QSimpleUpdater
, Updater
+- compare()
+: Updater
+
@@ -160,6 +175,16 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
getUpdateAvailable()
: QSimpleUpdater
+getUpdater()
+: QSimpleUpdater
+
+
+
+
+- i -
+- installUpdate()
+: Downloader
+
@@ -190,6 +215,19 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
+- o -
+- onDownloadFinished()
+: Downloader
+
+- onReply()
+: Updater
+
+- openDownload()
+: Downloader
+
+
+
+
- p -
- platformKey()
: Updater
@@ -197,6 +235,13 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
+- r -
+- round()
+: Downloader
+
+
+
+
- s -
- setDownloaderEnabled()
: QSimpleUpdater
@@ -222,6 +267,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
: QSimpleUpdater
, Updater
+- setUpdateAvailable()
+: Updater
+
- setUrl()
: Updater
@@ -240,6 +288,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
- updateAvailable()
: Updater
+- updateProgress()
+: Downloader
+
- url()
: Updater
diff --git a/doc/output/html/search/all_0.js b/doc/output/html/search/all_0.js
index 62ebba7..1328511 100644
--- a/doc/output/html/search/all_0.js
+++ b/doc/output/html/search/all_0.js
@@ -1,5 +1,9 @@
var searchData=
[
+ ['calculatesizes',['calculateSizes',['../class_downloader.html#a2909b4a7cfb35f2709849ee2c95dae0e',1,'Downloader']]],
+ ['calculatetimeremaining',['calculateTimeRemaining',['../class_downloader.html#a662cc753f90f25c91721f8edeaac9b57',1,'Downloader']]],
+ ['canceldownload',['cancelDownload',['../class_downloader.html#a17209ffbd584af1a3e836e46e70d18d9',1,'Downloader']]],
['changelog',['changelog',['../class_updater.html#af6a266ddbf0b855bcee1e9f77dfe9efb',1,'Updater']]],
- ['checkforupdates',['checkForUpdates',['../class_updater.html#a4af41658f974f72c71a9463be7bba1b5',1,'Updater::checkForUpdates()'],['../class_q_simple_updater.html#a791c89568adb171a62ccd0704570b68d',1,'QSimpleUpdater::checkForUpdates()']]]
+ ['checkforupdates',['checkForUpdates',['../class_updater.html#a4af41658f974f72c71a9463be7bba1b5',1,'Updater::checkForUpdates()'],['../class_q_simple_updater.html#a791c89568adb171a62ccd0704570b68d',1,'QSimpleUpdater::checkForUpdates()']]],
+ ['compare',['compare',['../class_updater.html#a247145d494c38d15f6569bbd209380e3',1,'Updater']]]
];
diff --git a/doc/output/html/search/all_2.js b/doc/output/html/search/all_2.js
index 1638182..52f70eb 100644
--- a/doc/output/html/search/all_2.js
+++ b/doc/output/html/search/all_2.js
@@ -10,5 +10,6 @@ var searchData=
['getnotifyonfinish',['getNotifyOnFinish',['../class_q_simple_updater.html#acc540358f0d887e4945ac061667a596d',1,'QSimpleUpdater']]],
['getnotifyonupdate',['getNotifyOnUpdate',['../class_q_simple_updater.html#acdc00558a979df664910b07cb82f9b36',1,'QSimpleUpdater']]],
['getplatformkey',['getPlatformKey',['../class_q_simple_updater.html#a0f061c6945b58664c2c9f9ec26f0d87c',1,'QSimpleUpdater']]],
- ['getupdateavailable',['getUpdateAvailable',['../class_q_simple_updater.html#a6557bff5a8a255291f12d2613879981b',1,'QSimpleUpdater']]]
+ ['getupdateavailable',['getUpdateAvailable',['../class_q_simple_updater.html#a6557bff5a8a255291f12d2613879981b',1,'QSimpleUpdater']]],
+ ['getupdater',['getUpdater',['../class_q_simple_updater.html#a0305a6c8eb9d0bf213736d1c1beb4149',1,'QSimpleUpdater']]]
];
diff --git a/doc/output/html/search/all_3.js b/doc/output/html/search/all_3.js
index 7cf7879..4ab046a 100644
--- a/doc/output/html/search/all_3.js
+++ b/doc/output/html/search/all_3.js
@@ -1,4 +1,5 @@
var searchData=
[
- ['introduction',['Introduction',['../index.html',1,'']]]
+ ['introduction',['Introduction',['../index.html',1,'']]],
+ ['installupdate',['installUpdate',['../class_downloader.html#abd39884d0586459bdd09b490913223fe',1,'Downloader']]]
];
diff --git a/doc/output/html/search/all_7.js b/doc/output/html/search/all_7.js
index a9fdd1b..ebf587b 100644
--- a/doc/output/html/search/all_7.js
+++ b/doc/output/html/search/all_7.js
@@ -1,4 +1,6 @@
var searchData=
[
- ['platformkey',['platformKey',['../class_updater.html#ad6d8a5d7b8fd9bdfde738d72c50f8bee',1,'Updater']]]
+ ['ondownloadfinished',['onDownloadFinished',['../class_downloader.html#acfd827dd6b36e82a4cc8bfbb284056e9',1,'Downloader']]],
+ ['onreply',['onReply',['../class_updater.html#ae6e6597cd5b3ee32a12fad9c6c5a64ac',1,'Updater']]],
+ ['opendownload',['openDownload',['../class_downloader.html#a0117b0dd837b46ca5cdd8b4f2ea5a552',1,'Downloader']]]
];
diff --git a/doc/output/html/search/all_8.js b/doc/output/html/search/all_8.js
index acff549..a9fdd1b 100644
--- a/doc/output/html/search/all_8.js
+++ b/doc/output/html/search/all_8.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['qsimpleupdater',['QSimpleUpdater',['../class_q_simple_updater.html',1,'']]]
+ ['platformkey',['platformKey',['../class_updater.html#ad6d8a5d7b8fd9bdfde738d72c50f8bee',1,'Updater']]]
];
diff --git a/doc/output/html/search/all_9.js b/doc/output/html/search/all_9.js
index 3ba1409..acff549 100644
--- a/doc/output/html/search/all_9.js
+++ b/doc/output/html/search/all_9.js
@@ -1,12 +1,4 @@
var searchData=
[
- ['setdownloaderenabled',['setDownloaderEnabled',['../class_updater.html#a46d6db0d853ed8400a1725df436812ee',1,'Updater::setDownloaderEnabled()'],['../class_q_simple_updater.html#a0ff15deef5af536150911353df0c44b2',1,'QSimpleUpdater::setDownloaderEnabled()']]],
- ['setmodulename',['setModuleName',['../class_updater.html#a5ac7e1a2bd65353a5fdec22689f1adf3',1,'Updater::setModuleName()'],['../class_q_simple_updater.html#a4b5e2bb2b88ab10a3c6c3a83661a2ebe',1,'QSimpleUpdater::setModuleName()']]],
- ['setmoduleversion',['setModuleVersion',['../class_updater.html#a8da70f39cc193b94c64769fc6f40dc2c',1,'Updater::setModuleVersion()'],['../class_q_simple_updater.html#a1a2a03f01c7ba081637268910fc50919',1,'QSimpleUpdater::setModuleVersion()']]],
- ['setnotifyonfinish',['setNotifyOnFinish',['../class_updater.html#a949e507fd72ec4b2565bb49ebe98a2dc',1,'Updater::setNotifyOnFinish()'],['../class_q_simple_updater.html#ad9e53f893874d54bff8c787c2f560bd2',1,'QSimpleUpdater::setNotifyOnFinish()']]],
- ['setnotifyonupdate',['setNotifyOnUpdate',['../class_updater.html#ad88b597bf4ae11a65a9c87171239ed00',1,'Updater::setNotifyOnUpdate()'],['../class_q_simple_updater.html#a4789b616743189642a023fa7704e9c00',1,'QSimpleUpdater::setNotifyOnUpdate()']]],
- ['setplatformkey',['setPlatformKey',['../class_updater.html#a840a6b061590901eae3255ba74ff7ad8',1,'Updater::setPlatformKey()'],['../class_q_simple_updater.html#af6b2713b7468a69ce3ff46074e642df8',1,'QSimpleUpdater::setPlatformKey()']]],
- ['seturl',['setUrl',['../class_updater.html#a1219e9bb1c1fb0a68d757fbc0d9b76aa',1,'Updater']]],
- ['setusecustominstallprocedures',['setUseCustomInstallProcedures',['../class_downloader.html#a26a4f889029c63c11f679284397a3285',1,'Downloader::setUseCustomInstallProcedures()'],['../class_updater.html#ac3f35326fb62b9cf8a2421d91651ad60',1,'Updater::setUseCustomInstallProcedures()'],['../class_q_simple_updater.html#a6c30dd784023264dd6ec885ec755f515',1,'QSimpleUpdater::setUseCustomInstallProcedures()']]],
- ['startdownload',['startDownload',['../class_downloader.html#a7f81027436d44ca52168b30a6eb0d379',1,'Downloader']]]
+ ['qsimpleupdater',['QSimpleUpdater',['../class_q_simple_updater.html',1,'']]]
];
diff --git a/doc/output/html/search/all_a.js b/doc/output/html/search/all_a.js
index eca292e..874944e 100644
--- a/doc/output/html/search/all_a.js
+++ b/doc/output/html/search/all_a.js
@@ -1,8 +1,4 @@
var searchData=
[
- ['updateavailable',['updateAvailable',['../class_updater.html#aec889d582692cb41875ea803db3feb35',1,'Updater']]],
- ['updater',['Updater',['../class_updater.html',1,'']]],
- ['url',['url',['../class_updater.html#a7ebf698a86619ebaadd2eb6e772f2a3d',1,'Updater']]],
- ['usecustominstallprocedures',['useCustomInstallProcedures',['../class_downloader.html#a3e7a91a3cdfa68e3bc59db0af1377f9c',1,'Downloader::useCustomInstallProcedures()'],['../class_updater.html#a7860e1643f426dc4d62cec2cdf207cd5',1,'Updater::useCustomInstallProcedures()']]],
- ['usescustominstallprocedures',['usesCustomInstallProcedures',['../class_q_simple_updater.html#af8f4cca002e820499d1fbca127095c87',1,'QSimpleUpdater']]]
+ ['round',['round',['../class_downloader.html#ae4285290c22361353a36f25e742fc829',1,'Downloader']]]
];
diff --git a/doc/output/html/search/all_b.html b/doc/output/html/search/all_b.html
new file mode 100644
index 0000000..d34a612
--- /dev/null
+++ b/doc/output/html/search/all_b.html
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+Loading...
+
+
+Searching...
+No Matches
+
+
+
+
diff --git a/doc/output/html/search/all_b.js b/doc/output/html/search/all_b.js
new file mode 100644
index 0000000..882a137
--- /dev/null
+++ b/doc/output/html/search/all_b.js
@@ -0,0 +1,13 @@
+var searchData=
+[
+ ['setdownloaderenabled',['setDownloaderEnabled',['../class_updater.html#a46d6db0d853ed8400a1725df436812ee',1,'Updater::setDownloaderEnabled()'],['../class_q_simple_updater.html#a0ff15deef5af536150911353df0c44b2',1,'QSimpleUpdater::setDownloaderEnabled()']]],
+ ['setmodulename',['setModuleName',['../class_updater.html#a5ac7e1a2bd65353a5fdec22689f1adf3',1,'Updater::setModuleName()'],['../class_q_simple_updater.html#a4b5e2bb2b88ab10a3c6c3a83661a2ebe',1,'QSimpleUpdater::setModuleName()']]],
+ ['setmoduleversion',['setModuleVersion',['../class_updater.html#a8da70f39cc193b94c64769fc6f40dc2c',1,'Updater::setModuleVersion()'],['../class_q_simple_updater.html#a1a2a03f01c7ba081637268910fc50919',1,'QSimpleUpdater::setModuleVersion()']]],
+ ['setnotifyonfinish',['setNotifyOnFinish',['../class_updater.html#a949e507fd72ec4b2565bb49ebe98a2dc',1,'Updater::setNotifyOnFinish()'],['../class_q_simple_updater.html#ad9e53f893874d54bff8c787c2f560bd2',1,'QSimpleUpdater::setNotifyOnFinish()']]],
+ ['setnotifyonupdate',['setNotifyOnUpdate',['../class_updater.html#ad88b597bf4ae11a65a9c87171239ed00',1,'Updater::setNotifyOnUpdate()'],['../class_q_simple_updater.html#a4789b616743189642a023fa7704e9c00',1,'QSimpleUpdater::setNotifyOnUpdate()']]],
+ ['setplatformkey',['setPlatformKey',['../class_updater.html#a840a6b061590901eae3255ba74ff7ad8',1,'Updater::setPlatformKey()'],['../class_q_simple_updater.html#af6b2713b7468a69ce3ff46074e642df8',1,'QSimpleUpdater::setPlatformKey()']]],
+ ['setupdateavailable',['setUpdateAvailable',['../class_updater.html#a1a38e54201eb876d14eb26fab40a7dc7',1,'Updater']]],
+ ['seturl',['setUrl',['../class_updater.html#a1219e9bb1c1fb0a68d757fbc0d9b76aa',1,'Updater']]],
+ ['setusecustominstallprocedures',['setUseCustomInstallProcedures',['../class_downloader.html#a26a4f889029c63c11f679284397a3285',1,'Downloader::setUseCustomInstallProcedures()'],['../class_updater.html#ac3f35326fb62b9cf8a2421d91651ad60',1,'Updater::setUseCustomInstallProcedures()'],['../class_q_simple_updater.html#a6c30dd784023264dd6ec885ec755f515',1,'QSimpleUpdater::setUseCustomInstallProcedures()']]],
+ ['startdownload',['startDownload',['../class_downloader.html#a7f81027436d44ca52168b30a6eb0d379',1,'Downloader']]]
+];
diff --git a/doc/output/html/search/all_c.html b/doc/output/html/search/all_c.html
new file mode 100644
index 0000000..c1ae2ca
--- /dev/null
+++ b/doc/output/html/search/all_c.html
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+Loading...
+
+
+Searching...
+No Matches
+
+
+
+
diff --git a/doc/output/html/search/all_c.js b/doc/output/html/search/all_c.js
new file mode 100644
index 0000000..93b8cf6
--- /dev/null
+++ b/doc/output/html/search/all_c.js
@@ -0,0 +1,9 @@
+var searchData=
+[
+ ['updateavailable',['updateAvailable',['../class_updater.html#aec889d582692cb41875ea803db3feb35',1,'Updater']]],
+ ['updateprogress',['updateProgress',['../class_downloader.html#a097bee5b7d904da53427c5a5cb47ce83',1,'Downloader']]],
+ ['updater',['Updater',['../class_updater.html',1,'']]],
+ ['url',['url',['../class_updater.html#a7ebf698a86619ebaadd2eb6e772f2a3d',1,'Updater']]],
+ ['usecustominstallprocedures',['useCustomInstallProcedures',['../class_downloader.html#a3e7a91a3cdfa68e3bc59db0af1377f9c',1,'Downloader::useCustomInstallProcedures()'],['../class_updater.html#a7860e1643f426dc4d62cec2cdf207cd5',1,'Updater::useCustomInstallProcedures()']]],
+ ['usescustominstallprocedures',['usesCustomInstallProcedures',['../class_q_simple_updater.html#af8f4cca002e820499d1fbca127095c87',1,'QSimpleUpdater']]]
+];
diff --git a/doc/output/html/search/functions_0.js b/doc/output/html/search/functions_0.js
index 62ebba7..1328511 100644
--- a/doc/output/html/search/functions_0.js
+++ b/doc/output/html/search/functions_0.js
@@ -1,5 +1,9 @@
var searchData=
[
+ ['calculatesizes',['calculateSizes',['../class_downloader.html#a2909b4a7cfb35f2709849ee2c95dae0e',1,'Downloader']]],
+ ['calculatetimeremaining',['calculateTimeRemaining',['../class_downloader.html#a662cc753f90f25c91721f8edeaac9b57',1,'Downloader']]],
+ ['canceldownload',['cancelDownload',['../class_downloader.html#a17209ffbd584af1a3e836e46e70d18d9',1,'Downloader']]],
['changelog',['changelog',['../class_updater.html#af6a266ddbf0b855bcee1e9f77dfe9efb',1,'Updater']]],
- ['checkforupdates',['checkForUpdates',['../class_updater.html#a4af41658f974f72c71a9463be7bba1b5',1,'Updater::checkForUpdates()'],['../class_q_simple_updater.html#a791c89568adb171a62ccd0704570b68d',1,'QSimpleUpdater::checkForUpdates()']]]
+ ['checkforupdates',['checkForUpdates',['../class_updater.html#a4af41658f974f72c71a9463be7bba1b5',1,'Updater::checkForUpdates()'],['../class_q_simple_updater.html#a791c89568adb171a62ccd0704570b68d',1,'QSimpleUpdater::checkForUpdates()']]],
+ ['compare',['compare',['../class_updater.html#a247145d494c38d15f6569bbd209380e3',1,'Updater']]]
];
diff --git a/doc/output/html/search/functions_2.js b/doc/output/html/search/functions_2.js
index 1638182..52f70eb 100644
--- a/doc/output/html/search/functions_2.js
+++ b/doc/output/html/search/functions_2.js
@@ -10,5 +10,6 @@ var searchData=
['getnotifyonfinish',['getNotifyOnFinish',['../class_q_simple_updater.html#acc540358f0d887e4945ac061667a596d',1,'QSimpleUpdater']]],
['getnotifyonupdate',['getNotifyOnUpdate',['../class_q_simple_updater.html#acdc00558a979df664910b07cb82f9b36',1,'QSimpleUpdater']]],
['getplatformkey',['getPlatformKey',['../class_q_simple_updater.html#a0f061c6945b58664c2c9f9ec26f0d87c',1,'QSimpleUpdater']]],
- ['getupdateavailable',['getUpdateAvailable',['../class_q_simple_updater.html#a6557bff5a8a255291f12d2613879981b',1,'QSimpleUpdater']]]
+ ['getupdateavailable',['getUpdateAvailable',['../class_q_simple_updater.html#a6557bff5a8a255291f12d2613879981b',1,'QSimpleUpdater']]],
+ ['getupdater',['getUpdater',['../class_q_simple_updater.html#a0305a6c8eb9d0bf213736d1c1beb4149',1,'QSimpleUpdater']]]
];
diff --git a/doc/output/html/search/functions_3.js b/doc/output/html/search/functions_3.js
index 489ea13..9e80a94 100644
--- a/doc/output/html/search/functions_3.js
+++ b/doc/output/html/search/functions_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['latestversion',['latestVersion',['../class_updater.html#a25e7f289753c6d7b4439ee3728866a48',1,'Updater']]]
+ ['installupdate',['installUpdate',['../class_downloader.html#abd39884d0586459bdd09b490913223fe',1,'Downloader']]]
];
diff --git a/doc/output/html/search/functions_4.js b/doc/output/html/search/functions_4.js
index 3ea2c9f..489ea13 100644
--- a/doc/output/html/search/functions_4.js
+++ b/doc/output/html/search/functions_4.js
@@ -1,5 +1,4 @@
var searchData=
[
- ['modulename',['moduleName',['../class_updater.html#a7d8369115126e41cdefd30004cefc46d',1,'Updater']]],
- ['moduleversion',['moduleVersion',['../class_updater.html#af32daac9bff9cb3e79798fc9a825648e',1,'Updater']]]
+ ['latestversion',['latestVersion',['../class_updater.html#a25e7f289753c6d7b4439ee3728866a48',1,'Updater']]]
];
diff --git a/doc/output/html/search/functions_5.js b/doc/output/html/search/functions_5.js
index fbf1107..3ea2c9f 100644
--- a/doc/output/html/search/functions_5.js
+++ b/doc/output/html/search/functions_5.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['notifyonfinish',['notifyOnFinish',['../class_updater.html#ad9fd2c8c3782c04289a76b1bf0b23ca0',1,'Updater']]],
- ['notifyonupdate',['notifyOnUpdate',['../class_updater.html#abefc7aae1333458ab03d50aec9b58581',1,'Updater']]]
+ ['modulename',['moduleName',['../class_updater.html#a7d8369115126e41cdefd30004cefc46d',1,'Updater']]],
+ ['moduleversion',['moduleVersion',['../class_updater.html#af32daac9bff9cb3e79798fc9a825648e',1,'Updater']]]
];
diff --git a/doc/output/html/search/functions_6.js b/doc/output/html/search/functions_6.js
index a9fdd1b..fbf1107 100644
--- a/doc/output/html/search/functions_6.js
+++ b/doc/output/html/search/functions_6.js
@@ -1,4 +1,5 @@
var searchData=
[
- ['platformkey',['platformKey',['../class_updater.html#ad6d8a5d7b8fd9bdfde738d72c50f8bee',1,'Updater']]]
+ ['notifyonfinish',['notifyOnFinish',['../class_updater.html#ad9fd2c8c3782c04289a76b1bf0b23ca0',1,'Updater']]],
+ ['notifyonupdate',['notifyOnUpdate',['../class_updater.html#abefc7aae1333458ab03d50aec9b58581',1,'Updater']]]
];
diff --git a/doc/output/html/search/functions_7.js b/doc/output/html/search/functions_7.js
index 3ba1409..ebf587b 100644
--- a/doc/output/html/search/functions_7.js
+++ b/doc/output/html/search/functions_7.js
@@ -1,12 +1,6 @@
var searchData=
[
- ['setdownloaderenabled',['setDownloaderEnabled',['../class_updater.html#a46d6db0d853ed8400a1725df436812ee',1,'Updater::setDownloaderEnabled()'],['../class_q_simple_updater.html#a0ff15deef5af536150911353df0c44b2',1,'QSimpleUpdater::setDownloaderEnabled()']]],
- ['setmodulename',['setModuleName',['../class_updater.html#a5ac7e1a2bd65353a5fdec22689f1adf3',1,'Updater::setModuleName()'],['../class_q_simple_updater.html#a4b5e2bb2b88ab10a3c6c3a83661a2ebe',1,'QSimpleUpdater::setModuleName()']]],
- ['setmoduleversion',['setModuleVersion',['../class_updater.html#a8da70f39cc193b94c64769fc6f40dc2c',1,'Updater::setModuleVersion()'],['../class_q_simple_updater.html#a1a2a03f01c7ba081637268910fc50919',1,'QSimpleUpdater::setModuleVersion()']]],
- ['setnotifyonfinish',['setNotifyOnFinish',['../class_updater.html#a949e507fd72ec4b2565bb49ebe98a2dc',1,'Updater::setNotifyOnFinish()'],['../class_q_simple_updater.html#ad9e53f893874d54bff8c787c2f560bd2',1,'QSimpleUpdater::setNotifyOnFinish()']]],
- ['setnotifyonupdate',['setNotifyOnUpdate',['../class_updater.html#ad88b597bf4ae11a65a9c87171239ed00',1,'Updater::setNotifyOnUpdate()'],['../class_q_simple_updater.html#a4789b616743189642a023fa7704e9c00',1,'QSimpleUpdater::setNotifyOnUpdate()']]],
- ['setplatformkey',['setPlatformKey',['../class_updater.html#a840a6b061590901eae3255ba74ff7ad8',1,'Updater::setPlatformKey()'],['../class_q_simple_updater.html#af6b2713b7468a69ce3ff46074e642df8',1,'QSimpleUpdater::setPlatformKey()']]],
- ['seturl',['setUrl',['../class_updater.html#a1219e9bb1c1fb0a68d757fbc0d9b76aa',1,'Updater']]],
- ['setusecustominstallprocedures',['setUseCustomInstallProcedures',['../class_downloader.html#a26a4f889029c63c11f679284397a3285',1,'Downloader::setUseCustomInstallProcedures()'],['../class_updater.html#ac3f35326fb62b9cf8a2421d91651ad60',1,'Updater::setUseCustomInstallProcedures()'],['../class_q_simple_updater.html#a6c30dd784023264dd6ec885ec755f515',1,'QSimpleUpdater::setUseCustomInstallProcedures()']]],
- ['startdownload',['startDownload',['../class_downloader.html#a7f81027436d44ca52168b30a6eb0d379',1,'Downloader']]]
+ ['ondownloadfinished',['onDownloadFinished',['../class_downloader.html#acfd827dd6b36e82a4cc8bfbb284056e9',1,'Downloader']]],
+ ['onreply',['onReply',['../class_updater.html#ae6e6597cd5b3ee32a12fad9c6c5a64ac',1,'Updater']]],
+ ['opendownload',['openDownload',['../class_downloader.html#a0117b0dd837b46ca5cdd8b4f2ea5a552',1,'Downloader']]]
];
diff --git a/doc/output/html/search/functions_8.js b/doc/output/html/search/functions_8.js
index 8f705d5..a9fdd1b 100644
--- a/doc/output/html/search/functions_8.js
+++ b/doc/output/html/search/functions_8.js
@@ -1,7 +1,4 @@
var searchData=
[
- ['updateavailable',['updateAvailable',['../class_updater.html#aec889d582692cb41875ea803db3feb35',1,'Updater']]],
- ['url',['url',['../class_updater.html#a7ebf698a86619ebaadd2eb6e772f2a3d',1,'Updater']]],
- ['usecustominstallprocedures',['useCustomInstallProcedures',['../class_downloader.html#a3e7a91a3cdfa68e3bc59db0af1377f9c',1,'Downloader::useCustomInstallProcedures()'],['../class_updater.html#a7860e1643f426dc4d62cec2cdf207cd5',1,'Updater::useCustomInstallProcedures()']]],
- ['usescustominstallprocedures',['usesCustomInstallProcedures',['../class_q_simple_updater.html#af8f4cca002e820499d1fbca127095c87',1,'QSimpleUpdater']]]
+ ['platformkey',['platformKey',['../class_updater.html#ad6d8a5d7b8fd9bdfde738d72c50f8bee',1,'Updater']]]
];
diff --git a/doc/output/html/search/functions_9.html b/doc/output/html/search/functions_9.html
new file mode 100644
index 0000000..1d34583
--- /dev/null
+++ b/doc/output/html/search/functions_9.html
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+Loading...
+
+
+Searching...
+No Matches
+
+
+
+
diff --git a/doc/output/html/search/functions_9.js b/doc/output/html/search/functions_9.js
new file mode 100644
index 0000000..874944e
--- /dev/null
+++ b/doc/output/html/search/functions_9.js
@@ -0,0 +1,4 @@
+var searchData=
+[
+ ['round',['round',['../class_downloader.html#ae4285290c22361353a36f25e742fc829',1,'Downloader']]]
+];
diff --git a/doc/output/html/search/functions_a.html b/doc/output/html/search/functions_a.html
new file mode 100644
index 0000000..8eb5e56
--- /dev/null
+++ b/doc/output/html/search/functions_a.html
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+Loading...
+
+
+Searching...
+No Matches
+
+
+
+
diff --git a/doc/output/html/search/functions_a.js b/doc/output/html/search/functions_a.js
new file mode 100644
index 0000000..882a137
--- /dev/null
+++ b/doc/output/html/search/functions_a.js
@@ -0,0 +1,13 @@
+var searchData=
+[
+ ['setdownloaderenabled',['setDownloaderEnabled',['../class_updater.html#a46d6db0d853ed8400a1725df436812ee',1,'Updater::setDownloaderEnabled()'],['../class_q_simple_updater.html#a0ff15deef5af536150911353df0c44b2',1,'QSimpleUpdater::setDownloaderEnabled()']]],
+ ['setmodulename',['setModuleName',['../class_updater.html#a5ac7e1a2bd65353a5fdec22689f1adf3',1,'Updater::setModuleName()'],['../class_q_simple_updater.html#a4b5e2bb2b88ab10a3c6c3a83661a2ebe',1,'QSimpleUpdater::setModuleName()']]],
+ ['setmoduleversion',['setModuleVersion',['../class_updater.html#a8da70f39cc193b94c64769fc6f40dc2c',1,'Updater::setModuleVersion()'],['../class_q_simple_updater.html#a1a2a03f01c7ba081637268910fc50919',1,'QSimpleUpdater::setModuleVersion()']]],
+ ['setnotifyonfinish',['setNotifyOnFinish',['../class_updater.html#a949e507fd72ec4b2565bb49ebe98a2dc',1,'Updater::setNotifyOnFinish()'],['../class_q_simple_updater.html#ad9e53f893874d54bff8c787c2f560bd2',1,'QSimpleUpdater::setNotifyOnFinish()']]],
+ ['setnotifyonupdate',['setNotifyOnUpdate',['../class_updater.html#ad88b597bf4ae11a65a9c87171239ed00',1,'Updater::setNotifyOnUpdate()'],['../class_q_simple_updater.html#a4789b616743189642a023fa7704e9c00',1,'QSimpleUpdater::setNotifyOnUpdate()']]],
+ ['setplatformkey',['setPlatformKey',['../class_updater.html#a840a6b061590901eae3255ba74ff7ad8',1,'Updater::setPlatformKey()'],['../class_q_simple_updater.html#af6b2713b7468a69ce3ff46074e642df8',1,'QSimpleUpdater::setPlatformKey()']]],
+ ['setupdateavailable',['setUpdateAvailable',['../class_updater.html#a1a38e54201eb876d14eb26fab40a7dc7',1,'Updater']]],
+ ['seturl',['setUrl',['../class_updater.html#a1219e9bb1c1fb0a68d757fbc0d9b76aa',1,'Updater']]],
+ ['setusecustominstallprocedures',['setUseCustomInstallProcedures',['../class_downloader.html#a26a4f889029c63c11f679284397a3285',1,'Downloader::setUseCustomInstallProcedures()'],['../class_updater.html#ac3f35326fb62b9cf8a2421d91651ad60',1,'Updater::setUseCustomInstallProcedures()'],['../class_q_simple_updater.html#a6c30dd784023264dd6ec885ec755f515',1,'QSimpleUpdater::setUseCustomInstallProcedures()']]],
+ ['startdownload',['startDownload',['../class_downloader.html#a7f81027436d44ca52168b30a6eb0d379',1,'Downloader']]]
+];
diff --git a/doc/output/html/search/functions_b.html b/doc/output/html/search/functions_b.html
new file mode 100644
index 0000000..fa9cff5
--- /dev/null
+++ b/doc/output/html/search/functions_b.html
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+Loading...
+
+
+Searching...
+No Matches
+
+
+
+
diff --git a/doc/output/html/search/functions_b.js b/doc/output/html/search/functions_b.js
new file mode 100644
index 0000000..a07a48b
--- /dev/null
+++ b/doc/output/html/search/functions_b.js
@@ -0,0 +1,8 @@
+var searchData=
+[
+ ['updateavailable',['updateAvailable',['../class_updater.html#aec889d582692cb41875ea803db3feb35',1,'Updater']]],
+ ['updateprogress',['updateProgress',['../class_downloader.html#a097bee5b7d904da53427c5a5cb47ce83',1,'Downloader']]],
+ ['url',['url',['../class_updater.html#a7ebf698a86619ebaadd2eb6e772f2a3d',1,'Updater']]],
+ ['usecustominstallprocedures',['useCustomInstallProcedures',['../class_downloader.html#a3e7a91a3cdfa68e3bc59db0af1377f9c',1,'Downloader::useCustomInstallProcedures()'],['../class_updater.html#a7860e1643f426dc4d62cec2cdf207cd5',1,'Updater::useCustomInstallProcedures()']]],
+ ['usescustominstallprocedures',['usesCustomInstallProcedures',['../class_q_simple_updater.html#af8f4cca002e820499d1fbca127095c87',1,'QSimpleUpdater']]]
+];
diff --git a/doc/output/html/search/searchdata.js b/doc/output/html/search/searchdata.js
index 809f4cf..591fe49 100644
--- a/doc/output/html/search/searchdata.js
+++ b/doc/output/html/search/searchdata.js
@@ -1,8 +1,8 @@
var indexSectionsWithContent =
{
- 0: "cdgilmnpqsu",
+ 0: "cdgilmnopqrsu",
1: "dqu",
- 2: "cdglmnpsu",
+ 2: "cdgilmnoprsu",
3: "i"
};