summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-04-11 19:18:15 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-04-11 19:18:15 +0200
commit841389f9389a04231920fe7a7b07358fa454b7ff (patch)
tree91111da265ae21493b50f7efc9f243258f454f07 /src
parentFixed lineEdits tabs movements (each site, its url..) (diff)
downloadrekonq-841389f9389a04231920fe7a7b07358fa454b7ff.tar.xz
Added some functions comment
Diffstat (limited to 'src')
-rw-r--r--src/mainview.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mainview.h b/src/mainview.h
index 617d81db..6514c026 100644
--- a/src/mainview.h
+++ b/src/mainview.h
@@ -98,8 +98,12 @@ protected:
public slots:
- void loadUrlInCurrentTab(const KUrl &url);
+ /**
+ * Core browser slot. This create a new tab with a WebView inside
+ * for browsing.
+ */
WebView *newWebView();
+ void loadUrlInCurrentTab(const KUrl &url);
void slotCloneTab(int index = -1);
void slotCloseTab(int index = -1);
void slotCloseOtherTabs(int index);
@@ -132,6 +136,9 @@ private slots:
private:
+ /**
+ * this functions move tab informations "from index to index"
+ */
void moveTab(int fromIndex, int toIndex);
KAction *m_recentlyClosedTabsAction;