Lines Matching defs:WebView

27 #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)
121 WebView::~WebView()
127 void WebView::initialize(HINSTANCE instanceHandle)
137 wc.lpfnWndProc = WebView::webViewWndProc;
150 void WebView::cleanup()
155 PassRefPtr<Frame> WebView::createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement, const String& referrer,
181 void WebView::runJavaScriptAlert(const String& message)
186 bool WebView::runJavaScriptConfirm(const String& message)
192 bool WebView::runJavaScriptPrompt(const String& message, const String& defaultValue, String& result)
198 void WebView::frameRect(RECT* rect) const
203 FrameView* WebView::view() const
208 void WebView::load(LPCWSTR url)
213 void WebView::load(const String &url)
218 void WebView::load(const WebCore::ResourceRequest &request)
223 void WebView::reload()
228 void WebView::stop()
233 void WebView::paint(HDC hDC, const IntRect& clipRect)
248 bool WebView::handlePaint(HWND hWnd)
279 bool WebView::handleMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
341 bool WebView::handleMouseWheel(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isHorizontal)
347 bool WebView::handleKeyDown(WPARAM virtualKeyCode, LPARAM keyData, bool systemKeyDown)
369 bool WebView::handleKeyPress(WPARAM charCode, LPARAM keyData, bool systemKeyDown)
383 bool WebView::handleKeyUp(WPARAM virtualKeyCode, LPARAM keyData, bool systemKeyDown)
391 LRESULT WebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)