summaryrefslogtreecommitdiffhomepage
path: root/gui/process-detector-fancy-table.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/process-detector-fancy-table.hpp')
-rw-r--r--gui/process-detector-fancy-table.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/gui/process-detector-fancy-table.hpp b/gui/process-detector-fancy-table.hpp
new file mode 100644
index 00000000..48ea8006
--- /dev/null
+++ b/gui/process-detector-fancy-table.hpp
@@ -0,0 +1,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);
+};