blob: cafe684aa0b4f4e76ce383b2facfcde07288da80 (
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
|
// 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 "ui/base/cursor/cursor.h"
namespace views {
gfx::NativeCursor GetNativeIBeamCursor() {
return ui::kCursorIBeam;
}
gfx::NativeCursor GetNativeHandCursor() {
return ui::kCursorHand;
}
gfx::NativeCursor GetNativeColumnResizeCursor() {
return ui::kCursorColumnResize;
}
gfx::NativeCursor GetNativeEastWestResizeCursor() {
return ui::kCursorEastWestResize;
}
gfx::NativeCursor GetNativeNorthSouthResizeCursor() {
return ui::kCursorNorthSouthResize;
}
} // namespace views
|