1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef BEETVIEW_H #define BEETVIEW_H #include <QTreeView> class BeetView : public QTreeView { Q_OBJECT public: explicit BeetView(QWidget *parent = 0); protected: virtual void contextMenuEvent(QContextMenuEvent *e); }; #endif // BEETVIEW_H