Subversion Repositories svn1

Rev

Rev 104 | 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>
5
 
6
namespace Ui {
7
    class QmConfWinners;
8
}
9
 
10
class QmConfWinners : public QWidget {
11
    Q_OBJECT
12
public:
13
    QmConfWinners(QWidget *parent = 0);
14
    ~QmConfWinners();
104 - 15
    void populate(void);
103 - 16
 
17
protected:
18
    void changeEvent(QEvent *e);
181 - 19
    bool        dirty;                               // Unsaved changes
20
    bool        populating;
103 - 21
 
22
private:
23
    Ui::QmConfWinners *ui;
104 - 24
 
25
public slots:
26
    void save(void);
27
    void cancel(void);
181 - 28
    void changed(void);
29
    void updateChanged(bool dirty);
104 - 30
 
103 - 31
};
32
 
33
#endif // QMCONFWINNERS_H