eric6/Documentation/Source/eric6.WebBrowser.History.HistoryDialog.html

changeset 7273
391d6b7b1eff
parent 6942
2602857055c5
--- a/eric6/Documentation/Source/eric6.WebBrowser.History.HistoryDialog.html	Wed Sep 25 19:40:31 2019 +0200
+++ b/eric6/Documentation/Source/eric6.WebBrowser.History.HistoryDialog.html	Wed Sep 25 19:42:44 2019 +0200
@@ -18,48 +18,62 @@
 
 </style>
 </head>
-<body><a NAME="top" ID="top"></a>
+<body>
+<a NAME="top" ID="top"></a>
 <h1>eric6.WebBrowser.History.HistoryDialog</h1>
+
 <p>
 Module implementing a dialog to manage history.
 </p>
 <h3>Global Attributes</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
 <h3>Classes</h3>
+
 <table>
+
 <tr>
 <td><a href="#HistoryDialog">HistoryDialog</a></td>
 <td>Class implementing a dialog to manage history.</td>
 </tr>
 </table>
 <h3>Functions</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
-<hr /><hr />
+<hr />
+<hr />
 <a NAME="HistoryDialog" ID="HistoryDialog"></a>
 <h2>HistoryDialog</h2>
+
 <p>
     Class implementing a dialog to manage history.
-</p><h3>Signals</h3>
+</p>
+<h3>Signals</h3>
 <dl>
+
 <dt>newBackgroundTab(QUrl, str)</dt>
 <dd>
 emitted to open a URL in a new
         background tab
-</dd><dt>newPrivateWindow(QUrl, str)</dt>
+</dd>
+<dt>newPrivateWindow(QUrl, str)</dt>
 <dd>
 emitted to open a URL in a new
         private window
-</dd><dt>newTab(QUrl, str)</dt>
+</dd>
+<dt>newTab(QUrl, str)</dt>
 <dd>
 emitted to open a URL in a new tab
-</dd><dt>newWindow(QUrl, str)</dt>
+</dd>
+<dt>newWindow(QUrl, str)</dt>
 <dd>
 emitted to open a URL in a new window
-</dd><dt>openUrl(QUrl, str)</dt>
+</dd>
+<dt>openUrl(QUrl, str)</dt>
 <dd>
 emitted to open a URL in the current tab
 </dd>
@@ -67,142 +81,191 @@
 <h3>Derived from</h3>
 QDialog, Ui_HistoryDialog
 <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="#HistoryDialog.__init__">HistoryDialog</a></td>
 <td>Constructor</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HistoryDialog.__activated">__activated</a></td>
 <td>Private slot to handle the activation of an entry.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HistoryDialog.__copyHistory">__copyHistory</a></td>
 <td>Private slot to copy a history entry's URL to the clipboard.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HistoryDialog.__customContextMenuRequested">__customContextMenuRequested</a></td>
 <td>Private slot to handle the context menu request for the bookmarks tree.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HistoryDialog.__modelReset">__modelReset</a></td>
 <td>Private slot handling a reset of the tree view's model.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HistoryDialog.__openHistory">__openHistory</a></td>
 <td>Private method to open a history entry.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HistoryDialog.__openHistoryInCurrentTab">__openHistoryInCurrentTab</a></td>
 <td>Private slot to open a history entry in the current browser tab.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HistoryDialog.__openHistoryInNewBackgroundTab">__openHistoryInNewBackgroundTab</a></td>
 <td>Private slot to open a history entry in a new background tab.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HistoryDialog.__openHistoryInNewTab">__openHistoryInNewTab</a></td>
 <td>Private slot to open a history entry in a new browser tab.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HistoryDialog.__openHistoryInNewWindow">__openHistoryInNewWindow</a></td>
 <td>Private slot to open a history entry in a new browser window.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#HistoryDialog.__openHistoryInPrivateWindow">__openHistoryInPrivateWindow</a></td>
 <td>Private slot to open a history entry in a new private browser window.</td>
 </tr>
 </table>
 <h3>Static Methods</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
+
 <a NAME="HistoryDialog.__init__" ID="HistoryDialog.__init__"></a>
 <h4>HistoryDialog (Constructor)</h4>
 <b>HistoryDialog</b>(<i>parent=None, manager=None</i>)
+
 <p>
         Constructor
-</p><dl>
+</p>
+<dl>
+
 <dt><i>parent</i></dt>
 <dd>
 reference to the parent widget (QWidget
-</dd><dt><i>manager</i></dt>
+</dd>
+<dt><i>manager</i></dt>
 <dd>
 reference to the history manager object (HistoryManager)
 </dd>
-</dl><a NAME="HistoryDialog.__activated" ID="HistoryDialog.__activated"></a>
+</dl>
+<a NAME="HistoryDialog.__activated" ID="HistoryDialog.__activated"></a>
 <h4>HistoryDialog.__activated</h4>
 <b>__activated</b>(<i>idx</i>)
+
 <p>
         Private slot to handle the activation of an entry.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>idx</i></dt>
 <dd>
 reference to the entry index (QModelIndex)
 </dd>
-</dl><a NAME="HistoryDialog.__copyHistory" ID="HistoryDialog.__copyHistory"></a>
+</dl>
+<a NAME="HistoryDialog.__copyHistory" ID="HistoryDialog.__copyHistory"></a>
 <h4>HistoryDialog.__copyHistory</h4>
 <b>__copyHistory</b>(<i></i>)
+
 <p>
         Private slot to copy a history entry's URL to the clipboard.
-</p><a NAME="HistoryDialog.__customContextMenuRequested" ID="HistoryDialog.__customContextMenuRequested"></a>
+</p>
+<a NAME="HistoryDialog.__customContextMenuRequested" ID="HistoryDialog.__customContextMenuRequested"></a>
 <h4>HistoryDialog.__customContextMenuRequested</h4>
 <b>__customContextMenuRequested</b>(<i>pos</i>)
+
 <p>
         Private slot to handle the context menu request for the bookmarks tree.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>pos</i></dt>
 <dd>
 position the context menu was requested (QPoint)
 </dd>
-</dl><a NAME="HistoryDialog.__modelReset" ID="HistoryDialog.__modelReset"></a>
+</dl>
+<a NAME="HistoryDialog.__modelReset" ID="HistoryDialog.__modelReset"></a>
 <h4>HistoryDialog.__modelReset</h4>
 <b>__modelReset</b>(<i></i>)
+
 <p>
         Private slot handling a reset of the tree view's model.
-</p><a NAME="HistoryDialog.__openHistory" ID="HistoryDialog.__openHistory"></a>
+</p>
+<a NAME="HistoryDialog.__openHistory" ID="HistoryDialog.__openHistory"></a>
 <h4>HistoryDialog.__openHistory</h4>
 <b>__openHistory</b>(<i>newTab=False, background=False, newWindow=False, privateWindow=False</i>)
+
 <p>
         Private method to open a history entry.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>newTab</i> (bool)</dt>
 <dd>
 flag indicating to open the feed message in a new tab
-</dd><dt><i>background</i> (bool)</dt>
+</dd>
+<dt><i>background</i> (bool)</dt>
 <dd>
 flag indicating to open the bookmark in a new
             background tab
-</dd><dt><i>newWindow</i> (bool)</dt>
+</dd>
+<dt><i>newWindow</i> (bool)</dt>
 <dd>
 flag indicating to open the bookmark in a new window
-</dd><dt><i>privateWindow</i> (bool)</dt>
+</dd>
+<dt><i>privateWindow</i> (bool)</dt>
 <dd>
 flag indicating to open the bookmark in a new
             private window
             (boolean)
 </dd>
-</dl><a NAME="HistoryDialog.__openHistoryInCurrentTab" ID="HistoryDialog.__openHistoryInCurrentTab"></a>
+</dl>
+<a NAME="HistoryDialog.__openHistoryInCurrentTab" ID="HistoryDialog.__openHistoryInCurrentTab"></a>
 <h4>HistoryDialog.__openHistoryInCurrentTab</h4>
 <b>__openHistoryInCurrentTab</b>(<i></i>)
+
 <p>
         Private slot to open a history entry in the current browser tab.
-</p><a NAME="HistoryDialog.__openHistoryInNewBackgroundTab" ID="HistoryDialog.__openHistoryInNewBackgroundTab"></a>
+</p>
+<a NAME="HistoryDialog.__openHistoryInNewBackgroundTab" ID="HistoryDialog.__openHistoryInNewBackgroundTab"></a>
 <h4>HistoryDialog.__openHistoryInNewBackgroundTab</h4>
 <b>__openHistoryInNewBackgroundTab</b>(<i></i>)
+
 <p>
         Private slot to open a history entry in a new background tab.
-</p><a NAME="HistoryDialog.__openHistoryInNewTab" ID="HistoryDialog.__openHistoryInNewTab"></a>
+</p>
+<a NAME="HistoryDialog.__openHistoryInNewTab" ID="HistoryDialog.__openHistoryInNewTab"></a>
 <h4>HistoryDialog.__openHistoryInNewTab</h4>
 <b>__openHistoryInNewTab</b>(<i></i>)
+
 <p>
         Private slot to open a history entry in a new browser tab.
-</p><a NAME="HistoryDialog.__openHistoryInNewWindow" ID="HistoryDialog.__openHistoryInNewWindow"></a>
+</p>
+<a NAME="HistoryDialog.__openHistoryInNewWindow" ID="HistoryDialog.__openHistoryInNewWindow"></a>
 <h4>HistoryDialog.__openHistoryInNewWindow</h4>
 <b>__openHistoryInNewWindow</b>(<i></i>)
+
 <p>
         Private slot to open a history entry in a new browser window.
-</p><a NAME="HistoryDialog.__openHistoryInPrivateWindow" ID="HistoryDialog.__openHistoryInPrivateWindow"></a>
+</p>
+<a NAME="HistoryDialog.__openHistoryInPrivateWindow" ID="HistoryDialog.__openHistoryInPrivateWindow"></a>
 <h4>HistoryDialog.__openHistoryInPrivateWindow</h4>
 <b>__openHistoryInPrivateWindow</b>(<i></i>)
+
 <p>
         Private slot to open a history entry in a new private browser window.
 </p>

eric ide

mercurial