2025-03-14 15:07:39 +08:00
|
|
|
#ifndef CTRENDTREEVIEW_H
|
|
|
|
|
#define CTRENDTREEVIEW_H
|
|
|
|
|
|
|
|
|
|
#include <QTreeView>
|
|
|
|
|
|
|
|
|
|
class CTrendTreeView : public QTreeView
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
CTrendTreeView(QWidget *parent = Q_NULLPTR);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void contextMenuEvent(QContextMenuEvent *event);
|
|
|
|
|
void mouseDoubleClickEvent(QMouseEvent *event);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // CTRENDTREEVIEW_H
|