summaryrefslogtreecommitdiff
path: root/src/application.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-10-20 12:01:27 +0200
committerAndrea Diamantini <adjam7@gmail.com>2012-12-10 02:48:05 +0100
commitb204e6254bd0c2227bbbb81519a0ddcf174d2ad4 (patch)
tree0badb3885331b2d700388e96ac59532d6b7dd867 /src/application.h
parentEnable incognito mode by calling "rekonq --incognito URL" :) (diff)
downloadrekonq-b204e6254bd0c2227bbbb81519a0ddcf174d2ad4.tar.xz
enable webapp mode by calling "rekonq --webapp URL" :D
NOTE: in my opinion, this is a great feature that needs a lot of attention and testing. But it's really cool to see how it works... ;)
Diffstat (limited to 'src/application.h')
-rw-r--r--src/application.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/application.h b/src/application.h
index 0b3711ac..3750547c 100644
--- a/src/application.h
+++ b/src/application.h
@@ -42,9 +42,11 @@
class TabWindow;
class WebWindow;
+class WebTab;
-typedef QList< QWeakPointer<TabWindow> > TabWindowList;
+typedef QList< QWeakPointer<TabWindow> > TabWindowList;
+typedef QList<WebTab *> WebAppList;
// ---------------------------------------------------------------------------------------------------------------
@@ -113,6 +115,7 @@ private Q_SLOTS:
private:
TabWindowList m_tabWindows;
+ WebAppList m_webApps;
};
#endif // APPLICATION_H