blob: a1ff36bb4b71107caba106ed8d060d1fd4069e52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|