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