2025-03-17 16:53:15 +08:00
|
|
|
|
#ifndef CALARMDEVICETREEVIEW_H
|
2025-03-14 17:05:48 +08:00
|
|
|
|
#define CALARMDEVICETREEVIEW_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <QTreeView>
|
|
|
|
|
|
|
|
|
|
|
|
class CAlarmDeviceTreeView : public QTreeView
|
|
|
|
|
|
{
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
|
|
|
|
CAlarmDeviceTreeView(QWidget *parent = Q_NULLPTR);
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
void contextMenuEvent(QContextMenuEvent *event);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // CALARMDEVICETREEVIEW_H
|