eric7.Plugins.VcsPlugins.vcsSubversion.SvnCopyDialog

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

Global Attributes

None

Classes

SvnCopyDialog Class implementing a dialog to enter the data for a copy or rename operation.

Functions

None


SvnCopyDialog

Class implementing a dialog to enter the data for a copy or rename operation.

Derived from

QDialog, Ui_SvnCopyDialog

Class Attributes

None

Class Methods

None

Methods

SvnCopyDialog Constructor
getData Public method to retrieve the copy data.
on_targetPicker_textChanged Private slot to handle changes of the target.

Static Methods

None

SvnCopyDialog (Constructor)

SvnCopyDialog(source, parent=None, move=False, force=False)

Constructor

source (str)
name of the source file/directory
parent (QWidget)
parent widget
move (bool)
flag indicating a move operation
force (bool)
flag indicating a forced operation

SvnCopyDialog.getData

getData()

Public method to retrieve the copy data.

Return:
tuple containing the target name and a flag indicating the operation should be enforced
Return Type:
tuple of (str, bool)

SvnCopyDialog.on_targetPicker_textChanged

on_targetPicker_textChanged(txt)

Private slot to handle changes of the target.

txt (str)
contents of the target edit
Up