Home
last modified time | relevance | path

Searched refs:m_window (Results 1 – 25 of 49) sorted by relevance

12

/external/webkit/Source/WebKit/win/WebCoreSupport/
DEmbeddedWidget.cpp50 if (m_window) in ~EmbeddedWidget()
51 DestroyWindow(m_window); in ~EmbeddedWidget()
56 ASSERT(!m_window); in createWindow()
67 m_window = window; in createWindow()
73 if (!m_window) in invalidateRect()
77 ::InvalidateRect(m_window, &r, false); in invalidateRect()
106 if (!m_window) in frameRectsChanged()
121 ::SetWindowRgn(m_window, rgn, FALSE); in frameRectsChanged()
124 ::SetWindowRgn(m_window, rgn, TRUE); in frameRectsChanged()
128 …::MoveWindow(m_window, m_windowRect.x(), m_windowRect.y(), m_windowRect.width(), m_windowRect.heig… in frameRectsChanged()
[all …]
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
DPlatformVideoWindowGtk.cpp34 m_window = gtk_window_new(GTK_WINDOW_TOPLEVEL); in PlatformVideoWindow()
35 …gtk_widget_set_events(m_window, GDK_POINTER_MOTION_MASK | GDK_KEY_PRESS_MASK | GDK_FOCUS_CHANGE_MA… in PlatformVideoWindow()
39 gtk_container_add(GTK_CONTAINER(m_window), m_videoWindow); in PlatformVideoWindow()
41 gtk_widget_realize(m_window); in PlatformVideoWindow()
44 m_videoWindowId = GDK_WINDOW_XID(gtk_widget_get_window(m_window)); in PlatformVideoWindow()
51 if (m_videoWindow && m_window) { in ~PlatformVideoWindow()
52 gtk_container_remove(GTK_CONTAINER(m_window), m_videoWindow); in ~PlatformVideoWindow()
57 if (m_window) { in ~PlatformVideoWindow()
58 gtk_widget_destroy(m_window); in ~PlatformVideoWindow()
59 m_window = 0; in ~PlatformVideoWindow()
DPlatformVideoWindowQt.cpp111 m_window = new FullScreenVideoWindow(); in PlatformVideoWindow()
112 m_window->setWindowFlags(m_window->windowFlags() | Qt::FramelessWindowHint); in PlatformVideoWindow()
116 m_window->setPalette(p); in PlatformVideoWindow()
117 m_window->showFullScreen(); in PlatformVideoWindow()
118 m_videoWindowId = m_window->winId(); in PlatformVideoWindow()
123 delete m_window; in ~PlatformVideoWindow()
DPlatformVideoWindow.h46 PlatformWidget window() const { return m_window; } in window()
48 PlatformWidget window() const { return m_window.get(); } in window()
56 PlatformWidget m_window; variable
58 RetainPtr<NSView> m_window; variable
DPlatformVideoWindowMac.mm31 m_window.adoptNS([[NSView alloc] init]);
32 m_videoWindowId = reinterpret_cast<unsigned long>(m_window.get());
45 [m_window.get() addSubview:m_videoWindow];
/external/webkit/Source/WebCore/bindings/js/
DJSDOMWindowShell.cpp79 if (m_window) in markChildren()
80 markStack.append(&m_window); in markChildren()
85 return m_window->className(); in className()
90 return m_window->getOwnPropertySlot(exec, propertyName, slot); in getOwnPropertySlot()
95 return m_window->getOwnPropertyDescriptor(exec, propertyName, descriptor); in getOwnPropertyDescriptor()
100 m_window->put(exec, propertyName, value, slot); in put()
105 m_window->putWithAttributes(exec, propertyName, value, attributes); in putWithAttributes()
110 return m_window->defineOwnProperty(exec, propertyName, descriptor, shouldThrow); in defineOwnProperty()
115 return m_window->deleteProperty(exec, propertyName); in deleteProperty()
120 m_window->getPropertyNames(exec, propertyNames, mode); in getPropertyNames()
[all …]
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/win/
DWindowedPluginTest.cpp34 , m_window(0) in WindowedPluginTest()
42 if (newWindow == m_window) in NPP_SetWindow()
45 if (m_window) { in NPP_SetWindow()
46 ::RemovePropW(m_window, instancePointerProperty); in NPP_SetWindow()
47 ::SetWindowLongPtr(m_window, GWLP_WNDPROC, reinterpret_cast<LONG_PTR>(m_originalWndProc)); in NPP_SetWindow()
51 m_window = newWindow; in NPP_SetWindow()
52 if (!m_window) in NPP_SetWindow()
55 …m_originalWndProc = reinterpret_cast<WNDPROC>(::SetWindowLongPtrW(m_window, GWLP_WNDPROC, reinterp… in NPP_SetWindow()
56 ::SetPropW(m_window, instancePointerProperty, this); in NPP_SetWindow()
DWindowedPluginTest.h35 HWND window() const { return m_window; } in window()
46 HWND m_window; variable
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
DFullscreenVideoController.cpp140 , m_window(0) in FullscreenVideoController()
178 GdkWindow* window = gtk_widget_get_window(m_window); in showHud()
213 GdkWindow* window = gtk_widget_get_window(m_window); in hideHud()
265 m_window = reinterpret_cast<GtkWidget*>(m_gstreamerGWorld->platformVideoWindow()->window()); in enterFullscreen()
277 gtk_widget_modify_bg(m_window, GTK_STATE_NORMAL, &color); in enterFullscreen()
280 gtk_widget_override_background_color(m_window, GTK_STATE_FLAG_NORMAL, &color); in enterFullscreen()
282 gtk_widget_set_double_buffered(m_window, FALSE); in enterFullscreen()
284 g_signal_connect(m_window, "key-press-event", G_CALLBACK(onFullscreenGtkKeyPressEvent), this); in enterFullscreen()
285 g_signal_connect(m_window, "destroy", G_CALLBACK(onFullscreenGtkDestroy), this); in enterFullscreen()
286 …g_signal_connect(m_window, "notify::is-active", G_CALLBACK(onFullscreenGtkActiveNotification), thi… in enterFullscreen()
[all …]
/external/webkit/Tools/TestWebKitAPI/mac/
DPlatformWebViewMac.mm38m_window = [[NSWindow alloc] initWithContentRect:windowRect styleMask:NSBorderlessWindowMask backi…
39 [m_window setColorSpace:[[NSScreen mainScreen] colorSpace]];
40 [[m_window contentView] addSubview:m_view];
41 [m_window orderBack:nil];
42 [m_window setAutodisplay:NO];
43 [m_window setReleasedWhenClosed:NO];
53 [m_window close];
54 [m_window release];
74 windowNumber:[m_window windowNumber]
87 windowNumber:[m_window windowNumber]
[all …]
/external/webkit/Source/WebCore/plugins/android/
DPluginViewAndroid.cpp190 m_window = new PluginWidgetAndroid(this); in platformInit()
203 delete m_window; in platformDestroy()
208 return (PlatformLayer*) m_window->getLayer(); in platformLayer()
214 if (!m_window->isAcceptingEvent(kTouch_ANPEventFlag)) in handleTouchEvent()
217 if (!m_window->inFullScreen() && m_parentFrame->document()->focusedNode() != m_element) in handleTouchEvent()
265 if (m_window->sendEvent(evt)) in handleTouchEvent()
300 if (m_window->sendEvent(evt)) { in handleMouseEvent()
322 m_window->sendEvent(evt); in handleFocusEvent()
327 m_window->webViewCore()->contentInvalidate(rect); in handleFocusEvent()
332 if (!m_window->isAcceptingEvent(kKey_ANPEventFlag)) in handleKeyboardEvent()
[all …]
/external/webkit/Tools/WebKitAPITest/
DHostWindow.cpp33 : m_window(0) in HostWindow()
40m_window = CreateWindowExW(0, hostWindowClassName, L"WebKitAPITest", WS_OVERLAPPEDWINDOW, CW_USEDE… in initialize()
41 return m_window; in initialize()
46 if (!IsWindow(m_window)) in ~HostWindow()
48 DestroyWindow(m_window); in ~HostWindow()
54 if (!GetClientRect(m_window, &rect)) { in clientRect()
DHostWindow.h41 HWND window() const { return m_window; } in window()
47 HWND m_window; variable
/external/webkit/Tools/WebKitTestRunner/qt/
DPlatformWebViewQt.cpp58 , m_window(new QMainWindow()) in PlatformWebView()
60 m_view->setParent(m_window); in PlatformWebView()
61 m_window->setCentralWidget(m_view); in PlatformWebView()
62 m_window->setGeometry(0, 0, 800, 600); in PlatformWebView()
67 delete m_window; in ~PlatformWebView()
72 m_window->resize(width, height); in resizeTo()
/external/webkit/Source/WebKit2/UIProcess/win/
DWebView.cpp283m_window = ::CreateWindowExW(0, kWebKit2WebViewWindowClassName, 0, WS_CHILD | WS_CLIPSIBLINGS | WS… in WebView()
285 ASSERT(::IsWindow(m_window)); in WebView()
289 ASSERT(m_isVisible == static_cast<bool>(::GetWindowLong(m_window, GWL_STYLE) & WS_VISIBLE)); in WebView()
313 ::RegisterDragDrop(m_window, this); in initialize()
320 …KETRACKPOINTHSCROLLBAR"), WS_CHILD | WS_VISIBLE | SBS_HORZ, 0, 0, 0, 0, m_window, 0, instanceHandl… in initialize()
321 …KETRACKPOINTVSCROLLBAR"), WS_CHILD | WS_VISIBLE | SBS_VERT, 0, 0, 0, 0, m_window, 0, instanceHandl… in initialize()
332 if (m_window) { in setParentWindow()
334 if (::GetParent(m_window) == parentWindow) in setParentWindow()
337 ::SetParent(m_window, parentWindow); in setParentWindow()
343 ::SetParent(m_window, HWND_MESSAGE); in setParentWindow()
[all …]
DWebContextMenuProxyWin.cpp36 : m_window(parentWindow) in WebContextMenuProxyWin()
86 if (!::ClientToScreen(m_window, &point)) in showContextMenu()
90 int selectedCommand = ::TrackPopupMenuEx(m_menu, flags, point.x, point.y, m_window, 0); in showContextMenu()
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/win/
DNetscapePluginWin.cpp69 m_window = 0; in platformPostInitialize()
75m_window = ::CreateWindowExW(0, windowClassName, 0, WS_CHILD | WS_VISIBLE, 0, 0, 0, 0, containingW… in platformPostInitialize()
76 if (!m_window) in platformPostInitialize()
83 m_npWindow.window = m_window; in platformPostInitialize()
91 ASSERT(!m_window); in platformDestroy()
95 if (!::IsWindow(m_window)) in platformDestroy()
97 ::DestroyWindow(m_window); in platformDestroy()
106 ::InvalidateRect(m_window, &rect, FALSE); in platformInvalidate()
131 setWindowRegion(m_window, clipRegion.release(), Redraw); in platformGeometryDidChange()
135 …::MoveWindow(m_window, m_frameRect.x(), m_frameRect.y(), m_frameRect.width(), m_frameRect.height()… in platformGeometryDidChange()
/external/webkit/Tools/WebKitTestRunner/mac/
DPlatformWebViewMac.mm36m_window = [[NSWindow alloc] initWithContentRect:windowRect styleMask:NSBorderlessWindowMask backi…
37 [m_window setColorSpace:[NSColorSpace genericRGBColorSpace]];
38 [[m_window contentView] addSubview:m_view];
39 [m_window orderBack:nil];
40 [m_window setAutodisplay:NO];
41 [m_window setReleasedWhenClosed:NO];
51 [m_window close];
52 [m_window release];
68 NSRect frame = [m_window frame];
80 …[m_window setFrame:NSMakeRect(frame.origin.x, frame.origin.y, frame.size.width, frame.size.height)…
/external/webkit/Source/WebCore/platform/graphics/ca/win/
DCACFLayerTreeHost.cpp131 , m_window(0) in CACFLayerTreeHost()
172 if (window == m_window) in setWindow()
179 ASSERT(!m_window); in setWindow()
184 ASSERT(m_window); in setWindow()
193 if (m_window) in setWindow()
196 m_window = window; in setWindow()
272 getDirtyRects(m_window, dirtyRects); in paint()
325 GetClientRect(m_window, &clientRect); in bounds()
/external/webkit/Tools/MiniBrowser/win/
DBrowserWindow.cpp40 : m_window(0) in BrowserWindow()
56 browserWindow->m_window = window; in BrowserWindowWndProc()
105 assert(!m_window); in createWindow()
129 assert(m_window); in showWindow()
131 ::ShowWindow(m_window, SW_SHOWNORMAL); in showWindow()
146 0, 0, 0, 0, m_window, 0, createStruct->hInstance, 0); in onCreate()
213 ::PostMessage(m_window, WM_CLOSE, 0, 0); in onCommand()
216 HMENU menu = ::GetMenu(m_window); in onCommand()
DBrowserWindow.h47 HWND window() const { return m_window; } in window()
63 HWND m_window; variable
/external/webkit/Tools/WebKitTestRunner/win/
DPlatformWebViewWin.cpp56m_window = CreateWindowExW(0, hostWindowClassName, L"WebKitTestRunner", WS_OVERLAPPEDWINDOW, 0 /*X… in PlatformWebView()
57 m_view = WKViewCreate(viewRect, contextRef, pageGroupRef, m_window); in PlatformWebView()
63 if (::IsWindow(m_window)) in ~PlatformWebView()
64 ::DestroyWindow(m_window); in ~PlatformWebView()
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
DNPNInvalidateRectInvalidatesWindow.cpp46 HWND m_window; member in TemporaryWindowMover
51 : m_window(window) in TemporaryWindowMover()
55 if (!::GetWindowRect(m_window, &m_savedWindowRect)) in TemporaryWindowMover()
58 if (!::SetWindowPos(m_window, 0, 0, 0, 0, 0, SWP_SHOWWINDOW | standardSetWindowPosFlags)) in TemporaryWindowMover()
69 …::SetWindowPos(m_window, 0, m_savedWindowRect.left, m_savedWindowRect.top, 0, 0, SWP_HIDEWINDOW | … in ~TemporaryWindowMover()
/external/webkit/Source/WebCore/dom/
DWindowEventContext.cpp49 m_window = static_cast<Document*>(topLevelContainer)->domWindow(); in WindowEventContext()
55 if (!m_window) in handleLocalEvents()
60 m_window->fireEventListeners(event); in handleLocalEvents()
DWindowEventContext.h49 RefPtr<DOMWindow> m_window;
55 return m_window.get(); in window()

12