src/EditYeast.h

changeset 25
a9da2744609e
child 26
dfc4df8f9632
equal deleted inserted replaced
24:684c6e74cc1b 25:a9da2744609e
1 #ifndef _EDITYEAST_H
2 #define _EDITYEAST_H
3
4 #include <QDialog>
5
6
7 namespace Ui {
8 class EditYeast;
9 }
10
11 class EditYeast : public QDialog
12 {
13 Q_OBJECT
14
15 signals:
16 void entry_changed();
17
18 public:
19 explicit EditYeast(int id, QWidget *parent = 0);
20 ~EditYeast();
21
22 private slots:
23 void on_saveButton_clicked();
24 void on_quitButton_clicked();
25 void on_deleteButton_clicked();
26 void is_changed();
27 void temp_lo_changed();
28 void temp_hi_changed();
29
30 private:
31 Ui::EditYeast *ui;
32 int recno;
33 bool textIsChanged = false;
34
35 void WindowTitle();
36 void SetForm(int form);
37 };
38
39 #endif

mercurial