mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 17:33:05 +00:00
22 lines
328 B
C++
22 lines
328 B
C++
#ifndef INFORMATIONWIDGET_H
|
|
#define INFORMATIONWIDGET_H
|
|
|
|
#include <QWidget>
|
|
#include <QLabel>
|
|
|
|
class InformationWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit InformationWidget(QWidget *parent = nullptr);
|
|
|
|
private slots:
|
|
void refreshInfo();
|
|
|
|
private:
|
|
QLabel *m_infoLabel;
|
|
};
|
|
|
|
#endif // INFORMATIONWIDGET_H
|