summaryrefslogtreecommitdiff
path: root/src/mainview.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-06-21 01:29:05 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-06-21 01:29:05 +0200
commit8e094f1119d4073e78697052397c42a90c527601 (patch)
treedc6d93eaff6c3fa8b5106520caf161fcb5606350 /src/mainview.h
parentWorking on new notify system... (diff)
downloadrekonq-8e094f1119d4073e78697052397c42a90c527601.tar.xz
New notify system
Diffstat (limited to 'src/mainview.h')
-rw-r--r--src/mainview.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/src/mainview.h b/src/mainview.h
index 36fadfb4..aad99ddd 100644
--- a/src/mainview.h
+++ b/src/mainview.h
@@ -47,6 +47,23 @@ class TabBar;
class UrlBar;
+namespace Rekonq
+{
+ /**
+ * @short notifying message status
+ * Different message status
+ */
+
+ enum Notify
+ {
+ Success, ///< url successfully (down)loaded
+ Error, ///< url failed to (down)load
+ Download, ///< downloading url
+ Info ///< information
+ };
+}
+
+
/**
* This class represent rekonq Main View. It contains all WebViews and a stack widget
* of associated line edits.
@@ -112,6 +129,7 @@ public slots:
* @param url The url to load
*/
void loadUrl(const KUrl &url);
+
void slotCloneTab(int index = -1);
void slotCloseTab(int index = -1);
void slotCloseOtherTabs(int index);
@@ -135,7 +153,6 @@ private slots:
void slotCurrentChanged(int index);
void webViewLoadStarted();
- void webViewLoadProgress(int progress);
void webViewLoadFinished(bool ok);
void webViewIconChanged();
void webViewTitleChanged(const QString &title);