summaryrefslogtreecommitdiffstats
path: root/ui/views/native_cursor_mac.mm
blob: 967484deb7255053cce58abedbbfdfccc0a29553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2014 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 "ui/views/native_cursor.h"

#include <Cocoa/Cocoa.h>

namespace views {

gfx::NativeCursor GetNativeIBeamCursor() {
  return [NSCursor IBeamCursor];
}

gfx::NativeCursor GetNativeArrowCursor() {
  return [NSCursor arrowCursor];
}

gfx::NativeCursor GetNativeHandCursor() {
  return [NSCursor pointingHandCursor];
}

gfx::NativeCursor GetNativeColumnResizeCursor() {
  return [NSCursor resizeLeftRightCursor];
}

gfx::NativeCursor GetNativeEastWestResizeCursor() {
  NOTIMPLEMENTED();
  // TODO(tapted): This is the wrong cursor. Fetch the right one from WebCursor
  // or ResourceBundle or CoreCursor private API.
  return [NSCursor resizeLeftRightCursor];
}

gfx::NativeCursor GetNativeNorthSouthResizeCursor() {
  NOTIMPLEMENTED();
  return [NSCursor resizeUpDownCursor];
}

}  // namespace views