summaryrefslogtreecommitdiff
path: root/src/webtab/webtab.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/webtab/webtab.h')
-rw-r--r--src/webtab/webtab.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/webtab/webtab.h b/src/webtab/webtab.h
index a168e55d..5fc06994 100644
--- a/src/webtab/webtab.h
+++ b/src/webtab/webtab.h
@@ -71,7 +71,8 @@ public:
}
KUrl url();
-
+ QString title();
+
bool hasRSSInfo();
void createPreviewSelectorBar(int index);
@@ -107,9 +108,18 @@ private Q_SLOTS:
void toggleInspector(bool);
Q_SIGNALS:
- void loadProgressing();
+ // NOTE: These signals are here to NOT expose webview directly and let
+ // others use webtab instead. This will give us the ability to generate
+ // our own signals when needed.
+ void iconChanged();
+ void loadFinished(bool);
+ void loadProgress (int);
+ void loadStarted();
+ void urlChanged(const QUrl &);
void titleChanged(const QString &);
+ void loadProgressing();
+
void triggerPartPrint();
void infoToShow(QString);