It looks like you're new here. If you want to get involved, click one of these buttons!
I love how easy it is to add a RealtiveProgressBar to my python scripts. When KL is running a long DRC check it displays a nice text box with a running list of the tasks completed. Is it possible to replicate this behavior from a script? Or do I have to create a stand-alone dialog box using Qt?
Comments
@yanoff The DRC system is itself a script, so that is possible.
The key is "AbstractProgress" which is a progress reporter without a value but while it is active, log messages will be collected and sent to the progress report area.
Here is some code:
While trying that I noticed that the "Cancel" button does not have an effect. I will try to debug that problem.
Matthias
Very cool! I'll try this out when I have a chance.