forked from openkylin/quarkai
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
/*
|
|
* Copyright (C) 2013 ~ 2018 National University of Defense Technology(NUDT) & Tianjin Kylin Ltd.
|
|
*
|
|
* Authors:
|
|
* Kobe Lee xiangli@ubuntukylin.com/kobe24_lixiang@126.com
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef CPURATEWIDGET_H
|
|
#define CPURATEWIDGET_H
|
|
|
|
#include <QWidget>
|
|
#include <QLabel>
|
|
#include <QHBoxLayout>
|
|
#include <QVBoxLayout>
|
|
|
|
class CpuBallWidget;
|
|
|
|
class CpuRateWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CpuRateWidget(QWidget *parent = 0);
|
|
~CpuRateWidget();
|
|
|
|
void refreshData(double cpu);
|
|
void startTimer();
|
|
void stopTimer();
|
|
|
|
void initWidgets();
|
|
|
|
public slots:
|
|
void onUpdateCpuPercent(double value);
|
|
|
|
private:
|
|
QLabel *m_cpuRateTitle = nullptr;
|
|
QLabel *m_cpuRateText = nullptr;
|
|
QLabel *m_cpuIdleRateTitle = nullptr;
|
|
QLabel *m_cpuIdleRateText = nullptr;
|
|
QLabel *m_cpuRunTimeTitle = nullptr;
|
|
QLabel *m_cpuRunTimeText = nullptr;
|
|
QLabel *m_cpuIdleTimeTitle = nullptr;
|
|
QLabel *m_cpuIdleTimeText = nullptr;
|
|
CpuBallWidget *m_cpuBall = nullptr;
|
|
QHBoxLayout *m_contentLayout = nullptr;
|
|
QVBoxLayout *m_labelLayout = nullptr;
|
|
QVBoxLayout *m_layout = nullptr;
|
|
};
|
|
|
|
#endif // CPURATEWIDGET_H
|