eric6.Plugins.VcsPlugins.vcsMercurial.HgNewProjectOptionsDialog

Module implementing the Mercurial Options Dialog for a new project from the repository.

Global Attributes

None

Classes

HgNewProjectOptionsDialog Class implementing the Options Dialog for a new project from the repository.

Functions

None


HgNewProjectOptionsDialog

Class implementing the Options Dialog for a new project from the repository.

Derived from

QDialog, Ui_HgNewProjectOptionsDialog

Class Attributes

None

Class Methods

None

Methods

HgNewProjectOptionsDialog Constructor
getData Public slot to retrieve the data entered into the dialog.
on_protocolCombo_activated Private slot to switch the status of the directory selection button.
on_vcsProjectDirPicker_textChanged Private slot to handle a change of the project directory.
on_vcsUrlPicker_textChanged Private slot to handle changes of the URL.

Static Methods

None

HgNewProjectOptionsDialog (Constructor)

HgNewProjectOptionsDialog(vcs, parent=None)

Constructor

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

HgNewProjectOptionsDialog.getData

getData()

Public slot to retrieve the data entered into the dialog.

Returns:
a tuple of a string (project directory) and a dictionary containing the data entered.

HgNewProjectOptionsDialog.on_protocolCombo_activated

on_protocolCombo_activated(protocol)

Private slot to switch the status of the directory selection button.

protocol
name of the selected protocol (string)

HgNewProjectOptionsDialog.on_vcsProjectDirPicker_textChanged

on_vcsProjectDirPicker_textChanged(txt)

Private slot to handle a change of the project directory.

txt
name of the project directory (string)

HgNewProjectOptionsDialog.on_vcsUrlPicker_textChanged

on_vcsUrlPicker_textChanged(txt)

Private slot to handle changes of the URL.

txt
current text of the line edit (string)
Up