Changeset 29886 in webkit
- Timestamp:
- Jan 31, 2008, 10:44:38 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r29885 r29886 1 2008-01-31 Adam Roben <aroben@apple.com> 2 3 Add node highlight drawing code to InspectorController 4 5 The code came from WebKit/win/WebNodeHighlight.cpp. It's not quite as 6 complete as the Mac implementation (in particular, it doesn't handle 7 line-box rects), but it's a start. 8 9 Reviewed by Darin. 10 11 * page/InspectorController.cpp: 12 (WebCore::InspectorController::drawNodeHighlight): Added. 13 * page/InspectorController.h: 14 1 15 2008-01-31 Dan Bernstein <mitz@apple.com> 2 16 -
trunk/WebCore/page/InspectorController.cpp
r29879 r29886 41 41 #include "FrameLoader.h" 42 42 #include "FrameTree.h" 43 #include "GraphicsContext.h" 43 44 #include "HTMLFrameOwnerElement.h" 44 45 #include "InspectorClient.h" … … 1578 1579 } 1579 1580 1581 void InspectorController::drawNodeHighlight(GraphicsContext& context, const IntRect& overlayRect, const IntRect& highlightedNodeRect) 1582 { 1583 static const Color overlayFillColor(0, 0, 0, 128); 1584 static const int outlineThickness = 1; 1585 1586 context.clipOut(highlightedNodeRect); 1587 1588 context.fillRect(overlayRect, overlayFillColor); 1589 1590 IntRect outlineRect(highlightedNodeRect); 1591 outlineRect.inflate(outlineThickness); 1592 context.fillRect(outlineRect, Color::white); 1593 } 1594 1580 1595 } // namespace WebCore -
trunk/WebCore/page/InspectorController.h
r29837 r29886 40 40 class Database; 41 41 class DocumentLoader; 42 class GraphicsContext; 42 43 class InspectorClient; 43 44 class Node; … … 120 121 void moveWindowBy(float x, float y) const; 121 122 123 static void drawNodeHighlight(GraphicsContext&, const IntRect& overlayRect, const IntRect& highlightedNodeRect); 124 122 125 private: 123 126 void focusNode(); -
trunk/WebKit/win/ChangeLog
r29863 r29886 1 2008-01-31 Adam Roben <aroben@apple.com> 2 3 Move node highlight drawing code to WebCore 4 5 Reviewed by Darin. 6 7 * WebNodeHighlight.cpp: 8 (WebNodeHighlight::updateWindow): Call into WebCore to do the node 9 highlight drawing. 10 1 11 2008-01-29 Adam Roben <aroben@apple.com> 2 12 -
trunk/WebKit/win/WebNodeHighlight.cpp
r29663 r29886 33 33 #include <WebCore/Color.h> 34 34 #include <WebCore/GraphicsContext.h> 35 #include <WebCore/InspectorController.h> 35 36 #include <WebCore/WindowMessageBroadcaster.h> 36 37 #pragma warning(pop) … … 124 125 void* pixels = 0; 125 126 OwnPtr<HBITMAP> hbmp(::CreateDIBSection(hdc, &bitmapInfo, DIB_RGB_COLORS, &pixels, 0, 0)); 126 if (!hbmp) {127 DWORD error = ::GetLastError();128 error++;129 return;130 }131 127 132 128 ::SelectObject(hdc, hbmp.get()); … … 134 130 GraphicsContext context(hdc); 135 131 136 context.clipOut(m_rect); 137 138 FloatRect overlayRect(webViewRect); 139 overlayRect.setLocation(FloatPoint(0, 0)); 140 context.fillRect(overlayRect, Color(0, 0, 0, 128)); 141 142 IntRect outlineRect(m_rect); 143 outlineRect.inflate(1); 144 context.fillRect(outlineRect, Color::white); 132 IntRect overlayRect(webViewRect); 133 overlayRect.setLocation(IntPoint(0, 0)); 134 135 InspectorController::drawNodeHighlight(context, overlayRect, m_rect); 145 136 146 137 BLENDFUNCTION bf;
Note:
See TracChangeset
for help on using the changeset viewer.