blob: 380ae5ffa856ae2b7b52694ce3d7a690cbecc645 (
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 FSView : public QTreeView {
Q_OBJECT
public:
enum { InvisibleAction };
explicit FSView(QWidget *parent = nullptr);
protected:
virtual void contextMenuEvent(QContextMenuEvent *e);
};
#endif // FSVIEW_H
|