eric4.VCS.vcsPySvn.SvnBlameDialog

Module implementing a dialog to show the output of the svn blame command.

Classes

SvnBlameDialog Module implementing a dialog to show the output of the svn blame command.

Functions

None


SvnBlameDialog

Module implementing a dialog to show the output of the svn blame command.

Derived from

QDialog, SvnDialogMixin, Ui_SvnBlameDialog

Methods

SvnBlameDialog Constructor
__finish Private slot called when the process finished or the user pressed the button.
__generateItem Private method to generate a tag item in the taglist.
__resizeColumns Private method to resize the list columns.
__showError Private slot to show an error message.
on_cancelButton_clicked Private slot connected to the cancelButton clicked signal.
start Public slot to start the svn status command.

SvnBlameDialog (Constructor)

SvnBlameDialog(vcs, parent = None)

Constructor

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

SvnBlameDialog.__finish

__finish()

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

SvnBlameDialog.__generateItem

__generateItem(revision, author, lineno, text)

Private method to generate a tag item in the taglist.

revision
revision string (integer)
author
author of the tag (string or QString)
lineno
line number (integer)
text
text of the line (string or QString)

SvnBlameDialog.__resizeColumns

__resizeColumns()

Private method to resize the list columns.

SvnBlameDialog.__showError

__showError(msg)

Private slot to show an error message.

msg
error message to show (string or QString)

SvnBlameDialog.on_cancelButton_clicked

on_cancelButton_clicked()

Private slot connected to the cancelButton clicked signal.

SvnBlameDialog.start

start(fn)

Public slot to start the svn status command.

fn
filename to show the log for (string)

Up