RefactoringRope/Documentation/source/Plugin_Refactoring_Rope.RefactoringRope.SearchDialog.html

changeset 321
d51e810107ec
parent 204
b4bf79b956bc
child 365
f740b50380df
diff -r 91b171fdd85f -r d51e810107ec RefactoringRope/Documentation/source/Plugin_Refactoring_Rope.RefactoringRope.SearchDialog.html
--- a/RefactoringRope/Documentation/source/Plugin_Refactoring_Rope.RefactoringRope.SearchDialog.html	Fri Oct 11 19:05:23 2019 +0200
+++ b/RefactoringRope/Documentation/source/Plugin_Refactoring_Rope.RefactoringRope.SearchDialog.html	Fri Oct 11 19:05:59 2019 +0200
@@ -18,138 +18,184 @@
 
 </style>
 </head>
-<body><a NAME="top" ID="top"></a>
+<body>
+<a NAME="top" ID="top"></a>
 <h1>Plugin_Refactoring_Rope.RefactoringRope.SearchDialog</h1>
+
 <p>
 Module implementing the search dialog for the rope help dialog.
 </p>
 <h3>Global Attributes</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
 <h3>Classes</h3>
+
 <table>
+
 <tr>
 <td><a href="#SearchDialog">SearchDialog</a></td>
 <td>Module implementing the search dialog for the rope help dialog.</td>
 </tr>
 </table>
 <h3>Functions</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
-<hr /><hr />
+<hr />
+<hr />
 <a NAME="SearchDialog" ID="SearchDialog"></a>
 <h2>SearchDialog</h2>
+
 <p>
     Module implementing the search dialog for the rope help dialog.
 </p>
 <h3>Derived from</h3>
 QDialog, Ui_SearchDialog
 <h3>Class Attributes</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
 <h3>Class Methods</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
 <h3>Methods</h3>
+
 <table>
+
 <tr>
 <td><a href="#SearchDialog.__init__">SearchDialog</a></td>
 <td>Constructor</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#SearchDialog.__findNextPrev">__findNextPrev</a></td>
 <td>Private slot to find the next occurrence of text.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#SearchDialog.findNext">findNext</a></td>
 <td>Public slot to find the next occurrence.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#SearchDialog.findPrevious">findPrevious</a></td>
 <td>Public slot to find the previous occurrence.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#SearchDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td>
 <td>Private slot called by a button of the button box clicked.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#SearchDialog.on_findButton_clicked">on_findButton_clicked</a></td>
 <td>Private slot to find the entered text in the displayed page.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#SearchDialog.on_findtextCombo_editTextChanged">on_findtextCombo_editTextChanged</a></td>
 <td>Private slot to enable/disable the find buttons.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#SearchDialog.showFind">showFind</a></td>
 <td>Public method to display this dialog.</td>
 </tr>
 </table>
 <h3>Static Methods</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
+
 <a NAME="SearchDialog.__init__" ID="SearchDialog.__init__"></a>
 <h4>SearchDialog (Constructor)</h4>
 <b>SearchDialog</b>(<i>parent=None, name="", fl=Qt.Widget</i>)
+
 <p>
         Constructor
-</p><dl>
+</p>
+<dl>
+
 <dt><i>parent</i> (QWidget)</dt>
 <dd>
 parent widget of this dialog
-</dd><dt><i>name</i> (str)</dt>
+</dd>
+<dt><i>name</i> (str)</dt>
 <dd>
 object name of the dialog
-</dd><dt><i>fl</i> (Qt.WindowFlags)</dt>
+</dd>
+<dt><i>fl</i> (Qt.WindowFlags)</dt>
 <dd>
 window flags
 </dd>
-</dl><a NAME="SearchDialog.__findNextPrev" ID="SearchDialog.__findNextPrev"></a>
+</dl>
+<a NAME="SearchDialog.__findNextPrev" ID="SearchDialog.__findNextPrev"></a>
 <h4>SearchDialog.__findNextPrev</h4>
 <b>__findNextPrev</b>(<i>backwards</i>)
+
 <p>
         Private slot to find the next occurrence of text.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>backwards</i> (bool)</dt>
 <dd>
 flag indicating a backwards search
 </dd>
-</dl><a NAME="SearchDialog.findNext" ID="SearchDialog.findNext"></a>
+</dl>
+<a NAME="SearchDialog.findNext" ID="SearchDialog.findNext"></a>
 <h4>SearchDialog.findNext</h4>
 <b>findNext</b>(<i></i>)
+
 <p>
         Public slot to find the next occurrence.
-</p><a NAME="SearchDialog.findPrevious" ID="SearchDialog.findPrevious"></a>
+</p>
+<a NAME="SearchDialog.findPrevious" ID="SearchDialog.findPrevious"></a>
 <h4>SearchDialog.findPrevious</h4>
 <b>findPrevious</b>(<i></i>)
+
 <p>
         Public slot to find the previous occurrence.
-</p><a NAME="SearchDialog.on_buttonBox_clicked" ID="SearchDialog.on_buttonBox_clicked"></a>
+</p>
+<a NAME="SearchDialog.on_buttonBox_clicked" ID="SearchDialog.on_buttonBox_clicked"></a>
 <h4>SearchDialog.on_buttonBox_clicked</h4>
 <b>on_buttonBox_clicked</b>(<i>button</i>)
+
 <p>
         Private slot called by a button of the button box clicked.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>button</i> (QAbstractButton)</dt>
 <dd>
 button that was clicked
 </dd>
-</dl><a NAME="SearchDialog.on_findButton_clicked" ID="SearchDialog.on_findButton_clicked"></a>
+</dl>
+<a NAME="SearchDialog.on_findButton_clicked" ID="SearchDialog.on_findButton_clicked"></a>
 <h4>SearchDialog.on_findButton_clicked</h4>
 <b>on_findButton_clicked</b>(<i></i>)
+
 <p>
         Private slot to find the entered text in the displayed page.
-</p><a NAME="SearchDialog.on_findtextCombo_editTextChanged" ID="SearchDialog.on_findtextCombo_editTextChanged"></a>
+</p>
+<a NAME="SearchDialog.on_findtextCombo_editTextChanged" ID="SearchDialog.on_findtextCombo_editTextChanged"></a>
 <h4>SearchDialog.on_findtextCombo_editTextChanged</h4>
 <b>on_findtextCombo_editTextChanged</b>(<i>txt</i>)
+
 <p>
         Private slot to enable/disable the find buttons.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>txt</i> (str)</dt>
 <dd>
 text of the combo box
 </dd>
-</dl><a NAME="SearchDialog.showFind" ID="SearchDialog.showFind"></a>
+</dl>
+<a NAME="SearchDialog.showFind" ID="SearchDialog.showFind"></a>
 <h4>SearchDialog.showFind</h4>
 <b>showFind</b>(<i></i>)
+
 <p>
         Public method to display this dialog.
 </p>

eric ide

mercurial