progress_dialog

Functions and classes to use a progress dialog in combination with a model thread

class camelot.view.controls.progress_dialog.ProgressDialog(name, icon=Icon('tango/32x32/actions/appointment-new.png'))[source]

A Progress Dialog to be used in combination with a post to the model thread:

to display a progress dialog until my_function has finished:

d = ProgressDialog()
post(my_function, d.finished, d.exception)
d.exec_()
../../../_images/progress_dialog.png
exit(return_code)[source]

Stop the application event loop, with the given return code

Previous topic

navpane2

Next topic

search

This Page