QT进度条QProgressBar的练习

时间:2023-03-09 16:09:30
QT进度条QProgressBar的练习

progressbar.h

#ifndef PROGRESSBAR_H
#define PROGRESSBAR_H
#include <QProgressBar>
class QString;
class ProgressBar: public QProgressBar
{
Q_OBJECT
public:
ProgressBar(QWidget *parent = ):QProgressBar(parent){}
QString strText;
public slots:
void stepOne(); }; #endif // PROGRESSBAR_H

progressbar.cpp

#include "progressbar.h"
#include <QString>
void ProgressBar::stepOne()
{
if(this->value()+ <= this->maximum())
{
this->setValue(this->value()+); strText = "QProgressBar Test : "+this->text();
this->setWindowTitle(strText);
}
else
{
this->setValue(this->minimum());
}
}

main.cpp

#include <QApplication>
#include <QTimer>
#include "progressbar.h" int main(int argc, char**argv)
{
QApplication app(argc, argv); //progressBar
ProgressBar *progressBar = new ProgressBar;
progressBar->setWindowTitle("QProgressBar Test");
progressBar->resize(,);
progressBar->setMaximum();
progressBar->setMinimum();
progressBar->setValue(); //define a timer
QTimer *timer = new QTimer;
timer->start();
QObject::connect(timer, SIGNAL(timeout()), progressBar, SLOT(stepOne()));
progressBar->show();
return app.exec();
}

QT进度条QProgressBar的练习

转自:http://blog.chinaunix.net/uid-27225886-id-3352398.html

亲测可用。