Rev 381 | Blame | Compare with Previous | Last modification | View Log | RSS feed
#ifndef QMCONFWINNERS_H#define QMCONFWINNERS_H#include <QWidget>#include <QTableWidget>#include <QPushButton>namespace Ui {class QmConfWinners;}class QmConfWinners : public QWidget {Q_OBJECTpublic:QmConfWinners(QWidget *parent = 0);~QmConfWinners();void populate(void);protected:bool dirty; // Unsaved changesbool populating;private:QTableWidget *tableWidget;QPushButton *pushButtonRestore;QPushButton *pushButtonSave;public slots:void save(void);void cancel(void);void changed(void);void updateChanged(bool dirty);};#endif // QMCONFWINNERS_H