DianLi/LandslideTrain/CProgressBar.h

19 lines
310 B
C
Raw Normal View History

2023-03-13 16:14:59 +08:00
#pragma once
#include<QProgressBar>
class CProgressBar : public QProgressBar
{
Q_OBJECT
public:
CProgressBar(QWidget* parent = 0);
~CProgressBar() {}
public:
void ShowTips(const QString& strTips);
void SetDoubleFormatValue(const QString& strFormat, double dValue);
double GetDoubleFormatValue();
};