Subversion Repositories svn1-original

Rev

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

Rev Author Line No. Line
107 - 1
#ifndef QMCONFWINNERS_H
2
#define QMCONFWINNERS_H
3
 
4
#include <QWidget>
294 david 5
#include <QTableWidget>
6
#include <QPushButton>
107 - 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();
108 - 17
    void populate(void);
107 - 18
 
19
protected:
185 - 20
    bool        dirty;                               // Unsaved changes
21
    bool        populating;
107 - 22
 
23
private:
294 david 24
    QTableWidget    *tableWidget;
25
    QPushButton     *pushButtonRestore;
26
    QPushButton     *pushButtonSave;
108 - 27
 
294 david 28
 
108 - 29
public slots:
30
    void save(void);
31
    void cancel(void);
185 - 32
    void changed(void);
33
    void updateChanged(bool dirty);
108 - 34
 
107 - 35
};
36
 
37
#endif // QMCONFWINNERS_H