summaryrefslogtreecommitdiffhomepage
path: root/gui/process-detector-fancy-table.hpp
blob: 48ea8006b8f99bf436a20d42c6a6ceec8b17e033 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <QObject>
#include <QWidget>
#include <QTableWidget>

class FancyTable final : public QTableWidget
{
    Q_OBJECT
public:
    void resizeEvent(QResizeEvent* e) override;
public:
    FancyTable(QWidget* parent = nullptr);
};