eric4.Plugins.VcsPlugins.vcsSubversion.SvnStatusDialog

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

Global Attributes

None

Classes

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

Functions

None


SvnStatusDialog

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

Derived from

QWidget, Ui_SvnStatusDialog

Class Attributes

None

Class Methods

None

Methods

SvnStatusDialog Constructor
__add Private slot to handle the Add context menu entry.
__addToChangelist Private slot to add entries to a changelist.
__breakLock Private slot to handle the Break Lock context menu entry.
__commit Private slot to handle the Commit context menu entry.
__committed Private slot called after the commit has finished.
__finish Private slot called when the process finished or the user pressed the button.
__generateItem Private method to generate a status item in the status list.
__getChangelistItems Private method to retrieve all entries, that are members of a changelist.
__getLockActionItems Private method to retrieve all emtries, that have a locked status.
__getModifiedItems Private method to retrieve all entries, that have a modified status.
__getNonChangelistItems Private method to retrieve all entries, that are not members of a changelist.
__getUnversionedItems Private method to retrieve all entries, that have an unversioned status.
__lock Private slot to handle the Lock context menu entry.
__procFinished Private slot connected to the finished signal.
__readStderr Private slot to handle the readyReadStandardError signal.
__readStdout Private slot to handle the readyReadStandardOutput signal.
__removeFromChangelist Private slot to remove entries from their changelists.
__resizeColumns Private method to resize the list columns.
__resort Private method to resort the tree.
__revert Private slot to handle the Revert context menu entry.
__showContextMenu Protected slot to show the context menu of the status list.
__stealLock Private slot to handle the Break Lock context menu entry.
__unlock Private slot to handle the Unlock context menu entry.
closeEvent Private slot implementing a close event handler.
keyPressEvent Protected slot to handle a key press event.
on_buttonBox_clicked Private slot called by a button of the button box clicked.
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_refreshButton_clicked Private slot to refresh the status display.
on_sendButton_clicked Private slot to send the input to the subversion process.
start Public slot to start the svn status command.

Static Methods

None

SvnStatusDialog (Constructor)

SvnStatusDialog(vcs, parent = None)

Constructor

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

SvnStatusDialog.__add

__add()

Private slot to handle the Add context menu entry.

SvnStatusDialog.__addToChangelist

__addToChangelist()

Private slot to add entries to a changelist.

SvnStatusDialog.__breakLock

__breakLock()

Private slot to handle the Break Lock context menu entry.

SvnStatusDialog.__commit

__commit()

Private slot to handle the Commit context menu entry.

SvnStatusDialog.__committed

__committed()

Private slot called after the commit has finished.

SvnStatusDialog.__finish

__finish()

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

SvnStatusDialog.__generateItem

__generateItem(status, propStatus, locked, history, switched, lockinfo, uptodate, revision, change, author, path)

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

status
status indicator (string)
propStatus
property status indicator (string)
locked
locked indicator (string)
history
history indicator (string)
switched
switched indicator (string)
lockinfo
lock indicator (string)
uptodate
up to date indicator (string)
revision
revision string (string or QString)
change
revision of last change (string or QString)
author
author of the last change (string or QString)
path
path of the file or directory (string or QString)

SvnStatusDialog.__getChangelistItems

__getChangelistItems()

Private method to retrieve all entries, that are members of a changelist.

Returns:
list of all items belonging to a changelist

SvnStatusDialog.__getLockActionItems

__getLockActionItems(indicators)

Private method to retrieve all emtries, that have a locked status.

Returns:
list of all items with a locked status

SvnStatusDialog.__getModifiedItems

__getModifiedItems()

Private method to retrieve all entries, that have a modified status.

Returns:
list of all items with a modified status

SvnStatusDialog.__getNonChangelistItems

__getNonChangelistItems()

Private method to retrieve all entries, that are not members of a changelist.

Returns:
list of all items not belonging to a changelist

SvnStatusDialog.__getUnversionedItems

__getUnversionedItems()

Private method to retrieve all entries, that have an unversioned status.

Returns:
list of all items with an unversioned status

SvnStatusDialog.__lock

__lock()

Private slot to handle the Lock context menu entry.

SvnStatusDialog.__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)

SvnStatusDialog.__readStderr

__readStderr()

Private slot to handle the readyReadStandardError signal.

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

SvnStatusDialog.__readStdout

__readStdout()

Private slot to handle the readyReadStandardOutput signal.

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

SvnStatusDialog.__removeFromChangelist

__removeFromChangelist()

Private slot to remove entries from their changelists.

SvnStatusDialog.__resizeColumns

__resizeColumns()

Private method to resize the list columns.

SvnStatusDialog.__resort

__resort()

Private method to resort the tree.

SvnStatusDialog.__revert

__revert()

Private slot to handle the Revert context menu entry.

SvnStatusDialog.__showContextMenu

__showContextMenu(coord)

Protected slot to show the context menu of the status list.

coord
the position of the mouse pointer (QPoint)

SvnStatusDialog.__stealLock

__stealLock()

Private slot to handle the Break Lock context menu entry.

SvnStatusDialog.__unlock

__unlock()

Private slot to handle the Unlock context menu entry.

SvnStatusDialog.closeEvent

closeEvent(e)

Private slot implementing a close event handler.

e
close event (QCloseEvent)

SvnStatusDialog.keyPressEvent

keyPressEvent(evt)

Protected slot to handle a key press event.

evt
the key press event (QKeyEvent)

SvnStatusDialog.on_buttonBox_clicked

on_buttonBox_clicked(button)

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

button
button that was clicked (QAbstractButton)

SvnStatusDialog.on_input_returnPressed

on_input_returnPressed()

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

SvnStatusDialog.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)

SvnStatusDialog.on_refreshButton_clicked

on_refreshButton_clicked()

Private slot to refresh the status display.

SvnStatusDialog.on_sendButton_clicked

on_sendButton_clicked()

Private slot to send the input to the subversion process.

SvnStatusDialog.start

start(fn)

Public slot to start the svn status command.

fn
filename(s)/directoryname(s) to show the status of (string or list of strings)
Up