You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
755 B
46 lines
755 B
#pragma once
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
#include <QLabel>
|
|
#include <QPushButton>
|
|
#include <QVBoxLayout>
|
|
|
|
#include "common/params.h"
|
|
|
|
class AbstractAlert : public QFrame {
|
|
Q_OBJECT
|
|
|
|
protected:
|
|
AbstractAlert(bool hasRebootBtn, QWidget *parent = nullptr);
|
|
|
|
QPushButton *snooze_btn;
|
|
QVBoxLayout *scrollable_layout;
|
|
Params params;
|
|
|
|
signals:
|
|
void dismiss();
|
|
};
|
|
|
|
class UpdateAlert : public AbstractAlert {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
UpdateAlert(QWidget *parent = 0);
|
|
bool refresh();
|
|
|
|
private:
|
|
QLabel *releaseNotes = nullptr;
|
|
};
|
|
|
|
class OffroadAlert : public AbstractAlert {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OffroadAlert(QWidget *parent = 0) : AbstractAlert(false, parent) {}
|
|
int refresh();
|
|
|
|
private:
|
|
std::map<std::string, QLabel*> alerts;
|
|
};
|
|
|