summaryrefslogtreecommitdiffstats
path: root/lib/web_contents_delegate_qt.h
diff options
context:
space:
mode:
authorPierre Rossi <pierre.rossi@digia.com>2013-07-10 16:27:48 +0200
committerPierre Rossi <pierre.rossi@gmail.com>2013-07-31 13:39:50 +0200
commit67d042d04f2b6cbe98f4eba2a50ed0d374165cae (patch)
treeff24cf732fa98750400a29354219ffbd70c84e1c /lib/web_contents_delegate_qt.h
parent519367a98334b658a93ed1ba096dba92858445c7 (diff)
Split out the Widgets and QtQuick integration
This is the first step to making proper Qt Modules out of QtWebEngine. The Widgets integration becomes a proper C++ Qt Module while we make the QtQuick side a QML plugin for now (could probably be promoted if the need arises). Code-wise, this means the introduction of a WebContentsAdapterClient interface that is subclassed by the private implementation of our API classes for delegation of things that are UI specific. Functionality from WebContents and the like is exposed via the WebContentsAdapter. Change-Id: I4ca3395b9fe8502a24e36002cfd5af44067bb6e8 Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com>
Diffstat (limited to 'lib/web_contents_delegate_qt.h')
-rw-r--r--lib/web_contents_delegate_qt.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/web_contents_delegate_qt.h b/lib/web_contents_delegate_qt.h
index dac00b980..85fffcba9 100644
--- a/lib/web_contents_delegate_qt.h
+++ b/lib/web_contents_delegate_qt.h
@@ -52,11 +52,10 @@ namespace content {
class BrowserContext;
class SiteInstance;
}
+class WebContentsAdapterClient;
-class WebContentsDelegateQt : public QObject
- , public content::WebContentsDelegate
+class WebContentsDelegateQt : public content::WebContentsDelegate
{
- Q_OBJECT
public:
WebContentsDelegateQt(content::BrowserContext*, content::SiteInstance*, int routing_id, const gfx::Size& initial_size);
content::WebContents* web_contents();
@@ -64,13 +63,10 @@ public:
virtual void NavigationStateChanged(const content::WebContents* source, unsigned changed_flags);
virtual void LoadingStateChanged(content::WebContents* source);
-Q_SIGNALS:
- void titleChanged(const QString& title);
- void urlChanged(const QUrl& url);
- void loadingStateChanged();
-
private:
scoped_ptr<content::WebContents> m_webContents;
+ WebContentsAdapterClient *m_viewClient;
+ friend class WebContentsAdapter;
};
#endif