-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmytableview.h
46 lines (33 loc) · 1.05 KB
/
mytableview.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef MYTABLEVIEW_H
#define MYTABLEVIEW_H
#include <QDebug>
#include "tablemodel.h"
#include <QTableView>
#include <QAbstractTableModel>
#include <QWidget>
class mytableview : public QTableView//QWidget
{
Q_OBJECT
private:
// QTableView tableView;
public:
explicit mytableview(QWidget *parent = nullptr);
signals:
void dataChanged(const QModelIndex&);
public slots:
void fill_table(TableModel& model){
TableModel emptymodel(0,0);
this->setModel(&emptymodel);
this->setModel(&model);
this->resizeColumnsToContents();
this->resizeRowsToContents();
this->reset();
this->repaint();
// qDebug()<<"table";
QObject::connect(&model,SIGNAL(dataChanged(const QModelIndex&,const QModelIndex&)),this, SLOT(updateData(const QModelIndex &, const QModelIndex &)));
}
void updateData(const QModelIndex &index_1, const QModelIndex &index_2){
emit dataChanged(index_1);
}
};
#endif // MYTABLEVIEW_H