eric6/Documentation/Source/eric6.HexEdit.HexEditGotoWidget.html

changeset 7273
391d6b7b1eff
parent 6942
2602857055c5
child 7989
a21d673a8f99
diff -r 1779dc278077 -r 391d6b7b1eff eric6/Documentation/Source/eric6.HexEdit.HexEditGotoWidget.html
--- a/eric6/Documentation/Source/eric6.HexEdit.HexEditGotoWidget.html	Wed Sep 25 19:40:31 2019 +0200
+++ b/eric6/Documentation/Source/eric6.HexEdit.HexEditGotoWidget.html	Wed Sep 25 19:42:44 2019 +0200
@@ -18,164 +18,218 @@
 
 </style>
 </head>
-<body><a NAME="top" ID="top"></a>
+<body>
+<a NAME="top" ID="top"></a>
 <h1>eric6.HexEdit.HexEditGotoWidget</h1>
+
 <p>
 Module implementing a movement (goto) widget for the hex editor.
 </p>
 <h3>Global Attributes</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
 <h3>Classes</h3>
+
 <table>
+
 <tr>
 <td><a href="#HexEditGotoWidget">HexEditGotoWidget</a></td>
 <td>Class implementing a movement (goto) widget for the hex editor.</td>
 </tr>
 </table>
 <h3>Functions</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
-<hr /><hr />
+<hr />
+<hr />
 <a NAME="HexEditGotoWidget" ID="HexEditGotoWidget"></a>
 <h2>HexEditGotoWidget</h2>
+
 <p>
     Class implementing a movement (goto) widget for the hex editor.
 </p>
 <h3>Derived from</h3>
 QWidget, Ui_HexEditGotoWidget
 <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="#HexEditGotoWidget.__init__">HexEditGotoWidget</a></td>
 <td>Constructor</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HexEditGotoWidget.__convertText">__convertText</a></td>
 <td>Private method to convert text from one format into another.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HexEditGotoWidget.keyPressEvent">keyPressEvent</a></td>
 <td>Protected slot to handle key press events.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HexEditGotoWidget.on_closeButton_clicked">on_closeButton_clicked</a></td>
 <td>Private slot to close the widget.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HexEditGotoWidget.on_formatCombo_currentIndexChanged">on_formatCombo_currentIndexChanged</a></td>
 <td>Private slot to handle a selection of the format.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HexEditGotoWidget.on_gotoButton_clicked">on_gotoButton_clicked</a></td>
 <td>Private slot to move the cursor and extend the selection.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HexEditGotoWidget.on_offsetEdit_textChanged">on_offsetEdit_textChanged</a></td>
 <td>Private slot handling a change of the entered offset.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HexEditGotoWidget.reset">reset</a></td>
 <td>Public slot to reset the input widgets.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HexEditGotoWidget.show">show</a></td>
 <td>Public slot to show the widget.</td>
 </tr>
 </table>
 <h3>Static Methods</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
+
 <a NAME="HexEditGotoWidget.__init__" ID="HexEditGotoWidget.__init__"></a>
 <h4>HexEditGotoWidget (Constructor)</h4>
 <b>HexEditGotoWidget</b>(<i>editor, parent=None</i>)
+
 <p>
         Constructor
-</p><dl>
+</p>
+<dl>
+
 <dt><i>editor</i> (HexEditWidget)</dt>
 <dd>
 reference to the hex editor widget
-</dd><dt><i>parent</i> (QWidget)</dt>
+</dd>
+<dt><i>parent</i> (QWidget)</dt>
 <dd>
 reference to the parent widget
 </dd>
-</dl><a NAME="HexEditGotoWidget.__convertText" ID="HexEditGotoWidget.__convertText"></a>
+</dl>
+<a NAME="HexEditGotoWidget.__convertText" ID="HexEditGotoWidget.__convertText"></a>
 <h4>HexEditGotoWidget.__convertText</h4>
 <b>__convertText</b>(<i>txt, oldFormat, newFormat</i>)
+
 <p>
         Private method to convert text from one format into another.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>txt</i> (str)</dt>
 <dd>
 text to be converted
-</dd><dt><i>oldFormat</i> (str)</dt>
+</dd>
+<dt><i>oldFormat</i> (str)</dt>
 <dd>
 current format of the text
-</dd><dt><i>newFormat</i> (str)</dt>
+</dd>
+<dt><i>newFormat</i> (str)</dt>
 <dd>
 format to convert to
 </dd>
-</dl><dl>
+</dl>
+<dl>
 <dt>Returns:</dt>
 <dd>
 converted text
 </dd>
-</dl><dl>
+</dl>
+<dl>
 <dt>Return Type:</dt>
 <dd>
 str
 </dd>
-</dl><a NAME="HexEditGotoWidget.keyPressEvent" ID="HexEditGotoWidget.keyPressEvent"></a>
+</dl>
+<a NAME="HexEditGotoWidget.keyPressEvent" ID="HexEditGotoWidget.keyPressEvent"></a>
 <h4>HexEditGotoWidget.keyPressEvent</h4>
 <b>keyPressEvent</b>(<i>event</i>)
+
 <p>
         Protected slot to handle key press events.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>event</i> (QKeyEvent)</dt>
 <dd>
 reference to the key press event
 </dd>
-</dl><a NAME="HexEditGotoWidget.on_closeButton_clicked" ID="HexEditGotoWidget.on_closeButton_clicked"></a>
+</dl>
+<a NAME="HexEditGotoWidget.on_closeButton_clicked" ID="HexEditGotoWidget.on_closeButton_clicked"></a>
 <h4>HexEditGotoWidget.on_closeButton_clicked</h4>
 <b>on_closeButton_clicked</b>(<i></i>)
+
 <p>
         Private slot to close the widget.
-</p><a NAME="HexEditGotoWidget.on_formatCombo_currentIndexChanged" ID="HexEditGotoWidget.on_formatCombo_currentIndexChanged"></a>
+</p>
+<a NAME="HexEditGotoWidget.on_formatCombo_currentIndexChanged" ID="HexEditGotoWidget.on_formatCombo_currentIndexChanged"></a>
 <h4>HexEditGotoWidget.on_formatCombo_currentIndexChanged</h4>
 <b>on_formatCombo_currentIndexChanged</b>(<i>idx</i>)
+
 <p>
         Private slot to handle a selection of the format.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>idx</i> (int)</dt>
 <dd>
 index of the selected entry
 </dd>
-</dl><a NAME="HexEditGotoWidget.on_gotoButton_clicked" ID="HexEditGotoWidget.on_gotoButton_clicked"></a>
+</dl>
+<a NAME="HexEditGotoWidget.on_gotoButton_clicked" ID="HexEditGotoWidget.on_gotoButton_clicked"></a>
 <h4>HexEditGotoWidget.on_gotoButton_clicked</h4>
 <b>on_gotoButton_clicked</b>(<i></i>)
+
 <p>
         Private slot to move the cursor and extend the selection.
-</p><a NAME="HexEditGotoWidget.on_offsetEdit_textChanged" ID="HexEditGotoWidget.on_offsetEdit_textChanged"></a>
+</p>
+<a NAME="HexEditGotoWidget.on_offsetEdit_textChanged" ID="HexEditGotoWidget.on_offsetEdit_textChanged"></a>
 <h4>HexEditGotoWidget.on_offsetEdit_textChanged</h4>
 <b>on_offsetEdit_textChanged</b>(<i>offset</i>)
+
 <p>
         Private slot handling a change of the entered offset.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>offset</i> (str)</dt>
 <dd>
 entered offset
 </dd>
-</dl><a NAME="HexEditGotoWidget.reset" ID="HexEditGotoWidget.reset"></a>
+</dl>
+<a NAME="HexEditGotoWidget.reset" ID="HexEditGotoWidget.reset"></a>
 <h4>HexEditGotoWidget.reset</h4>
 <b>reset</b>(<i></i>)
+
 <p>
         Public slot to reset the input widgets.
-</p><a NAME="HexEditGotoWidget.show" ID="HexEditGotoWidget.show"></a>
+</p>
+<a NAME="HexEditGotoWidget.show" ID="HexEditGotoWidget.show"></a>
 <h4>HexEditGotoWidget.show</h4>
 <b>show</b>(<i></i>)
+
 <p>
         Public slot to show the widget.
 </p>

eric ide

mercurial