eric5.Plugins.VcsPlugins.vcsMercurial.HgStatusDialog

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

Global Attributes

None

Classes

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

Functions

None


HgStatusDialog

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

Derived from

QWidget, Ui_HgStatusDialog

Class Attributes

None

Methods

HgStatusDialog Constructor
__add Private slot to handle the Add 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.
__forget Private slot to handle the Remove context menu entry.
__generateItem Private method to generate a status item in the status list.
__getMissingItems Private method to retrieve all entries, that have a missing status.
__getModifiedItems Private method to retrieve all entries, that have a modified status.
__getUnversionedItems Private method to retrieve all entries, that have an unversioned status.
__procFinished Private slot connected to the finished signal.
__readStderr Private slot to handle the readyReadStandardError signal.
__readStdout Private slot to handle the readyReadStandardOutput signal.
__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.
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 hg status command.

HgStatusDialog (Constructor)

HgStatusDialog(vcs, parent = None)

Constructor

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

HgStatusDialog.__add

__add()

Private slot to handle the Add context menu entry.

HgStatusDialog.__commit

__commit()

Private slot to handle the Commit context menu entry.

HgStatusDialog.__committed

__committed()

Private slot called after the commit has finished.

HgStatusDialog.__finish

__finish()

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

HgStatusDialog.__forget

__forget()

Private slot to handle the Remove context menu entry.

HgStatusDialog.__generateItem

__generateItem(status, path)

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

status
status indicator (string)
path
path of the file or directory (string)

HgStatusDialog.__getMissingItems

__getMissingItems()

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

Returns:
list of all items with a missing status

HgStatusDialog.__getModifiedItems

__getModifiedItems()

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

Returns:
list of all items with a modified status

HgStatusDialog.__getUnversionedItems

__getUnversionedItems()

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

Returns:
list of all items with an unversioned status

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

HgStatusDialog.__readStderr

__readStderr()

Private slot to handle the readyReadStandardError signal.

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

HgStatusDialog.__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.

HgStatusDialog.__resizeColumns

__resizeColumns()

Private method to resize the list columns.

HgStatusDialog.__resort

__resort()

Private method to resort the tree.

HgStatusDialog.__revert

__revert()

Private slot to handle the Revert context menu entry.

HgStatusDialog.__showContextMenu

__showContextMenu(coord)

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

coord
the position of the mouse pointer (QPoint)

HgStatusDialog.closeEvent

closeEvent(e)

Private slot implementing a close event handler.

e
close event (QCloseEvent)

HgStatusDialog.keyPressEvent

keyPressEvent(evt)

Protected slot to handle a key press event.

evt
the key press event (QKeyEvent)

HgStatusDialog.on_buttonBox_clicked

on_buttonBox_clicked(button)

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

button
button that was clicked (QAbstractButton)

HgStatusDialog.on_input_returnPressed

on_input_returnPressed()

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

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

HgStatusDialog.on_refreshButton_clicked

on_refreshButton_clicked()

Private slot to refresh the status display.

HgStatusDialog.on_sendButton_clicked

on_sendButton_clicked()

Private slot to send the input to the subversion process.

HgStatusDialog.start

start(fn)

Public slot to start the hg status command.

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