加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
form.cpp 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
kuangchunhua 提交于 2022-01-07 16:10 . first commit
#include "form.h"
#include "ui_form.h"
Form::Form(QString fileName,qint64 fileSize,QWidget *parent) :
QWidget(parent),
ui(new Ui::Form)
{
ui->setupUi(this);
setFixedHeight(60);
ui->label_name->setText(fileName);
m_fileSize = fileSize;
ui->progressBar->setFixedHeight(10);
ui->progressBar->setMinimum(0);
if(m_fileSize>1024)
ui->progressBar->setMaximum(fileSize/1024);
else
ui->progressBar->setMaximum(fileSize);
}
Form::~Form()
{
delete ui;
}
void Form::updateProcess(qint64 recSize)
{
if(m_fileSize>1024)
ui->progressBar->setValue(recSize/1024);
else
ui->progressBar->setValue(recSize);
ui->label_process->setText(QString("%1/%2").arg(recSize).arg(m_fileSize));
update();
}
void Form::setStatus(bool bl)
{
ui->label->setFixedSize(20,20);
if(bl){
ui->label->setStyleSheet("background-color:rgb(50,205,50);border-radius:5px;");
}else{
ui->label->setStyleSheet("background-color:red;border-radius:5px;");
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化