eric3.VCS.subversionPackage.SvnDialog

Module implementing a dialog starting a process and showing its output.

Classes

SvnDialog Module implementing a dialog starting a process and showing its output.

Functions

None

SvnDialog

Module implementing a dialog starting a process and showing its output.

It starts a QProcess and display a dialog that shows the output of the process. The dialog is modal, which causes a synchronized execution of the process.

Derived from

SvnForm

Methods

SvnDialog Constructor
buttonPressed Private slot connected to the button clicked signal.
finish Private slot called when the process finished or the user pressed the button.
handleReadStderr Private slot to handle the readyReadStderr signal.
handleReadStdout Private slot to handle the readyReadStdout signal.
normalExit Public method to check for a normal process termination.
procExited Private slot connected to the processExited signal.
startProcess Public slot used to start the process.

SvnDialog (Constructor)

SvnDialog(text, parent = None)

Constructor

parent
parent widget (QWidget)
text
text to be shown by the label (string or QString)

SvnDialog.buttonPressed

buttonPressed()

Private slot connected to the button clicked signal.

SvnDialog.finish

finish()

Private slot called when the process finished or the user pressed the button.

SvnDialog.handleReadStderr

handleReadStderr()

Private slot to handle the readyReadStderr signal.

It reads the error output of the process and inserts it into the error pane.

SvnDialog.handleReadStdout

handleReadStdout()

Private slot to handle the readyReadStdout signal.

It reads the output of the process, formats it and inserts it into the contents pane.

SvnDialog.normalExit

normalExit()

Public method to check for a normal process termination.

Returns:
flag indicating normal process termination (boolean)

SvnDialog.procExited

procExited()

Private slot connected to the processExited signal.

SvnDialog.startProcess

startProcess(proc)

Public slot used to start the process.

proc
process object (QProcess)

Up