eric7.Plugins.VcsPlugins.vcsSubversion.SvnTagDialog

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

Global Attributes

None

Classes

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

Functions

None


SvnTagDialog

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

Derived from

QDialog, Ui_SvnTagDialog

Class Attributes

None

Class Methods

None

Methods

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

Static Methods

None

SvnTagDialog (Constructor)

SvnTagDialog(taglist, reposURL, standardLayout, parent=None)

Constructor

taglist (list of str)
list of previously entered tags
reposURL (str)
repository path or None
standardLayout (bool)
flag indicating the layout of the repository
parent (QWidget)
parent widget

SvnTagDialog.getParameters

getParameters()

Public method to retrieve the tag data.

Return:
tuple containing the tag and tag operation
Return Type:
tuple of (str, int)

SvnTagDialog.on_tagCombo_editTextChanged

on_tagCombo_editTextChanged(text)

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

text (str)
text of the tag combobox
Up