Changeset 12899 in webkit


Ignore:
Timestamp:
Feb 19, 2006 10:37:19 AM (18 years ago)
Author:
darin
Message:
  • WebKitSystemInterface.h: Added WKDrawFocusRing.
  • libWebKitSystemInterface.a: Ditto.
Location:
trunk/WebKitLibraries
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitLibraries/ChangeLog

    r12605 r12899  
     12006-02-19  Darin Adler  <darin@apple.com>
     2
     3        * WebKitSystemInterface.h: Added WKDrawFocusRing.
     4        * libWebKitSystemInterface.a: Ditto.
     5
    162006-02-06  John Sullivan  <sullivan@apple.com>
    27
  • trunk/WebKitLibraries/WebKitSystemInterface.h

    r12605 r12899  
    11/*     
    22    WebKitSystemInterface.h
    3     Copyright (C) 2005 Apple Computer, Inc. All rights reserved.   
    4    
     3    Copyright (C) 2005, 2006 Apple Computer, Inc. All rights reserved.   
     4
    55    Public header file.
    66*/
     
    8888    void *context);
    8989
     90void WKDrawFocusRing(CGContextRef context, CGRect clipRect, CGColorRef color, int radius);
     91    // Ignore the context's clipping.
     92    // The CG context's current path is the focus ring's path.
     93    // A color of 0 means "use system focus ring color".
     94    // A radius of 0 means "use default focus ring radius".
     95
    9096void WKSetFocusRingStyle(NSFocusRingPlacement placement, int radius, NSColor *color);
     97    // Deprecated (even more than the rest of this file).
     98    // Keeping this here until WebKit switches entirely to WKDrawFocusRing.
     99
    91100void WKSetDragImage(NSImage *image, NSPoint offset);
    92101
Note: See TracChangeset for help on using the changeset viewer.