Searched defs:WebView (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebKit/qt/tests/hybridPixmap/
H A Dwidget.h28 typedef QWebView WebView; typedef
/external/webkit/Source/WebKit/chromium/public/
H A DWebView.h57 class WebView : public WebWidget { class in namespace:WebKit
84 // Creates a WebView that is NOT yet initialized. You will need to
87 WEBKIT_API static WebView* create(WebViewClient*);
89 // After creating a WebView, you should immediately call this method.
103 // The returned pointer is valid for the lifetime of the WebView.
111 // Makes the WebView transparent. This is useful if you want to have
125 // Controls the WebView's active state, which may affect the rendering
214 // WebView (if there is such an image)
217 // Notifies the WebView that a drag has terminated.
222 // Notifies the WebView tha
[all...]
/external/webkit/Tools/WebKitTestRunner/qt/
H A DPlatformWebViewQt.cpp36 class WebView : public QGraphicsView { class in namespace:WTR
38 WebView(WKContextRef);
42 virtual ~WebView() { delete m_item; }
48 WebView::WebView(WKContextRef contextRef) function in class:WTR::WebView
57 : m_view(new WebView(contextRef))
/external/webkit/Source/WebKit/wince/
H A DWebView.h45 class WebView { class
52 WebView(HWND hwnd, unsigned features = EnableDoubleBuffering);
53 ~WebView();
H A DWebView.cpp27 #include "WebView.h"
59 LRESULT CALLBACK WebView::webViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
61 if (WebView* webView = reinterpret_cast<WebView*>(GetWindowLong(hWnd, 0)))
74 WebView::WebView(HWND hwnd, unsigned features) function in class:WebView
121 WebView::~WebView()
127 void WebView::initialize(HINSTANCE instanceHandle)
137 wc.lpfnWndProc = WebView
[all...]
/external/webkit/Source/WebKit2/UIProcess/gtk/
H A DWebView.h47 class WebView : public RefCounted<WebView>, public PageClient { class in namespace:WebKit
49 ~WebView();
50 static PassRefPtr<WebView> create(WebContext* context, WebPageGroup* pageGroup)
52 return adoptRef(new WebView(context, pageGroup));
71 WebView(WebContext*, WebPageGroup*);
124 // Members of WebView class
H A DWebView.cpp29 #include "WebView.h"
48 void WebView::handleFocusInEvent(GtkWidget* widget)
58 void WebView::handleFocusOutEvent(GtkWidget* widget)
65 static void backspaceCallback(GtkWidget* widget, WebView* client)
71 static void selectAllCallback(GtkWidget* widget, gboolean select, WebView* client)
77 static void cutClipboardCallback(GtkWidget* widget, WebView* client)
83 static void copyClipboardCallback(GtkWidget* widget, WebView* client)
89 static void pasteClipboardCallback(GtkWidget* widget, WebView* client)
125 static void deleteFromCursorCallback(GtkWidget* widget, GtkDeleteType deleteType, gint count, WebView* client)
184 static void moveCursorCallback(GtkWidget* widget, GtkMovementStep step, gint count, gboolean extendSelection, WebView* clien
240 WebView::WebView(WebContext* context, WebPageGroup* pageGroup) function in class:WebKit::WebView
[all...]
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebView.h49 class WebView : public APIObject, public PageClient, WebCore::WindowMessageListener, public IDropTarget { class in namespace:WebKit
51 static PassRefPtr<WebView> create(RECT rect, WebContext* context, WebPageGroup* pageGroup, HWND parentWindow)
53 RefPtr<WebView> webView = adoptRef(new WebView(rect, context, pageGroup, parentWindow));
57 ~WebView();
89 WebView(RECT, WebContext*, WebPageGroup*, HWND parentWindow);
H A DWebView.cpp27 #include "WebView.h"
106 LRESULT CALLBACK WebView::WebViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
110 if (WebView* webView = reinterpret_cast<WebView*>(longPtr))
116 // Associate the WebView with the window.
124 LRESULT WebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
237 bool WebView::registerWebViewWindowClass()
248 wcex.lpfnWndProc = WebView::WebViewWndProc;
250 wcex.cbWndExtra = sizeof(WebView*);
262 WebView function in class:WebKit::WebView
[all...]
/external/webkit/Source/WebKit/win/
H A DWebView.h64 WebView* kit(WebCore::Page*);
69 class WebView class in inherits:IWebView,IWebViewPrivate,IWebIBActions,IWebViewCSS,IWebViewEditing,IWebViewUndoableEditing,IWebViewEditingActions,IWebNotificationObserver,IDropTarget,WebCore::WindowMessageListener,WebCore::GraphicsLayerClient,WebCore::CACFLayerTreeHostClient
86 static WebView* createInstance();
88 WebView();
89 ~WebView();
826 // WebView
H A DWebView.cpp27 #include "WebView.h"
186 static HashSet<WebView*> pendingDeleteBackingStoreSet;
190 WebView* kit(Page* page)
262 if (!WebView::didSetCacheModel() || cacheModel > WebView::cacheModel())
263 WebView::setCacheModel(cacheModel);
264 else if (cacheModel < WebView::cacheModel()) {
269 WebView::setCacheModel(max(sharedPreferencesCacheModel, WebView::maxCacheModelInAnyInstance()));
279 if (cacheModel == WebView
323 WebView::WebView() function in class:WebView
[all...]
/external/webkit/Source/WebKit/android/nav/
H A DWebView.cpp66 #define GET_NATIVE_VIEW(env, obj) ((WebView*)env->GetIntField(obj, gWebViewField))
101 // of the multi-threaded WebView.
102 class WebView class in namespace:android
111 enum DrawExtras { // keep this in sync with WebView.java
140 WebView(JNIEnv* env, jobject javaWebView, int viewImpl, WTF::String drawableDir, function in class:android::WebView
188 ~WebView()
286 ALOG_ASSERT(m_javaGlue.m_obj, "A java object was not associated with this native WebView!");
332 ALOG_ASSERT(m_javaGlue.m_obj, "A java object was not associated with this native WebView!");
344 ALOG_ASSERT(m_javaGlue.m_obj, "A java object was not associated with this native WebView!");
430 getDrawExtra(WebView
784 GLDrawFunctor(WebView* _wvInstance, int (WebView::*_funcPtr)(WebCore::IntRect&, WebCore::IntRect*, WebCore::IntRect&, int, WebCore::IntRect&, jfloat, jint, bool), WebCore::IntRect _invScreenRect, float _scale, int _extras) argument
[all...]

Completed in 1619 milliseconds