Home
last modified time | relevance | path

Searched refs:m_frameRect (Results 1 – 16 of 16) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/win/
DNetscapePluginWin.cpp128 clipRectInPluginWindowCoordinates.move(-m_frameRect.x(), -m_frameRect.y()); in platformGeometryDidChange()
135 …::MoveWindow(m_window, m_frameRect.x(), m_frameRect.y(), m_frameRect.width(), m_frameRect.height()… in platformGeometryDidChange()
155 windowpos.x = m_frameRect.x(); in platformPaint()
156 windowpos.y = m_frameRect.y(); in platformPaint()
157 windowpos.cx = m_frameRect.width(); in platformPaint()
158 windowpos.cy = m_frameRect.height(); in platformPaint()
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/
DNetscapePluginX11.cpp191 …m_drawable = XCreatePixmap(display, rootWindowID(), m_frameRect.width(), m_frameRect.height(), dis… in platformGeometryDidChange()
215 painter->translate(m_frameRect.x(), m_frameRect.y()); in platformPaint()
229 exposedRect.intersect(m_frameRect); in platformPaint()
230 exposedRect.move(-m_frameRect.x(), -m_frameRect.y()); in platformPaint()
249 painter->translate(-m_frameRect.x(), -m_frameRect.y()); in platformPaint()
344 setXButtonEventFields(xEvent, event, m_frameRect.location()); in platformHandleMouseEvent()
347 setXMotionEventFields(xEvent, event, m_frameRect.location()); in platformHandleMouseEvent()
379 setXCrossingEventFields(xEvent, event, m_frameRect.location(), EnterNotify); in platformHandleMouseEnterEvent()
391 setXCrossingEventFields(xEvent, event, m_frameRect.location(), LeaveNotify); in platformHandleMouseLeaveEvent()
/external/webkit/Source/WebCore/rendering/
DRenderBox.h47 int x() const { return m_frameRect.x(); } in x()
48 int y() const { return m_frameRect.y(); } in y()
49 int width() const { return m_frameRect.width(); } in width()
50 int height() const { return m_frameRect.height(); } in height()
52 void setX(int x) { m_frameRect.setX(x); } in setX()
53 void setY(int y) { m_frameRect.setY(y); } in setY()
54 void setWidth(int width) { m_frameRect.setWidth(width); } in setWidth()
55 void setHeight(int height) { m_frameRect.setHeight(height); } in setHeight()
100 IntPoint location() const { return m_frameRect.location(); } in location()
102 IntSize size() const { return m_frameRect.size(); } in size()
[all …]
DRenderBlock.h400 , m_frameRect(frameRect) in FloatingObject()
415 int x() const { ASSERT(isPlaced()); return m_frameRect.x(); } in x()
416 int maxX() const { ASSERT(isPlaced()); return m_frameRect.maxX(); } in maxX()
417 int y() const { ASSERT(isPlaced()); return m_frameRect.y(); } in y()
418 int maxY() const { ASSERT(isPlaced()); return m_frameRect.maxY(); } in maxY()
419 int width() const { return m_frameRect.width(); } in width()
420 int height() const { return m_frameRect.height(); } in height()
422 void setX(int x) { m_frameRect.setX(x); } in setX()
423 void setY(int y) { m_frameRect.setY(y); } in setY()
424 void setWidth(int width) { m_frameRect.setWidth(width); } in setWidth()
[all …]
DRenderBox.cpp1511 m_frameRect = rect; in repaintDuringLayoutIfMoved()
1514 m_frameRect = IntRect(newX, newY, newWidth, newHeight); in repaintDuringLayoutIfMoved()
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
DNetscapePlugin.cpp113 rect = IntRect(0, 0, m_frameRect.width(), m_frameRect.height()); in invalidate()
364 m_npWindow.x = m_frameRect.x(); in callSetWindow()
365 m_npWindow.y = m_frameRect.y(); in callSetWindow()
367 m_npWindow.width = m_frameRect.width(); in callSetWindow()
368 m_npWindow.height = m_frameRect.height(); in callSetWindow()
516 if (!supportsSnapshotting() || m_frameRect.isEmpty()) in snapshot()
521 …RefPtr<ShareableBitmap> bitmap = ShareableBitmap::createShareable(m_frameRect.size(), ShareableBit… in snapshot()
524 context->translate(-m_frameRect.x(), -m_frameRect.y()); in snapshot()
526 platformPaint(context.get(), m_frameRect, true); in snapshot()
540 if (m_frameRect == frameRect && m_clipRect == clipRect) { in geometryDidChange()
[all …]
DNetscapePlugin.h201 WebCore::IntRect m_frameRect; variable
/external/webkit/Source/WebKit2/PluginProcess/
DPluginControllerProxy.cpp152 graphicsContext->translate(-m_frameRect.x(), -m_frameRect.y()); in paint()
187 dirtyRect.move(m_frameRect.x(), m_frameRect.y()); in invalidate()
190 dirtyRect.intersect(m_frameRect); in invalidate()
367 m_frameRect = frameRect; in geometryDidChange()
474 if (m_frameRect.isEmpty()) in paintEntirePlugin()
477 m_dirtyRect = m_frameRect; in paintEntirePlugin()
DPluginControllerProxy.h153 WebCore::IntRect m_frameRect; variable
/external/webkit/Source/WebKit2/WebProcess/Plugins/
DPluginProxy.cpp137 …ingStore->paint(*graphicsContext, IntPoint(), IntRect(0, 0, m_frameRect.width(), m_frameRect.heigh… in paint()
143 dirtyRectInPluginCoordinates.move(-m_frameRect.x(), -m_frameRect.y()); in paint()
174 m_frameRect = frameRect; in geometryDidChange()
462 if (paintedRect == m_frameRect) in update()
466 paintedRectPluginCoordinates.move(-m_frameRect.x(), -m_frameRect.y()); in update()
DPluginProxy.h130 WebCore::IntRect m_frameRect; variable
/external/webkit/Source/WebKit2/PluginProcess/mac/
DPluginControllerProxyMac.mm77 [pluginLayer setFrame:CGRectMake(0, 0, m_frameRect.width(), m_frameRect.height())];
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
DNetscapePluginMac.mm387 context->translate(m_frameRect.x(), m_frameRect.y());
398 event.data.draw.x = dirtyRect.x() - m_frameRect.x();
399 event.data.draw.y = dirtyRect.y() - m_frameRect.y();
502 NPCocoaEvent event = initializeMouseEvent(mouseEvent, m_frameRect.location());
569 event.data.mouse.pluginX = wheelEvent.position().x() - m_frameRect.x();
570 event.data.mouse.pluginY = wheelEvent.position().y() - m_frameRect.y();
598 fillInCocoaEventFromMouseEvent(event, mouseEvent, m_frameRect.location());
624 fillInCocoaEventFromMouseEvent(event, mouseEvent, m_frameRect.location());
/external/webkit/Source/WebKit2/
DChangeLog1720 Remove the parameters to platformGeometryDidChange and just use m_frameRect instead.
DChangeLog-2011-02-1633611 m_frameRect.
/external/webkit/Source/WebCore/
DChangeLog-2009-06-1650176 …Properly encapsulate m_frameRect.y() behind the RenderBox::y() method now that they are the same t…
50177 Make m_frameRect private.