eric7.Plugins.VcsPlugins.vcsPySvn.SvnPropListDialog

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

Global Attributes

None

Classes

SvnPropListDialog Class implementing a dialog to show the output of the svn proplist command process.

Functions

None


SvnPropListDialog

Class implementing a dialog to show the output of the svn proplist command process.

Derived from

QWidget, SvnDialogMixin, Ui_SvnPropListDialog

Class Attributes

None

Class Methods

None

Methods

SvnPropListDialog Constructor
__finish Private slot called when the process finished or the user pressed the button.
__generateItem Private method to generate a properties item in the properties list.
__resizeColumns Private method to resize the list columns.
__resort Private method to resort the tree.
__showError Private slot to show an error message.
on_buttonBox_clicked Private slot called by a button of the button box clicked.
on_refreshButton_clicked Private slot to refresh the status display.
start Public slot to start the svn status command.

Static Methods

None

SvnPropListDialog (Constructor)

SvnPropListDialog(vcs, parent=None)

Constructor

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

SvnPropListDialog.__finish

__finish()

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

SvnPropListDialog.__generateItem

__generateItem(path, propName, propValue)

Private method to generate a properties item in the properties list.

path (str)
file/directory name the property applies to
propName (str)
name of the property
propValue (str)
value of the property

SvnPropListDialog.__resizeColumns

__resizeColumns()

Private method to resize the list columns.

SvnPropListDialog.__resort

__resort()

Private method to resort the tree.

SvnPropListDialog.__showError

__showError(msg)

Private slot to show an error message.

msg (str)
error message to show

SvnPropListDialog.on_buttonBox_clicked

on_buttonBox_clicked(button)

Private slot called by a button of the button box clicked.

button (QAbstractButton)
button that was clicked

SvnPropListDialog.on_refreshButton_clicked

on_refreshButton_clicked()

Private slot to refresh the status display.

SvnPropListDialog.start

start(fn, recursive=False)

Public slot to start the svn status command.

fn (str or list of str)
filename(s)
recursive (bool)
flag indicating a recursive list is requested
Up