--- a/Documentation/Source/eric6.WebBrowser.WebBrowserWindow.html Thu Jul 14 18:56:39 2016 +0200 +++ b/Documentation/Source/eric6.WebBrowser.WebBrowserWindow.html Sun Jul 17 15:36:11 2016 +0200 @@ -262,9 +262,6 @@ <td><a href="#WebBrowserWindow.__linkActivated">__linkActivated</a></td> <td>Private slot to handle the selection of a link.</td> </tr><tr> -<td><a href="#WebBrowserWindow.__linksActivated">__linksActivated</a></td> -<td>Private slot to select a topic to be shown.</td> -</tr><tr> <td><a href="#WebBrowserWindow.__lookForNewDocumentation">__lookForNewDocumentation</a></td> <td>Private slot to look for new documentation to be loaded into the help database.</td> </tr><tr> @@ -430,6 +427,9 @@ <td><a href="#WebBrowserWindow.__undo">__undo</a></td> <td>Private slot to handle the undo action.</td> </tr><tr> +<td><a href="#WebBrowserWindow.__unselect">__unselect</a></td> +<td>Private slot to clear the selection of the current browser.</td> +</tr><tr> <td><a href="#WebBrowserWindow.__viewFullScreen">__viewFullScreen</a></td> <td>Private slot called to toggle fullscreen mode.</td> </tr><tr> @@ -538,9 +538,18 @@ <td><a href="#WebBrowserWindow.openUrl">openUrl</a></td> <td>Public slot to load a URL in the current tab.</td> </tr><tr> +<td><a href="#WebBrowserWindow.openUrlNewBackgroundTab">openUrlNewBackgroundTab</a></td> +<td>Public slot to load a URL in a new background tab.</td> +</tr><tr> +<td><a href="#WebBrowserWindow.openUrlNewPrivateWindow">openUrlNewPrivateWindow</a></td> +<td>Public slot to load a URL in a new private window.</td> +</tr><tr> <td><a href="#WebBrowserWindow.openUrlNewTab">openUrlNewTab</a></td> <td>Public slot to load a URL in a new tab.</td> </tr><tr> +<td><a href="#WebBrowserWindow.openUrlNewWindow">openUrlNewWindow</a></td> +<td>Public slot to load a URL in a new window.</td> +</tr><tr> <td><a href="#WebBrowserWindow.preferencesChanged">preferencesChanged</a></td> <td>Public slot to handle a change of preferences.</td> </tr><tr> @@ -1184,20 +1193,6 @@ <dd> URL to be shown (QUrl) </dd> -</dl><a NAME="WebBrowserWindow.__linksActivated" ID="WebBrowserWindow.__linksActivated"></a> -<h4>WebBrowserWindow.__linksActivated</h4> -<b>__linksActivated</b>(<i>links, keyword</i>) -<p> - Private slot to select a topic to be shown. -</p><dl> -<dt><i>links</i></dt> -<dd> -dictionary with help topic as key (string) and - URL as value (QUrl) -</dd><dt><i>keyword</i></dt> -<dd> -keyword for the link set (string) -</dd> </dl><a NAME="WebBrowserWindow.__lookForNewDocumentation" ID="WebBrowserWindow.__lookForNewDocumentation"></a> <h4>WebBrowserWindow.__lookForNewDocumentation</h4> <b>__lookForNewDocumentation</b>(<i></i>) @@ -1522,6 +1517,11 @@ <b>__undo</b>(<i></i>) <p> Private slot to handle the undo action. +</p><a NAME="WebBrowserWindow.__unselect" ID="WebBrowserWindow.__unselect"></a> +<h4>WebBrowserWindow.__unselect</h4> +<b>__unselect</b>(<i></i>) +<p> + Private slot to clear the selection of the current browser. </p><a NAME="WebBrowserWindow.__viewFullScreen" ID="WebBrowserWindow.__viewFullScreen"></a> <h4>WebBrowserWindow.__viewFullScreen</h4> <b>__viewFullScreen</b>(<i></i>) @@ -1834,7 +1834,7 @@ </dd> </dl><a NAME="WebBrowserWindow.newTab" ID="WebBrowserWindow.newTab"></a> <h4>WebBrowserWindow.newTab</h4> -<b>newTab</b>(<i>link=None, addNextTo=None</i>) +<b>newTab</b>(<i>link=None, addNextTo=None, background=False</i>) <p> Public slot called to open a new web browser tab. </p><dl> @@ -1845,6 +1845,20 @@ <dd> reference to the browser to open the tab after (HelpBrowser) +</dd><dt><i>background=</i></dt> +<dd> +flag indicating to open the tab in the + background (bool) +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +reference to the new browser +</dd> +</dl><dl> +<dt>Return Type:</dt> +<dd> +WebBrowserView </dd> </dl><a NAME="WebBrowserWindow.newWindow" ID="WebBrowserWindow.newWindow"></a> <h4>WebBrowserWindow.newWindow</h4> @@ -1856,6 +1870,16 @@ <dd> URL to be displayed in the new window </dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +reference to the new window +</dd> +</dl><dl> +<dt>Return Type:</dt> +<dd> +WebBrowserWindow +</dd> </dl><a NAME="WebBrowserWindow.openSearchManager" ID="WebBrowserWindow.openSearchManager"></a> <h4>WebBrowserWindow.openSearchManager</h4> <b>openSearchManager</b>(<i></i>) @@ -1868,7 +1892,7 @@ </dd> </dl><a NAME="WebBrowserWindow.openUrl" ID="WebBrowserWindow.openUrl"></a> <h4>WebBrowserWindow.openUrl</h4> -<b>openUrl</b>(<i>url, title</i>) +<b>openUrl</b>(<i>url, title=None</i>) <p> Public slot to load a URL in the current tab. </p><dl> @@ -1879,9 +1903,35 @@ <dd> title of the bookmark (string) </dd> +</dl><a NAME="WebBrowserWindow.openUrlNewBackgroundTab" ID="WebBrowserWindow.openUrlNewBackgroundTab"></a> +<h4>WebBrowserWindow.openUrlNewBackgroundTab</h4> +<b>openUrlNewBackgroundTab</b>(<i>url, title=None</i>) +<p> + Public slot to load a URL in a new background tab. +</p><dl> +<dt><i>url</i></dt> +<dd> +URL to be opened (QUrl) +</dd><dt><i>title</i></dt> +<dd> +title of the bookmark (string) +</dd> +</dl><a NAME="WebBrowserWindow.openUrlNewPrivateWindow" ID="WebBrowserWindow.openUrlNewPrivateWindow"></a> +<h4>WebBrowserWindow.openUrlNewPrivateWindow</h4> +<b>openUrlNewPrivateWindow</b>(<i>url, title=None</i>) +<p> + Public slot to load a URL in a new private window. +</p><dl> +<dt><i>url</i></dt> +<dd> +URL to be opened (QUrl) +</dd><dt><i>title</i></dt> +<dd> +title of the bookmark (string) +</dd> </dl><a NAME="WebBrowserWindow.openUrlNewTab" ID="WebBrowserWindow.openUrlNewTab"></a> <h4>WebBrowserWindow.openUrlNewTab</h4> -<b>openUrlNewTab</b>(<i>url, title</i>) +<b>openUrlNewTab</b>(<i>url, title=None</i>) <p> Public slot to load a URL in a new tab. </p><dl> @@ -1892,6 +1942,19 @@ <dd> title of the bookmark (string) </dd> +</dl><a NAME="WebBrowserWindow.openUrlNewWindow" ID="WebBrowserWindow.openUrlNewWindow"></a> +<h4>WebBrowserWindow.openUrlNewWindow</h4> +<b>openUrlNewWindow</b>(<i>url, title=None</i>) +<p> + Public slot to load a URL in a new window. +</p><dl> +<dt><i>url</i></dt> +<dd> +URL to be opened (QUrl) +</dd><dt><i>title</i></dt> +<dd> +title of the bookmark (string) +</dd> </dl><a NAME="WebBrowserWindow.preferencesChanged" ID="WebBrowserWindow.preferencesChanged"></a> <h4>WebBrowserWindow.preferencesChanged</h4> <b>preferencesChanged</b>(<i></i>)