This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
YASMIN/ui/debug/InfoWidget.h
2016-09-28 12:16:45 +02:00

36 lines
541 B
C++

#ifndef INFOWIDGET_H
#define INFOWIDGET_H
#include <QWidget>
class QLabel;
class InfoWidget : public QWidget {
Q_OBJECT
private:
QLabel* lblActivity;
QLabel* lblFilterTime;
QLabel* lblMapViewTime;
QLabel* lblLog;
public:
explicit InfoWidget(QWidget *parent = 0);
Q_INVOKABLE void showActivity(const QString& act);
Q_INVOKABLE void showFilterTime(const QString& act);
Q_INVOKABLE void showMapViewTime(const QString& act);
Q_INVOKABLE void showLog(const QString& info);
signals:
public slots:
};
#endif // INFOWIDGET_H