Introduced own version of QTableView called PgLabTableView that has some other defaults.

This commit is contained in:
eelke 2018-12-29 17:54:54 +01:00
parent f0ffcf4abd
commit f6ea2ce0a6
9 changed files with 42 additions and 32 deletions

12
pglab/PgLabTableView.h Normal file
View file

@ -0,0 +1,12 @@
#ifndef PGLABTABLEVIEW_H
#define PGLABTABLEVIEW_H
#include <QTableView>
class PgLabTableView : public QTableView {
Q_OBJECT
public:
explicit PgLabTableView(QWidget *parent = nullptr);
};
#endif // PGLABTABLEVIEW_H