blob: 52271389fca022ae8cf9082fccac0e2d0efff447 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/common/cursors/webcursor.h"
#import <AppKit/AppKit.h>
#include <stddef.h>
#include "base/logging.h"
#include "base/mac/scoped_cftyperef.h"
#include "base/mac/sdk_forward_declarations.h"
#include "content/app/resources/grit/content_resources.h"
#include "content/public/common/content_client.h"
#include "skia/ext/skia_utils_mac.h"
#include "third_party/blink/public/platform/web_cursor_info.h"
#include "third_party/blink/public/platform/web_size.h"
#include "ui/gfx/geometry/point_conversions.h"
#include "ui/gfx/geometry/size_conversions.h"
#include "ui/gfx/image/image.h"
using blink::WebSize;
// Private interface to CoreCursor, as of Mac OS X 10.7. This is essentially the
// implementation of WKCursor in WebKitSystemInterface.
enum {
kArrowCursor = 0,
kIBeamCursor = 1,
kMakeAliasCursor = 2,
kOperationNotAllowedCursor = 3,
kBusyButClickableCursor = 4,
kCopyCursor = 5,
kClosedHandCursor = 11,
kOpenHandCursor = 12,
kPointingHandCursor = 13,
kCountingUpHandCursor = 14,
kCountingDownHandCursor = 15,
kCountingUpAndDownHandCursor = 16,
kResizeLeftCursor = 17,
kResizeRightCursor = 18,
kResizeLeftRightCursor = 19,
kCrosshairCursor = 20,
kResizeUpCursor = 21,
kResizeDownCursor = 22,
kResizeUpDownCursor = 23,
kContextualMenuCursor = 24,
kDisappearingItemCursor = 25,
kVerticalIBeamCursor = 26,
kResizeEastCursor = 27,
kResizeEastWestCursor = 28,
kResizeNortheastCursor = 29,
kResizeNortheastSouthwestCursor = 30,
kResizeNorthCursor = 31,
kResizeNorthSouthCursor = 32,
kResizeNorthwestCursor = 33,
kResizeNorthwestSoutheastCursor = 34,
kResizeSoutheastCursor = 35,
kResizeSouthCursor = 36,
kResizeSouthwestCursor = 37,
kResizeWestCursor = 38,
kMoveCursor = 39,
kHelpCursor = 40, // Present on >= 10.7.3.
kCellCursor = 41, // Present on >= 10.7.3.
kZoomInCursor = 42, // Present on >= 10.7.3.
kZoomOutCursor = 43 // Present on >= 10.7.3.
};
typedef long long CrCoreCursorType;
@interface CrCoreCursor : NSCursor {
@private
CrCoreCursorType type_;
}
+ (id)cursorWithType:(CrCoreCursorType)type;
- (id)initWithType:(CrCoreCursorType)type;
- (CrCoreCursorType)_coreCursorType;
@end
@implementation CrCoreCursor
+ (id)cursorWithType:(CrCoreCursorType)type {
NSCursor* cursor = [[CrCoreCursor alloc] initWithType:type];
if ([cursor image])
return [cursor autorelease];
[cursor release];
return nil;
}
- (id)initWithType:(CrCoreCursorType)type {
if ((self = [super init])) {
type_ = type;
}
return self;
}
- (CrCoreCursorType)_coreCursorType {
return type_;
}
@end
namespace {
NSCursor* LoadCursor(int resource_id, int hotspot_x, int hotspot_y) {
const gfx::Image& cursor_image =
content::GetContentClient()->GetNativeImageNamed(resource_id);
DCHECK(!cursor_image.IsEmpty());
return [[[NSCursor alloc] initWithImage:cursor_image.ToNSImage()
hotSpot:NSMakePoint(hotspot_x,
hotspot_y)] autorelease];
}
// Gets a specified cursor from CoreCursor, falling back to loading it from the
// image cache if CoreCursor cannot provide it.
NSCursor* GetCoreCursorWithFallback(CrCoreCursorType type,
int resource_id,
int hotspot_x,
int hotspot_y) {
NSCursor* cursor = [CrCoreCursor cursorWithType:type];
if (cursor)
return cursor;
return LoadCursor(resource_id, hotspot_x, hotspot_y);
}
NSCursor* CreateCustomCursor(const content::CursorInfo& info) {
float custom_scale = info.image_scale_factor;
gfx::Size custom_size(info.custom_image.width(), info.custom_image.height());
// Convert from pixels to view units.
if (custom_scale == 0)
custom_scale = 1;
NSSize dip_size = NSSizeFromCGSize(
gfx::ScaleToFlooredSize(custom_size, 1 / custom_scale).ToCGSize());
NSPoint dip_hotspot = NSPointFromCGPoint(
gfx::ScaleToFlooredPoint(info.hotspot, 1 / custom_scale).ToCGPoint());
// Both the image and its representation need to have the same size for
// cursors to appear in high resolution on retina displays. Note that the
// size of a representation is not the same as pixelsWide or pixelsHigh.
NSImage* cursor_image = skia::SkBitmapToNSImage(info.custom_image);
[cursor_image setSize:dip_size];
[[[cursor_image representations] objectAtIndex:0] setSize:dip_size];
NSCursor* cursor = [[NSCursor alloc] initWithImage:cursor_image
hotSpot:dip_hotspot];
return [cursor autorelease];
}
} // namespace
namespace content {
// Match Safari's cursor choices; see platform/mac/CursorMac.mm .
gfx::NativeCursor WebCursor::GetNativeCursor() {
switch (info_.type) {
case ui::CursorType::kPointer:
return [NSCursor arrowCursor];
case ui::CursorType::kCross:
return [NSCursor crosshairCursor];
case ui::CursorType::kHand:
return [NSCursor pointingHandCursor];
case ui::CursorType::kIBeam:
return [NSCursor IBeamCursor];
case ui::CursorType::kWait:
return GetCoreCursorWithFallback(kBusyButClickableCursor,
IDR_WAIT_CURSOR, 7, 7);
case ui::CursorType::kHelp:
return GetCoreCursorWithFallback(kHelpCursor,
IDR_HELP_CURSOR, 8, 8);
case ui::CursorType::kEastResize:
case ui::CursorType::kEastPanning:
return GetCoreCursorWithFallback(kResizeEastCursor,
IDR_EAST_RESIZE_CURSOR, 14, 7);
case ui::CursorType::kNorthResize:
case ui::CursorType::kNorthPanning:
return GetCoreCursorWithFallback(kResizeNorthCursor,
IDR_NORTH_RESIZE_CURSOR, 7, 1);
case ui::CursorType::kNorthEastResize:
case ui::CursorType::kNorthEastPanning:
return GetCoreCursorWithFallback(kResizeNortheastCursor,
IDR_NORTHEAST_RESIZE_CURSOR, 14, 1);
case ui::CursorType::kNorthWestResize:
case ui::CursorType::kNorthWestPanning:
return GetCoreCursorWithFallback(kResizeNorthwestCursor,
IDR_NORTHWEST_RESIZE_CURSOR, 0, 0);
case ui::CursorType::kSouthResize:
case ui::CursorType::kSouthPanning:
return GetCoreCursorWithFallback(kResizeSouthCursor,
IDR_SOUTH_RESIZE_CURSOR, 7, 14);
case ui::CursorType::kSouthEastResize:
case ui::CursorType::kSouthEastPanning:
return GetCoreCursorWithFallback(kResizeSoutheastCursor,
IDR_SOUTHEAST_RESIZE_CURSOR, 14, 14);
case ui::CursorType::kSouthWestResize:
case ui::CursorType::kSouthWestPanning:
return GetCoreCursorWithFallback(kResizeSouthwestCursor,
IDR_SOUTHWEST_RESIZE_CURSOR, 1, 14);
case ui::CursorType::kWestResize:
case ui::CursorType::kWestPanning:
return GetCoreCursorWithFallback(kResizeWestCursor,
IDR_WEST_RESIZE_CURSOR, 1, 7);
case ui::CursorType::kNorthSouthResize:
return GetCoreCursorWithFallback(kResizeNorthSouthCursor,
IDR_NORTHSOUTH_RESIZE_CURSOR, 7, 7);
case ui::CursorType::kEastWestResize:
return GetCoreCursorWithFallback(kResizeEastWestCursor,
IDR_EASTWEST_RESIZE_CURSOR, 7, 7);
case ui::CursorType::kNorthEastSouthWestResize:
return GetCoreCursorWithFallback(kResizeNortheastSouthwestCursor,
IDR_NORTHEASTSOUTHWEST_RESIZE_CURSOR,
7, 7);
case ui::CursorType::kNorthWestSouthEastResize:
return GetCoreCursorWithFallback(kResizeNorthwestSoutheastCursor,
IDR_NORTHWESTSOUTHEAST_RESIZE_CURSOR,
7, 7);
case ui::CursorType::kColumnResize:
return [NSCursor resizeLeftRightCursor];
case ui::CursorType::kRowResize:
return [NSCursor resizeUpDownCursor];
case ui::CursorType::kMiddlePanning:
case ui::CursorType::kMiddlePanningVertical:
case ui::CursorType::kMiddlePanningHorizontal:
case ui::CursorType::kMove:
return GetCoreCursorWithFallback(kMoveCursor,
IDR_MOVE_CURSOR, 7, 7);
case ui::CursorType::kVerticalText:
// IBeamCursorForVerticalLayout is >= 10.7.
if ([NSCursor respondsToSelector:@selector(IBeamCursorForVerticalLayout)])
return [NSCursor IBeamCursorForVerticalLayout];
else
return LoadCursor(IDR_VERTICALTEXT_CURSOR, 7, 7);
case ui::CursorType::kCell:
return GetCoreCursorWithFallback(kCellCursor,
IDR_CELL_CURSOR, 7, 7);
case ui::CursorType::kContextMenu:
return [NSCursor contextualMenuCursor];
case ui::CursorType::kAlias:
return GetCoreCursorWithFallback(kMakeAliasCursor,
IDR_ALIAS_CURSOR, 11, 3);
case ui::CursorType::kProgress:
return GetCoreCursorWithFallback(kBusyButClickableCursor,
IDR_PROGRESS_CURSOR, 3, 2);
case ui::CursorType::kNoDrop:
case ui::CursorType::kNotAllowed:
return [NSCursor operationNotAllowedCursor];
case ui::CursorType::kCopy:
return [NSCursor dragCopyCursor];
case ui::CursorType::kNone:
return LoadCursor(IDR_NONE_CURSOR, 7, 7);
case ui::CursorType::kZoomIn:
return GetCoreCursorWithFallback(kZoomInCursor,
IDR_ZOOMIN_CURSOR, 7, 7);
case ui::CursorType::kZoomOut:
return GetCoreCursorWithFallback(kZoomOutCursor,
IDR_ZOOMOUT_CURSOR, 7, 7);
case ui::CursorType::kGrab:
return [NSCursor openHandCursor];
case ui::CursorType::kGrabbing:
return [NSCursor closedHandCursor];
case ui::CursorType::kCustom:
return CreateCustomCursor(info_);
case ui::CursorType::kNull:
case ui::CursorType::kDndNone:
case ui::CursorType::kDndMove:
case ui::CursorType::kDndCopy:
case ui::CursorType::kDndLink:
// These cursors do not apply on Mac.
break;
}
NOTREACHED();
return nil;
}
bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
return true;
}
void WebCursor::CleanupPlatformData() {}
void WebCursor::CopyPlatformData(const WebCursor& other) {}
} // namespace content