Progress bar with QFile::copy()?(QFile::copy() 的进度条?)
问题描述
我正在制作一个在 Qt 中复制文件的程序.我想知道如何将 QProgressBar 与 bool QFile::copy(const QString & fileName, const QString & newName) 一起使用.这甚至可以通过 copy 功能实现吗?复制过程可以暂停吗?
I'm making a program which copies files in Qt. I want to know how can I use QProgressBar with bool QFile::copy(const QString & fileName, const QString & newName). Is this even possible with copy function? Can the process of copying be paused?
推荐答案
使用静态 QFile::copy() 方法无法做到这一点.
You can't do this using the static QFile::copy() method.
正如 Maciej 在您需要编写自己的课程之前所说的那样.它应该使用两个 QFile 对象,一个用于读取,一个用于写入.分部分传输数据(例如,整个文件大小的 1%)并在每个部分之后发出进度信号.您可以将此信号连接到进度对话框.
As Maciej stated before you need to write your own class. It should use two QFile objects, one for reading one for writing. Transfer the data in portions (e.g 1% of the entire file size) and emit a progress signal after each portion. You can connect this signal to a progress dialog.
如果你需要它在后台工作,你应该使用 QThread 来实现它.
If you need this to work in the background you should implement it using a QThread.
首先尝试确定您是否需要一个异步(不阻塞 GUI)或同步(阻塞 GUI)复制工作的类.后者更容易编程,但大多数时候不是预期的(例如,如果 GUI 被阻止,您不能通过单击按钮取消或暂停复制操作).
First try to decide if you need a class that does the copy work asynchonously (without blocking the GUI) or synchronously (blocking the GUI). The latter is easier to programming but most times not what is intended (e.g. you can not cancel or pause a copy operation by button click if the GUI is blocked).
你可以在这里查看一个相当广泛的 Qt 4 类:http://docs.huihoo.com/qt/solutions/4/qtcopydialog/qtfilecopier.html 但由于其复杂性,我不确定这是否会有所帮助.
You can have a look here for a pretty extensive Qt 4 class: http://docs.huihoo.com/qt/solutions/4/qtcopydialog/qtfilecopier.html but I am not sure if this will help due to its complexity.
这篇关于QFile::copy() 的进度条?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:QFile::copy() 的进度条?
基础教程推荐
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- CString 到 char* 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 初始化列表*参数*评估顺序 2021-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
