を使用しQProgressBar
て、ダウンロード操作の進行状況を表示します。表示されるパーセンテージに次のようなテキストを追加したいと思います。
10% (download speed kB/s)
何か案が?
を使用しQProgressBar
て、ダウンロード操作の進行状況を表示します。表示されるパーセンテージに次のようなテキストを追加したいと思います。
10% (download speed kB/s)
何か案が?
QProgressBar テキストを表示します。
QProgressBar *progBar = new QProgressBar();
progBar->setTextVisible(true);
ダウンロードの進行状況を表示するには
void Widget::setProgress(int downloadedSize, int totalSize)
{
double downloaded_Size = (double)downloadedSize;
double total_Size = (double)totalSize;
double progress = (downloaded_Size/total_Size) * 100;
progBar->setValue(progress);
// ******************************************************************
progBar->setFormat("Your text here. "+QString::number(progress)+"%");
}
ダウンロード速度を自分で計算してから、次のように文字列を作成できます。
QString text = QString( "%p% (%1 KB/s)" ).arg( speedInKbps );
progressBar->setFormat( text );
ただし、ダウンロード速度の更新が必要になるたびに、これを行う必要があります。
QProgressBar for Macintosh StyleSheet は format プロパティをサポートしていないため、クロスプラットフォーム サポートを作成するには、QLabel を使用して 2 番目のレイヤーを追加できます。
// init progress text label
if (progressBar->isTextVisible())
{
progressBar->setTextVisible(false); // prevent dublicate
QHBoxLayout *layout = new QHBoxLayout(progressBar);
QLabel *overlay = new QLabel();
overlay->setAlignment(Qt::AlignCenter);
overlay->setText("");
layout->addWidget(overlay);
layout->setContentsMargins(0,0,0,0);
connect(progressBar, SIGNAL(valueChanged(int)), this, SLOT(progressLabelUpdate()));
}
void MainWindow::progressLabelUpdate()
{
if (QProgressBar* progressBar = qobject_cast<QProgressBar*>(sender()))
{
QString text = progressBar->format();
int precent = 0;
if (progressBar->maximum()>0)
precent = 100 * progressBar->value() / progressBar->maximum();
text.replace("%p", QString::number(precent));
text.replace("%v", QString::number(progressBar->value()));
QLabel *label = progressBar->findChild<QLabel *>();
if (label)
label->setText(text);
}
}