preheatpopup.h 462 Bytes
#ifndef PREHEATPOPUP_H
#define PREHEATPOPUP_H

#include <QWidget>

#include "oven.h"

namespace Ui {
class PreheatPopup;
}

class PreheatPopup : public QWidget
{
    Q_OBJECT

public:
    explicit PreheatPopup(QWidget *parent = 0, Oven *oven = 0);
    ~PreheatPopup();

private slots:
    void updateView();

    void on_closeButton_clicked();
    void on_closeButton_2_clicked();

private:
    Ui::PreheatPopup *ui;
    Oven *oven;
};

#endif // PREHEATPOPUP_H