summaryrefslogtreecommitdiffstats
path: root/smview.h
diff options
context:
space:
mode:
Diffstat (limited to 'smview.h')
-rw-r--r--smview.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/smview.h b/smview.h
new file mode 100644
index 0000000..a1ff36b
--- /dev/null
+++ b/smview.h
@@ -0,0 +1,16 @@
+#ifndef FSVIEW_H
+#define FSVIEW_H
+
+#include <QTreeView>
+
+class SmView : public QTreeView {
+ Q_OBJECT
+ public:
+ enum { InvisibleAction };
+ explicit SmView(QWidget *parent = nullptr);
+
+ protected:
+ virtual void contextMenuEvent(QContextMenuEvent *e);
+};
+
+#endif // FSVIEW_H