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

/macosx-10.9.5/WebKit-7537.78.2/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)
127 if (m_windowRect != oldWindowRect)
128 ::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.9.5/WebCore-7537.78.1/plugins/mac/
H A DPluginViewMac.mm282 m_npWindow.x = m_windowRect.x();
283 m_npWindow.y = m_windowRect.y();
284 m_npWindow.width = m_windowRect.width();
285 m_npWindow.height = m_windowRect.height();
287 m_npWindow.clipRect.left = max(0, m_windowRect.x());
288 m_npWindow.clipRect.top = max(0, m_windowRect.y());
289 m_npWindow.clipRect.right = m_windowRect.x() + m_windowRect.width();
290 m_npWindow.clipRect.bottom = m_windowRect.y() + m_windowRect
[all...]
/macosx-10.9.5/WebCore-7537.78.1/plugins/qt/
H A DPluginViewQt.cpp135 IntRect oldWindowRect = m_windowRect;
138 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
140 m_clipRect.move(-m_windowRect.x(), -m_windowRect.y());
142 if (m_windowRect == oldWindowRect && m_clipRect == oldClipRect)
149 if (!m_isWindowed && m_windowRect.size() != oldWindowRect.size()) {
153 m_drawable = XCreatePixmap(x11Display(), rootWindowID(), m_windowRect.width(), m_windowRect.height(),
168 if (!m_windowRect.intersects(frameView->frameRect())
169 || (s_isRunningUnderDRT && platformPluginWidget() && (m_windowRect !
[all...]
/macosx-10.9.5/WebCore-7537.78.1/plugins/gtk/
H A DPluginViewGtk.cpp128 IntRect oldWindowRect = m_windowRect;
131 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
133 m_clipRect.move(-m_windowRect.x(), -m_windowRect.y());
135 if (m_windowRect == oldWindowRect && m_clipRect == oldClipRect)
141 if (!m_isWindowed && !m_windowRect.isEmpty()) {
147 m_windowRect.width(), m_windowRect.height(),
203 m_windowRect.width(),
204 m_windowRect
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DPopupMenuWin.h63 const IntRect& windowRect() const { return m_windowRect; }
126 IntRect m_windowRect; member in class:WebCore::PopupMenuWin
H A DPopupMenuWin.cpp160 ::MoveWindow(m_popup, m_windowRect.x(), m_windowRect.y(), m_windowRect.width(), m_windowRect.height(), false);
404 m_windowRect = popupRect;
528 IntRect clientRect = m_windowRect;
749 return m_scrollbar ? m_scrollbar->visibleSize() : m_windowRect.height();
754 return m_windowRect.width();
759 return m_windowRect.size();
769 return m_windowRect;
[all...]
/macosx-10.9.5/WebCore-7537.78.1/plugins/blackberry/
H A DPluginViewBlackBerry.cpp105 IntRect oldWindowRect = m_windowRect;
108 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
114 m_windowRect.move(theRoot->scrollOffset());
124 if (!zoomFactorChanged && m_windowRect == oldWindowRect && m_clipRect == oldClipRect)
137 if (m_clipRect.isEmpty() || (platformPluginWidget() && (m_windowRect != oldWindowRect || m_clipRect != oldClipRect || zoomFactorChanged)))
200 draw.pluginRect = toNPRect(m_windowRect);
790 m_npWindow.x = m_windowRect.x();
791 m_npWindow.y = m_windowRect.y();
803 m_npWindow.width = m_windowRect.width();
804 m_npWindow.height = m_windowRect
[all...]
H A DPluginViewPrivateBlackBerry.cpp152 frameView->hostWindow()->platformPageClient()->zoomToContentRect(m_view->m_windowRect);
/macosx-10.9.5/WebCore-7537.78.1/plugins/win/
H A DPluginViewWin.cpp448 IntRect oldWindowRect = m_windowRect;
452 m_windowRect = frameView->contentsToWindow(frameRect());
454 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size());
457 m_clipRect.move(-m_windowRect.x(), -m_windowRect.y());
459 if (platformPluginWidget() && (!m_haveUpdatedPluginWidget || m_windowRect != oldWindowRect || m_clipRect != oldClipRect)) {
477 if (!m_haveUpdatedPluginWidget || m_windowRect != oldWindowRect)
478 ::MoveWindow(platformPluginWidget(), m_windowRect.x(), m_windowRect.y(), m_windowRect
[all...]
/macosx-10.9.5/WebCore-7537.78.1/plugins/
H A DPluginView.h442 IntRect m_windowRect; // Our window rect. member in class:WebCore::PluginView
H A DPluginView.cpp124 IntRect clipRect(m_windowRect);

Completed in 137 milliseconds