summarylogtreecommitdiffstats
path: root/tableshow.h
blob: bc5c5af5ed29e90428a903e980bae7ca704c5455 (plain)
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
#ifndef TABLESHOW_H
#define TABLESHOW_H

#include <QWidget>
#include <QPalette>
#include <QColor>
#include <QBrush>
#include <QStringList>
#include <QList>

namespace Ui {
class TableShow;
}

class TableShow : public QWidget
{
    Q_OBJECT

public:
    explicit TableShow(QWidget *parent = nullptr);
    ~TableShow();

private:
    Ui::TableShow *ui;
public slots:
    void updateTableData(QList<QStringList>& data_table_to_view);
};

#endif // TABLESHOW_H