2016-03-20 08:56:51 +00:00
|
|
|
#ifndef TABLE_H
|
|
|
|
#define TABLE_H
|
|
|
|
|
|
|
|
#include <QTableWidget>
|
|
|
|
|
|
|
|
class Table : public QTableWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit Table(QWidget *parent = 0);
|
|
|
|
~Table();
|
|
|
|
|
|
|
|
protected:
|
2016-03-20 09:17:59 +00:00
|
|
|
void paintEvent(QPaintEvent *event) Q_DECL_OVERRIDE;
|
2016-03-20 08:56:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TABLE_H
|