YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
logwidget.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 LOGWIDGET_H
7#define LOGWIDGET_H
8
9#include <QListWidget>
10#include <QAction>
11#include <QMenu>
12class LogWidget : public QListWidget
13{
14 Q_OBJECT
15public:
16 explicit LogWidget(QWidget *parent = 0);
17
18private:
19 QMenu *contextMenu;
20 QAction *clearLogAction;
21 QAction *saveLogAction;
22signals:
23
24private slots:
25 void onClearLog();
26 void onSaveLog();
27
28};
29
30#endif // LOGWIDGET_H