programmingnamepopup.h 543 Bytes
#ifndef PROGRAMMINGNAMEPOPUP_H
#define PROGRAMMINGNAMEPOPUP_H

#include <QWidget>

#include "cookprogram.h"

namespace Ui {
class ProgrammingNamePopup;
}

class ProgrammingNamePopup : public QWidget
{
    Q_OBJECT

public:
    explicit ProgrammingNamePopup(QWidget *parent, CookRecord record);
    ~ProgrammingNamePopup();

private slots:
    void on_okButton_clicked();

    void on_cancelButton_clicked();

private:
    Ui::ProgrammingNamePopup *ui;

    CookRecord record;

signals:
    void changed();
};

#endif // PROGRAMMINGNAMEPOPUP_H