Plugin_Refactoring_Rope.RefactoringRope.ProgressHandle

Module implementing a taskhandle class with a progress dialog.

Classes

ProgressHandle Class implementing taskhandle with a progress dialog.

Functions

None


ProgressHandle

Class implementing taskhandle with a progress dialog.

Derived from

rope.base.taskhandle.TaskHandle

Methods

ProgressHandle Constructor
__updateProgress Private slot to handle the task progress.
reset Public slot to reset the progress dialog.
show Public slot to show the progress dialog.

ProgressHandle (Constructor)

ProgressHandle(title, interruptable = True, parent = None)

Constructor

title
title for the taskhandle (string)
interruptable
flag indicating, that the task may be interrupted (boolean)
parent
reference to the parent widget (QWidget)

ProgressHandle.__updateProgress

__updateProgress()

Private slot to handle the task progress.

ProgressHandle.reset

reset()

Public slot to reset the progress dialog.

ProgressHandle.show

show()

Public slot to show the progress dialog.

Up