YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
loadingwidget.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 LOADINGWIDGET_H
7#define LOADINGWIDGET_H
8
9#include <QDialog>
10#include <QTimer>
11namespace Ui {
12class LoadingWidget;
13}
14
15class LoadingWidget : public QDialog
16{
17 Q_OBJECT
18
19public:
20 explicit LoadingWidget(QWidget *parent = 0);
22
23 int start();
24 void stop();
25
26private:
27 Ui::LoadingWidget *ui;
28 QTimer splashTimer;
29 int counter;
30
31
32private slots:
33 void onSplashTimer();
34};
35
36#endif // LOADINGWIDGET_H
Definition aboutdlg.h:11