YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
customtree.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: LGPL-2.1-or-later
4 */
5
6#ifndef CUSTOMTREE_H
7#define CUSTOMTREE_H
8
9#include <QTreeWidget>
10#include <QMouseEvent>
11#include <yarp/conf/compiler.h>
12
13class CustomTree : public QTreeWidget
14{
15 Q_OBJECT
16public:
17 explicit CustomTree(QWidget *parent = 0);
18
19protected:
20 void mousePressEvent(QMouseEvent *event) override;
21
22signals:
23
24public slots:
25
26};
27
28#endif // CUSTOMTREE_H
void mousePressEvent(QMouseEvent *event) override