The qprogressbar tag has no wiki summary.
2
votes
1answer
106 views
Howto change progress by worker thread
I'm new to PyQt4 so maybe it is a bagatelle. I try to show a progress in my GUI, which will be updated by an worker thread.The QProgressBar is with other memory's in a QTableWidget.
The worker thread ...
1
vote
0answers
51 views
Change the color of a QProgressBar
I am running ubuntu 11.04. This is what my progress bars look like:
I am showing the progress bars in a batch processing window (one per batch item) and would like to use them as a status indicator ...
1
vote
2answers
128 views
Gradient for chunks in QProgressBar
Is it possible to set a common gradient for all QProgressBar chunks?
If use something like this:
QProgressBar::chunk:horizontal {
background: qlineargradient(x1: 0, y1: 0.5, x2: 1, y2: 0.5,
...
1
vote
1answer
418 views
Changing the color of a QProgressbar()
I was wondering whether it's possible to change the color of a PyQt Progressbar?
I have the following code:
from PyQt4 import QtGui, QtCore
Pbar1 = QtGui.QProgressBar()
Pbar1.setParent(Frame1)
...
1
vote
1answer
188 views
PyQt QProgressBar not working correctly due to Python docstring comment length?
Using Python 3.1 and PyQt, I am trying to get a QProgressBar to show that a task is working by having the bars slide across the widget. I found that can be done by setting the minimum and maximum ...
1
vote
1answer
636 views
implement a progress dialog by QDialog
I'm using QT to implement some UI program.
In this program I need a progress dialog. I tried to use the build-in QProgressDialog, it works fine but in my case I need to confirm (with another dialog) ...
1
vote
1answer
309 views
Is there an easy way to customize a QProgressBar?
I would like to have a QProgressBar that ends with a dot ( that has a bigger width than the width of the line ). What do I have to override, or what property/attribute would I have to set to achieve ...
0
votes
2answers
109 views
Change text in the QProgressBar
Well i have a QProgressBar where i show the download progress, however i want to set where it shows the percentage the download speed, leaving it as:
Percentage% (downloadspeed KB/s)
Any idea?
0
votes
1answer
177 views
Looping QProgressBar gives error >> QObject::installEventFilter: Cannot filter events for objects in a different thread
This question seems to have been asked many times in many different forms but I haven't managed to find one with a -relevant to my code- solution.
When I run the program it shows
...
0
votes
1answer
114 views
Change the value of the progress bar from a class other than my GUI class PyQt4
I have a GUI class created by Qt designer in which i have a progress bar, and another class in which all the number crunching is done during which i want my progress bar to update regularly. The way i ...
0
votes
2answers
2k views
qt trouble overriding paintEvent
I'm subclassing QProgressBar in a custom widget, and I overwrote the paintEvent method with the following code :
void myProg::paintEvent(QPaintEvent *pe)
{
QProgressBar::paintEvent(pe);
...
-5
votes
0answers
76 views
How do you connect a QProgressBar with a function?
I'm working on a program and I want to connect a QProgressBar with a function. While the function is in progress, the QProgressBar should count until the function is done. Then the QProgressBar ...