OSCAR-code/sleepyhead/UpdaterWindow.h

109 lines
2.8 KiB
C
Raw Normal View History

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sts=4 et sw=4 tw=99:
*
* UpdaterWindow
*
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of the Linux
* distribution for more details. */
#ifndef UPDATEWINDOW_H
#define UPDATEWINDOW_H
#include <QSystemTrayIcon>
#include <QNetworkAccessManager>
#include <QTableWidgetItem>
#include <QMenu>
#include <QMainWindow>
2011-12-17 10:36:28 +00:00
#include <QUrl>
#include "version.h"
#include "updateparser.h"
namespace Ui {
class UpdaterWindow;
}
/*! \enum RequestMode
\brief Used in replyFinished() to differentiate the current update task.
*/
2011-12-17 06:59:40 +00:00
enum RequestMode { RM_None, RM_CheckUpdates, RM_GetFile };
/*! \class UpdaterWindow
2011-12-19 06:46:31 +00:00
\brief Auto-Update Module for SleepyHead
This class handles the complete Auto-Update procedure for SleepyHead, it does the network checks,
parses the update.xml from SourceForge host, checks for any new updates, and provides the UI
and mechanisms to download and replace the binaries according to what is specified in update.xml.
*/
class UpdaterWindow : public QMainWindow
{
Q_OBJECT
public:
explicit UpdaterWindow(QWidget *parent = 0);
~UpdaterWindow();
//! Start the
void checkForUpdates();
/*! \fn ParseUpdateXML(QIODevice * dev)
\brief Parses the update.xml from either QFile or QNetworkReply source
*/
void ParseUpdateXML(QIODevice * dev);
protected slots:
2011-12-19 06:46:31 +00:00
//! \brief Network reply completed
void replyFinished(QNetworkReply * reply);
2011-12-19 06:46:31 +00:00
//! \brief Update the progress bars as data is received
void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
2011-12-19 06:46:31 +00:00
//! \brief Save incomming data
void dataReceived();
2011-12-19 06:46:31 +00:00
//! \brief Request a file to download
void requestFile();
2011-12-19 06:46:31 +00:00
//! \brief Request the update.xml file
void downloadUpdateXML();
private slots:
2011-12-19 06:46:31 +00:00
//! \brief Just close the Updater window
void on_CloseButton_clicked();
2011-12-19 06:46:31 +00:00
//! \brief Start processing the download que, and applying the updates
void on_upgradeButton_clicked();
2011-12-19 06:46:31 +00:00
//! \brief Selects the next file in the download queue
void upgradeNext();
2011-12-19 06:46:31 +00:00
//! \brief Click on finished, restart if app has been upgraded, otherwise just close the window.
void on_FinishedButton_clicked();
private:
2011-12-19 06:46:31 +00:00
//! \brief Holds the results of parsing the update.xml file
UpdateParser updateparser;
Ui::UpdaterWindow *ui;
2011-12-19 06:46:31 +00:00
RequestMode requestmode;
QTime dltime;
2011-12-19 06:46:31 +00:00
Update *update;
Release *release;
QFile file;
QNetworkAccessManager *netmanager;
QNetworkReply * reply;
QList<Update *> updates;
int current_row;
bool success;
QUrl update_url; // for update.xml redirects..
};
#endif // UPDATEWINDOW_H