• Home
  • Raw
  • Download

Lines Matching refs:WebView

59 LRESULT CALLBACK WebView::webViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)  in webViewWndProc()
61 if (WebView* webView = reinterpret_cast<WebView*>(GetWindowLong(hWnd, 0))) in webViewWndProc()
74 WebView::WebView(HWND hwnd, unsigned features) in WebView() function in WebView
121 WebView::~WebView() in ~WebView()
127 void WebView::initialize(HINSTANCE instanceHandle) in initialize()
137 wc.lpfnWndProc = WebView::webViewWndProc; in initialize()
150 void WebView::cleanup() in cleanup()
155 PassRefPtr<Frame> WebView::createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* … in createFrame()
181 void WebView::runJavaScriptAlert(const String& message) in runJavaScriptAlert()
186 bool WebView::runJavaScriptConfirm(const String& message) in runJavaScriptConfirm()
192 bool WebView::runJavaScriptPrompt(const String& message, const String& defaultValue, String& result) in runJavaScriptPrompt()
198 void WebView::frameRect(RECT* rect) const in frameRect()
203 FrameView* WebView::view() const in view()
208 void WebView::load(LPCWSTR url) in load()
213 void WebView::load(const String &url) in load()
218 void WebView::load(const WebCore::ResourceRequest &request) in load()
223 void WebView::reload() in reload()
228 void WebView::stop() in stop()
233 void WebView::paint(HDC hDC, const IntRect& clipRect) in paint()
248 bool WebView::handlePaint(HWND hWnd) in handlePaint()
279 bool WebView::handleMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in handleMouseEvent()
341 bool WebView::handleMouseWheel(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isHorizontal) in handleMouseWheel()
347 bool WebView::handleKeyDown(WPARAM virtualKeyCode, LPARAM keyData, bool systemKeyDown) in handleKeyDown()
369 bool WebView::handleKeyPress(WPARAM charCode, LPARAM keyData, bool systemKeyDown) in handleKeyPress()
383 bool WebView::handleKeyUp(WPARAM virtualKeyCode, LPARAM keyData, bool systemKeyDown) in handleKeyUp()
391 LRESULT WebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in wndProc()