initial import
[buliscores] / src / scoretable.h
1 #ifndef SCORETABLE_H
2 #define SCORETABLE_H
3
4 #include <QTableView>
5
6 class ScoreTable : public QTableView
7 {
8     Q_OBJECT
9 public:
10     explicit ScoreTable(QWidget *parent = 0);
11     QSize sizeHint() const;
12
13 signals:
14
15 protected slots:
16     void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
17
18 };
19
20 #endif // SCORETABLE_H