eric5.Plugins.VcsPlugins.vcsMercurial.HgBackoutDialog

Module implementing a dialog to enter the data for a backout operation.

Global Attributes

None

Classes

HgBackoutDialog Class implementing a dialog to enter the data for a backout operation.

Functions

None


HgBackoutDialog

Class implementing a dialog to enter the data for a backout operation.

Derived from

QDialog, Ui_HgBackoutDialog

Class Attributes

None

Methods

HgBackoutDialog Constructor
getParameters Public method to retrieve the backout data.
on_noneButton_toggled Private slot to handle the toggling of the None revision button.

HgBackoutDialog (Constructor)

HgBackoutDialog(tagsList, branchesList, parent = None)

Constructor

tagsList
list of tags (list of strings)
branchesList
list of branches (list of strings)
parent
parent widget (QWidget)

HgBackoutDialog.getParameters

getParameters()

Public method to retrieve the backout data.

Returns:
tuple naming the revision, a flag indicating a merge, the commit date, the commit user and a commit message (string, boolean, string, string, string)

HgBackoutDialog.on_noneButton_toggled

on_noneButton_toggled(checked)

Private slot to handle the toggling of the None revision button.

checked
flag indicating the checked state (boolean)
Up