/usr/include/xtuple/common/checkForUpdates.h is in libxtuplecommon-dev 4.7.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | /*
* This file is part of the xTuple ERP: PostBooks Edition, a free and
* open source Enterprise Resource Planning software suite,
* Copyright (c) 1999-2014 by OpenMFG LLC, d/b/a xTuple.
* It is licensed to you under the Common Public Attribution License
* version 1.0, the full text of which (including xTuple-specific Exhibits)
* is available at www.xtuple.com/CPAL. By using this software, you agree
* to be bound by its terms.
*/
#ifndef CHECKFORUPDATES_H
#define CHECKFORUPDATES_H
#include <QDialog>
#include <QNetworkAccessManager>
#include "tmp/ui_checkForUpdates.h"
class QFile;
class QNetworkReply;
class QProgressDialog;
class QPushButton;
class checkForUpdatesPrivate;
class checkForUpdates : public QDialog, public Ui::checkForUpdates
{
Q_OBJECT
public:
checkForUpdates(QWidget* parent = 0, const char* name = 0, bool modal = false, Qt::WFlags fl = 0);
~checkForUpdates();
QPushButton* _ok;
QPushButton* _cancel;
QPushButton* _ignore;
public slots:
void downloadButtonPressed();
void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
void downloadFinished();
void downloadReadyRead();
void cancelDownload();
void startUpdate();
protected slots:
virtual void languageChange();
private:
checkForUpdatesPrivate *_private;
QNetworkAccessManager manager;
QFile *file;
QProgressDialog *progressDialog;
QNetworkReply *reply;
bool downloadRequestAborted;
qint64 filesize;
};
#endif // CHECKFORUPDATES_H
|