Plugin_Vcs_CVS.vcsCVS.CvsLogDialog

Module implementing a dialog to show the output of the cvs log command process.

Global Attributes

None

Classes

CvsLogDialog Module implementing a dialog to show the output of the cvs log command process.

Functions

None


CvsLogDialog

Module implementing a dialog to show the output of the cvs log command process.

The dialog is nonmodal. Clicking a link in the upper text pane shows a diff of the versions.

Derived from

QWidget, Ui_CvsLogDialog

Class Attributes

None

Methods

CvsLogDialog Constructor
__procFinished Private slot connected to the finished signal.
__readStderr Private slot to handle the readyReadStandardError signal.
__readStdout Private slot to handle the readyReadStandardOutput signal.
__sourceChanged Private slot to handle the sourceChanged signal of the contents pane.
closeEvent Private slot implementing a close event handler.
keyPressEvent Protected slot to handle a key press event.
on_input_returnPressed Private slot to handle the press of the return key in the input field.
on_passwordCheckBox_toggled Private slot to handle the password checkbox toggled.
on_sendButton_clicked Private slot to send the input to the subversion process.
start Public slot to start the cvs log command.

CvsLogDialog (Constructor)

CvsLogDialog(vcs, parent = None)

Constructor

vcs
reference to the vcs object
parent
parent widget (QWidget)

CvsLogDialog.__procFinished

__procFinished(exitCode, exitStatus)

Private slot connected to the finished signal.

exitCode
exit code of the process (integer)
exitStatus
exit status of the process (QProcess.ExitStatus)

CvsLogDialog.__readStderr

__readStderr()

Private slot to handle the readyReadStandardError signal.

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

CvsLogDialog.__readStdout

__readStdout()

Private slot to handle the readyReadStandardOutput signal.

It reads the output of the process and inserts it into a buffer.

CvsLogDialog.__sourceChanged

__sourceChanged(url)

Private slot to handle the sourceChanged signal of the contents pane.

url
the url that was clicked (QUrl)

CvsLogDialog.closeEvent

closeEvent(e)

Private slot implementing a close event handler.

e
close event (QCloseEvent)

CvsLogDialog.keyPressEvent

keyPressEvent(evt)

Protected slot to handle a key press event.

evt
the key press event (QKeyEvent)

CvsLogDialog.on_input_returnPressed

on_input_returnPressed()

Private slot to handle the press of the return key in the input field.

CvsLogDialog.on_passwordCheckBox_toggled

on_passwordCheckBox_toggled(isOn)

Private slot to handle the password checkbox toggled.

isOn
flag indicating the status of the check box (boolean)

CvsLogDialog.on_sendButton_clicked

on_sendButton_clicked()

Private slot to send the input to the subversion process.

CvsLogDialog.start

start(fn)

Public slot to start the cvs log command.

fn
filename to be diffed (string)
Up