Changeset 29886 in webkit


Ignore:
Timestamp:
Jan 31, 2008, 10:44:38 AM (17 years ago)
Author:
Adam Roben
Message:

Move node highlight drawing code to WebCore

WebCore:

Add node highlight drawing code to InspectorController

The code came from WebKit/win/WebNodeHighlight.cpp. It's not quite as
complete as the Mac implementation (in particular, it doesn't handle
line-box rects), but it's a start.

Reviewed by Darin.

  • page/InspectorController.cpp: (WebCore::InspectorController::drawNodeHighlight): Added.
  • page/InspectorController.h:

WebKit/win:

Move node highlight drawing code to WebCore

Reviewed by Darin.

  • WebNodeHighlight.cpp: (WebNodeHighlight::updateWindow): Call into WebCore to do the node highlight drawing.
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r29885 r29886  
     12008-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
    1152008-01-31  Dan Bernstein  <mitz@apple.com>
    216
  • trunk/WebCore/page/InspectorController.cpp

    r29879 r29886  
    4141#include "FrameLoader.h"
    4242#include "FrameTree.h"
     43#include "GraphicsContext.h"
    4344#include "HTMLFrameOwnerElement.h"
    4445#include "InspectorClient.h"
     
    15781579}
    15791580
     1581void 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
    15801595} // namespace WebCore
  • trunk/WebCore/page/InspectorController.h

    r29837 r29886  
    4040class Database;
    4141class DocumentLoader;
     42class GraphicsContext;
    4243class InspectorClient;
    4344class Node;
     
    120121    void moveWindowBy(float x, float y) const;
    121122
     123    static void drawNodeHighlight(GraphicsContext&, const IntRect& overlayRect, const IntRect& highlightedNodeRect);
     124
    122125private:
    123126    void focusNode();
  • trunk/WebKit/win/ChangeLog

    r29863 r29886  
     12008-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
    1112008-01-29  Adam Roben  <aroben@apple.com>
    212
  • trunk/WebKit/win/WebNodeHighlight.cpp

    r29663 r29886  
    3333#include <WebCore/Color.h>
    3434#include <WebCore/GraphicsContext.h>
     35#include <WebCore/InspectorController.h>
    3536#include <WebCore/WindowMessageBroadcaster.h>
    3637#pragma warning(pop)
     
    124125    void* pixels = 0;
    125126    OwnPtr<HBITMAP> hbmp(::CreateDIBSection(hdc, &bitmapInfo, DIB_RGB_COLORS, &pixels, 0, 0));
    126     if (!hbmp) {
    127         DWORD error = ::GetLastError();
    128         error++;
    129         return;
    130     }
    131127
    132128    ::SelectObject(hdc, hbmp.get());
     
    134130    GraphicsContext context(hdc);
    135131
    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);
    145136
    146137    BLENDFUNCTION bf;
Note: See TracChangeset for help on using the changeset viewer.