Searched refs:m_windowRect (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10/WebKit-7600.1.25/win/WebCoreSupport/
H A DEmbeddedWidget.cpp99 IntRect oldWindowRect = m_windowRect;
102 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
104 m_clipRect.move(-m_windowRect.x(), -m_windowRect.y());
109 if (m_windowRect == oldWindowRect && m_clipRect == oldClipRect)
125 if (m_windowRect != oldWindowRect)
126 ::MoveWindow(m_window, m_windowRect.x(), m_windowRect.y(), m_windowRect.width(), m_windowRect
[all...]
H A DEmbeddedWidget.h83 WebCore::IntRect m_windowRect; // Our window rect. member in class:EmbeddedWidget
/macosx-10.10/WebCore-7600.1.25/plugins/mac/
H A DPluginViewMac.mm278 m_npWindow.x = m_windowRect.x();
279 m_npWindow.y = m_windowRect.y();
280 m_npWindow.width = m_windowRect.width();
281 m_npWindow.height = m_windowRect.height();
283 m_npWindow.clipRect.left = max(0, m_windowRect.x());
284 m_npWindow.clipRect.top = max(0, m_windowRect.y());
285 m_npWindow.clipRect.right = m_windowRect.x() + m_windowRect.width();
286 m_npWindow.clipRect.bottom = m_windowRect.y() + m_windowRect
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/win/
H A DPopupMenuWin.h60 const IntRect& windowRect() const { return m_windowRect; }
123 IntRect m_windowRect; member in class:WebCore::PopupMenuWin
H A DPopupMenuWin.cpp155 ::MoveWindow(m_popup, m_windowRect.x(), m_windowRect.y(), m_windowRect.width(), m_windowRect.height(), false);
401 m_windowRect = popupRect;
525 IntRect clientRect = m_windowRect;
750 return IntSize(m_windowRect.width(), m_scrollbar ? m_scrollbar->visibleSize() : m_windowRect.height());
755 return m_windowRect.size();
760 return m_windowRect;
[all...]
/macosx-10.10/WebCore-7600.1.25/plugins/win/
H A DPluginViewWin.cpp425 IntRect oldWindowRect = m_windowRect;
429 m_windowRect = frameView->contentsToWindow(frameRect());
431 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
434 m_clipRect.move(-m_windowRect.x(), -m_windowRect.y());
436 if (platformPluginWidget() && (!m_haveUpdatedPluginWidget || m_windowRect != oldWindowRect || m_clipRect != oldClipRect)) {
453 if (!m_haveUpdatedPluginWidget || m_windowRect != oldWindowRect)
454 ::MoveWindow(platformPluginWidget(), m_windowRect.x(), m_windowRect.y(), m_windowRect
[all...]
/macosx-10.10/WebCore-7600.1.25/plugins/
H A DPluginView.h411 IntRect m_windowRect; // Our window rect. member in class:WebCore::PluginView
H A DPluginView.cpp126 IntRect clipRect(m_windowRect);

Completed in 184 milliseconds