mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 19:22:35 +02:00
37 lines
630 B
C++
Executable file
37 lines
630 B
C++
Executable file
#ifndef FVUPDATEWINDOW_H
|
|
#define FVUPDATEWINDOW_H
|
|
|
|
#if QT_VERSION >= 0x050000
|
|
#include <QtWidgets/QWidget>
|
|
#else
|
|
#include <QWidget>
|
|
#endif
|
|
|
|
class QGraphicsScene;
|
|
|
|
namespace Ui {
|
|
class FvUpdateWindow;
|
|
}
|
|
|
|
class FvUpdateWindow : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit FvUpdateWindow(QWidget *parent, bool skipVersionAllowed, bool remindLaterAllowed);
|
|
~FvUpdateWindow();
|
|
|
|
// Update the current update proposal from FvUpdater
|
|
bool UpdateWindowWithCurrentProposedUpdate();
|
|
|
|
void closeEvent(QCloseEvent* event);
|
|
|
|
private:
|
|
Ui::FvUpdateWindow* m_ui;
|
|
QGraphicsScene* m_appIconScene;
|
|
|
|
};
|
|
|
|
#endif // FVUPDATEWINDOW_H
|
|
|
|
|