Subversion Repositories svn1

Rev

Rev 290 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 1
#ifndef QMCONFWINNERS_H
2
#define QMCONFWINNERS_H
3
 
4
#include <QWidget>
290 david 5
#include <QTableWidget>
6
#include <QPushButton>
103 - 7
 
8
namespace Ui {
9
    class QmConfWinners;
10
}
11
 
12
class QmConfWinners : public QWidget {
13
    Q_OBJECT
14
public:
15
    QmConfWinners(QWidget *parent = 0);
16
    ~QmConfWinners();
104 - 17
    void populate(void);
103 - 18
 
19
protected:
181 - 20
    bool        dirty;                               // Unsaved changes
21
    bool        populating;
103 - 22
 
23
private:
290 david 24
    QTableWidget    *tableWidget;
25
    QPushButton     *pushButtonRestore;
26
    QPushButton     *pushButtonSave;
104 - 27
 
290 david 28
 
104 - 29
public slots:
30
    void save(void);
31
    void cancel(void);
181 - 32
    void changed(void);
33
    void updateChanged(bool dirty);
104 - 34
 
103 - 35
};
36
 
37
#endif // QMCONFWINNERS_H