summaryrefslogtreecommitdiffhomepage
path: root/gui/process-detector-fancy-table.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-08-22 13:29:34 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-08-23 00:05:15 +0200
commiteb7e13da139dc0878e8279eeac704206a220d23a (patch)
tree4ca81c30ec5c13387b034686bb86396507cfdf2a /gui/process-detector-fancy-table.hpp
parent7c4b38428039673b79eb5ca058c707c6645ebff9 (diff)
gui/process-detector: fix circular include
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);
+};