keepwarmpopup.h 466 Bytes
#ifndef KEEPWARMPOPUP_H
#define KEEPWARMPOPUP_H

#include <QWidget>
#include <QTime>
#include <QTimer>

namespace Ui {
class KeepWarmPopup;
}

class KeepWarmPopup : public QWidget
{
    Q_OBJECT

public:
    explicit KeepWarmPopup(QWidget *parent = 0);
    ~KeepWarmPopup();

private:
    Ui::KeepWarmPopup *ui;

    QTime startTime;
    QTimer updateViewTimer;


private slots:
    void updateView();
    void on_stopButton_clicked();
};

#endif // KEEPWARMPOPUP_H