eric3.VCS.mercurialPackage.IncomingDialog

Module implementing a dialog to show the output of the hg incoming command.

Classes

HgIncomingDialog Module implementing a dialog to show the output of the hg incoming command.

Functions

None


HgIncomingDialog

Module implementing a dialog to show the output of the hg incoming command.

Derived from

LogForm, ui

Methods

HgIncomingDialog Constructor
debug Public method to output a debug message.
edit Public method to enter some text.
note Public method to output a note.
prompt Public method to prompt the user for some input.
start Public slot to start the cvs incoming command.
status Public method to output a status message.
warn Public method to output a warning message.
write Public method to write something to the output of the dialog.
write_err Public method to write something to the errors output of the dialog.

HgIncomingDialog (Constructor)

HgIncomingDialog(vcs, parent = None)

Constructor

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

HgIncomingDialog.debug

debug(*msg)

Public method to output a debug message.

debug
messages to show (strings)

HgIncomingDialog.edit

edit(text)

Public method to enter some text.

Raises RuntimeError:
not implemented

HgIncomingDialog.note

note(*msg)

Public method to output a note.

notes
to show (strings)

HgIncomingDialog.prompt

prompt(msg, pat, default = "y")

Public method to prompt the user for some input.

msg
prompt message to be shown (string)
pat
pattern of acceptable input (string)
default
default answer if we are in noninteractive mode (string)
Returns:
the entered text

HgIncomingDialog.start

start(ppath, source)

Public slot to start the cvs incoming command.

ppath
directory name of the project (string)
source
directory name or URL of the source repository (string)

HgIncomingDialog.status

status(*msg)

Public method to output a status message.

status
messages to show (strings)

HgIncomingDialog.warn

warn(*msg)

Public method to output a warning message.

warning
messages to show (strings)

HgIncomingDialog.write

write(*args)

Public method to write something to the output of the dialog.

*args
texts to be written

HgIncomingDialog.write_err

write_err(*args)

Public method to write something to the errors output of the dialog.

*args
error texts to be written

Up