eric5.Plugins.VcsPlugins.vcsMercurial.HgBundleDialog

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

Global Attributes

None

Classes

HgBundleDialog Class implementing a dialog to enter the data for a bundle operation.

Functions

None


HgBundleDialog

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

Derived from

QDialog, Ui_HgBundleDialog

Class Attributes

None

Methods

HgBundleDialog Constructor
getParameters Public method to retrieve the bundle data.

HgBundleDialog (Constructor)

HgBundleDialog(tagsList, branchesList, parent = None)

Constructor

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

HgBundleDialog.getParameters

getParameters()

Public method to retrieve the bundle data.

Returns:
tuple naming the revision, the compression type and a flag indicating to bundle all changesets (string, string, boolean)
Up