eric5.Plugins.VcsPlugins.vcsMercurial.HgTagDialog

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

Global Attributes

None

Classes

HgTagDialog Class implementing a dialog to enter the data for a tagging operation.

Functions

None


HgTagDialog

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

Derived from

QDialog, Ui_HgTagDialog

Class Attributes

CreateBranch
CreateLocalTag
CreateRegularTag
DeleteTag

Class Methods

None

Methods

HgTagDialog Constructor
getParameters Public method to retrieve the tag data.
on_tagCombo_editTextChanged Private method used to enable/disable the OK-button.

Static Methods

None

HgTagDialog (Constructor)

HgTagDialog(taglist, parent=None)

Constructor

taglist
list of previously entered tags (list of strings)
parent
parent widget (QWidget)

HgTagDialog.getParameters

getParameters()

Public method to retrieve the tag data.

Returns:
tuple of string and int (tag, tag operation)

HgTagDialog.on_tagCombo_editTextChanged

on_tagCombo_editTextChanged(text)

Private method used to enable/disable the OK-button.

text
tag name entered in the combo (string)
Up