Documentation/Source/eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesFoldDialog.html

changeset 1037
b547147ccb4b
child 1228
7afaf2fca55b
diff -r 1922b6ce2a57 -r b547147ccb4b Documentation/Source/eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesFoldDialog.html
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Documentation/Source/eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesFoldDialog.html	Sun May 15 19:13:36 2011 +0200
@@ -0,0 +1,163 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
+'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
+<html><head>
+<title>eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesFoldDialog</title>
+<style>
+body {
+    background: #EDECE6;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #85774A; }
+h2 { color: white; background: #85774A; }
+h3 { color: white; background: #9D936E; }
+h4 { color: white; background: #9D936E; }
+    
+a { color: #BA6D36; }
+
+</style>
+</head>
+<body><a NAME="top" ID="top"></a>
+<h1>eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.HgQueuesFoldDialog</h1>
+<p>
+Module implementing a dialog to enter data to fold patches.
+</p>
+<h3>Global Attributes</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+<table>
+<tr>
+<td><a href="#HgQueuesFoldDialog">HgQueuesFoldDialog</a></td>
+<td>Class implementing a dialog to enter data to fold patches.</td>
+</tr>
+</table>
+<h3>Functions</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<hr /><hr />
+<a NAME="HgQueuesFoldDialog" ID="HgQueuesFoldDialog"></a>
+<h2>HgQueuesFoldDialog</h2>
+<p>
+    Class implementing a dialog to enter data to fold patches.
+</p>
+<h3>Derived from</h3>
+QDialog, Ui_HgQueuesFoldDialog
+<h3>Class Attributes</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+<table>
+<tr>
+<td><a href="#HgQueuesFoldDialog.__init__">HgQueuesFoldDialog</a></td>
+<td>Constructor</td>
+</tr><tr>
+<td><a href="#HgQueuesFoldDialog.__updateOkButton">__updateOkButton</a></td>
+<td>Private slot to update the status of the OK button.</td>
+</tr><tr>
+<td><a href="#HgQueuesFoldDialog.getData">getData</a></td>
+<td>Public method to retrieve the entered data.</td>
+</tr><tr>
+<td><a href="#HgQueuesFoldDialog.on_addButton_clicked">on_addButton_clicked</a></td>
+<td>Private slot to add a patch to the list of selected patches.</td>
+</tr><tr>
+<td><a href="#HgQueuesFoldDialog.on_downButton_clicked">on_downButton_clicked</a></td>
+<td>Private slot to move a patch down in the list.</td>
+</tr><tr>
+<td><a href="#HgQueuesFoldDialog.on_removeButton_clicked">on_removeButton_clicked</a></td>
+<td>Private slot to remove a patch from the list of selected patches.</td>
+</tr><tr>
+<td><a href="#HgQueuesFoldDialog.on_selectedPatches_currentItemChanged">on_selectedPatches_currentItemChanged</a></td>
+<td>Private slot to react on changes of the current item of selected patches.</td>
+</tr><tr>
+<td><a href="#HgQueuesFoldDialog.on_sourcePatches_currentItemChanged">on_sourcePatches_currentItemChanged</a></td>
+<td>Private slot to react on changes of the current item of source patches.</td>
+</tr><tr>
+<td><a href="#HgQueuesFoldDialog.on_upButton_clicked">on_upButton_clicked</a></td>
+<td>Private slot to move a patch up in the list.</td>
+</tr>
+</table>
+<a NAME="HgQueuesFoldDialog.__init__" ID="HgQueuesFoldDialog.__init__"></a>
+<h4>HgQueuesFoldDialog (Constructor)</h4>
+<b>HgQueuesFoldDialog</b>(<i>patchesList, parent=None</i>)
+<p>
+        Constructor
+</p><dl>
+<dt><i>patchesList</i></dt>
+<dd>
+list of patches to select from (list of strings)
+</dd><dt><i>parent</i></dt>
+<dd>
+reference to the parent widget (QWidget)
+</dd>
+</dl><a NAME="HgQueuesFoldDialog.__updateOkButton" ID="HgQueuesFoldDialog.__updateOkButton"></a>
+<h4>HgQueuesFoldDialog.__updateOkButton</h4>
+<b>__updateOkButton</b>(<i></i>)
+<p>
+        Private slot to update the status of the OK button.
+</p><a NAME="HgQueuesFoldDialog.getData" ID="HgQueuesFoldDialog.getData"></a>
+<h4>HgQueuesFoldDialog.getData</h4>
+<b>getData</b>(<i></i>)
+<p>
+        Public method to retrieve the entered data.
+</p><dl>
+<dt>Returns:</dt>
+<dd>
+tuple of commit message and list of selected patches
+            (string, list of strings)
+</dd>
+</dl><a NAME="HgQueuesFoldDialog.on_addButton_clicked" ID="HgQueuesFoldDialog.on_addButton_clicked"></a>
+<h4>HgQueuesFoldDialog.on_addButton_clicked</h4>
+<b>on_addButton_clicked</b>(<i></i>)
+<p>
+        Private slot to add a patch to the list of selected patches.
+</p><a NAME="HgQueuesFoldDialog.on_downButton_clicked" ID="HgQueuesFoldDialog.on_downButton_clicked"></a>
+<h4>HgQueuesFoldDialog.on_downButton_clicked</h4>
+<b>on_downButton_clicked</b>(<i></i>)
+<p>
+        Private slot to move a patch down in the list.
+</p><a NAME="HgQueuesFoldDialog.on_removeButton_clicked" ID="HgQueuesFoldDialog.on_removeButton_clicked"></a>
+<h4>HgQueuesFoldDialog.on_removeButton_clicked</h4>
+<b>on_removeButton_clicked</b>(<i></i>)
+<p>
+        Private slot to remove a patch from the list of selected patches.
+</p><a NAME="HgQueuesFoldDialog.on_selectedPatches_currentItemChanged" ID="HgQueuesFoldDialog.on_selectedPatches_currentItemChanged"></a>
+<h4>HgQueuesFoldDialog.on_selectedPatches_currentItemChanged</h4>
+<b>on_selectedPatches_currentItemChanged</b>(<i>current, previous</i>)
+<p>
+        Private slot to react on changes of the current item of selected patches.
+</p><dl>
+<dt><i>current</i></dt>
+<dd>
+reference to the new current item (QTreeWidgetItem)
+</dd><dt><i>previous</i></dt>
+<dd>
+reference to the previous current item (QTreeWidgetItem)
+</dd>
+</dl><a NAME="HgQueuesFoldDialog.on_sourcePatches_currentItemChanged" ID="HgQueuesFoldDialog.on_sourcePatches_currentItemChanged"></a>
+<h4>HgQueuesFoldDialog.on_sourcePatches_currentItemChanged</h4>
+<b>on_sourcePatches_currentItemChanged</b>(<i>current, previous</i>)
+<p>
+        Private slot to react on changes of the current item of source patches.
+</p><dl>
+<dt><i>current</i></dt>
+<dd>
+reference to the new current item (QTreeWidgetItem)
+</dd><dt><i>previous</i></dt>
+<dd>
+reference to the previous current item (QTreeWidgetItem)
+</dd>
+</dl><a NAME="HgQueuesFoldDialog.on_upButton_clicked" ID="HgQueuesFoldDialog.on_upButton_clicked"></a>
+<h4>HgQueuesFoldDialog.on_upButton_clicked</h4>
+<b>on_upButton_clicked</b>(<i></i>)
+<p>
+        Private slot to move a patch up in the list.
+</p>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file

eric ide

mercurial