OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NativeCursor
(Results
1 - 25
of
109
) sorted by null
1
2
3
4
5
/external/chromium_org/ui/views/corewm/
native_cursor_manager_delegate.h
23
virtual gfx::
NativeCursor
GetCursor() const = 0;
26
virtual void CommitCursor(gfx::
NativeCursor
cursor) = 0;
cursor_manager.h
43
virtual void SetCursor(gfx::
NativeCursor
) OVERRIDE;
44
virtual gfx::
NativeCursor
GetCursor() const OVERRIDE;
66
virtual void CommitCursor(gfx::
NativeCursor
cursor) OVERRIDE;
cursor_manager.cc
31
gfx::
NativeCursor
cursor() const { return cursor_; }
32
void set_cursor(gfx::
NativeCursor
cursor) { cursor_ = cursor; }
67
gfx::
NativeCursor
cursor_;
91
void CursorManager::SetCursor(gfx::
NativeCursor
cursor) {
99
gfx::
NativeCursor
CursorManager::GetCursor() const {
210
void CursorManager::CommitCursor(gfx::
NativeCursor
cursor) {
native_cursor_manager.h
36
gfx::
NativeCursor
cursor,
/external/chromium_org/ui/base/cursor/
cursor_loader_x11.h
34
virtual void SetPlatformCursor(gfx::
NativeCursor
* cursor) OVERRIDE;
38
bool IsImageCursor(gfx::
NativeCursor
native_cursor);
41
::Cursor ImageCursorFromNative(gfx::
NativeCursor
native_cursor);
cursor_loader_null.cc
23
void CursorLoaderNull::SetPlatformCursor(gfx::
NativeCursor
* cursor) {}
cursor_loader_null.h
28
virtual void SetPlatformCursor(gfx::
NativeCursor
* cursor) OVERRIDE;
cursor_loader_win.h
27
virtual void SetPlatformCursor(gfx::
NativeCursor
* cursor) OVERRIDE;
cursor_loader.h
61
virtual void SetPlatformCursor(gfx::
NativeCursor
* cursor) = 0;
/external/chromium_org/ui/views/widget/desktop_aura/
x11_whole_screen_move_loop.h
38
bool RunMoveLoop(aura::Window* window, gfx::
NativeCursor
cursor);
41
void UpdateCursor(gfx::
NativeCursor
cursor);
52
bool GrabPointerWithCursor(gfx::
NativeCursor
cursor);
desktop_native_cursor_manager.cc
26
gfx::
NativeCursor
DesktopNativeCursorManager::GetInitializedCursor(int type) {
27
gfx::
NativeCursor
cursor(type);
45
gfx::
NativeCursor
cursor,
47
gfx::
NativeCursor
new_cursor = cursor;
63
gfx::
NativeCursor
invisible_cursor(ui::kCursorNone);
desktop_native_cursor_manager.h
39
gfx::
NativeCursor
GetInitializedCursor(int type);
47
gfx::
NativeCursor
cursor,
/external/chromium_org/ui/aura/client/
cursor_client.h
26
virtual void SetCursor(gfx::
NativeCursor
cursor) = 0;
29
virtual gfx::
NativeCursor
GetCursor() const = 0;
/external/chromium/chrome/browser/chromeos/login/
shutdown_button.h
28
virtual gfx::
NativeCursor
GetCursorForPoint(
username_view.h
48
virtual gfx::
NativeCursor
GetCursorForPoint(
/external/chromium_org/ash/test/
cursor_manager_test_api.cc
34
gfx::
NativeCursor
CursorManagerTestApi::GetCurrentCursor() const {
cursor_manager_test_api.h
33
gfx::
NativeCursor
GetCurrentCursor() const;
/external/chromium_org/ash/wm/
image_cursors.h
48
void SetPlatformCursor(gfx::
NativeCursor
* cursor);
ash_native_cursor_manager.cc
19
void SetCursorOnAllRootWindows(gfx::
NativeCursor
cursor) {
69
gfx::
NativeCursor
cursor,
71
gfx::
NativeCursor
new_cursor = cursor;
111
gfx::
NativeCursor
invisible_cursor(ui::kCursorNone);
/external/chromium_org/ui/views/controls/
resize_area.h
30
virtual gfx::
NativeCursor
GetCursor(const ui::MouseEvent& event) OVERRIDE;
/external/chromium_org/ui/aura/test/
test_cursor_client.cc
24
void TestCursorClient::SetCursor(gfx::
NativeCursor
cursor) {
27
gfx::
NativeCursor
TestCursorClient::GetCursor() const {
test_cursor_client.h
22
virtual void SetCursor(gfx::
NativeCursor
cursor) OVERRIDE;
23
virtual gfx::
NativeCursor
GetCursor() const OVERRIDE;
/external/chromium_org/ui/gfx/
native_widget_types.h
120
typedef ui::Cursor
NativeCursor
;
126
typedef HCURSOR
NativeCursor
;
132
typedef void*
NativeCursor
;
137
typedef NSCursor*
NativeCursor
;
142
typedef GdkCursor*
NativeCursor
;
148
typedef void*
NativeCursor
;
186
// A constant value to indicate that gfx::
NativeCursor
refers to no cursor.
190
const gfx::
NativeCursor
kNullCursor = static_cast<gfx::
NativeCursor
>(NULL);
/external/chromium_org/ui/aura/
root_window_host_x11.h
60
virtual void SetCursor(gfx::
NativeCursor
cursor_type) OVERRIDE;
94
void SetCursorInternal(gfx::
NativeCursor
cursor);
115
gfx::
NativeCursor
current_cursor_;
/external/chromium_org/ash/display/
mirror_window_controller.h
59
void SetMirroredCursor(gfx::
NativeCursor
cursor);
Completed in 280 milliseconds
1
2
3
4
5