diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-09-05 11:14:54 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-09-05 11:14:54 +0200 |
commit | 782c76ab2fe83ca2d47c61b27b07716115969570 (patch) | |
tree | 28ee45643796765a54379024c1f181ad1acaeb54 /src/mainview.h | |
parent | Replaced isNull with isEmpty check.. (diff) | |
download | rekonq-782c76ab2fe83ca2d47c61b27b07716115969570.tar.xz |
Adding method docs
Diffstat (limited to 'src/mainview.h')
-rw-r--r-- | src/mainview.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/mainview.h b/src/mainview.h index 06956d5e..035b4695 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -79,6 +79,13 @@ public: void showTabBar(); void clear(); + /** + * This function creates a new empty tab + * with a webview inside + * @param focused decide if you wannna give focus + * (or not) to this new tab (default true) + * @return the webview embedded in the new tab + */ WebView *newWebView(bool focused = true); signals: @@ -97,7 +104,8 @@ signals: public slots: /** * Core browser slot. This create a new tab with a WebView inside - * for browsing. + * for browsing and follows rekonq settings about opening there a + * home/blank/rekonq page * */ void newTab(); |