/external/chromium_org/ui/views/corewm/ |
D | compound_event_filter_unittest.cc | 64 aura::test::TestCursorClient cursor_client(root_window()); in TEST_F() local 69 EXPECT_FALSE(cursor_client.IsCursorVisible()); in TEST_F() 76 EXPECT_FALSE(cursor_client.IsCursorVisible()); in TEST_F() 82 EXPECT_FALSE(cursor_client.IsCursorVisible()); in TEST_F() 87 EXPECT_TRUE(cursor_client.IsCursorVisible()); in TEST_F() 91 EXPECT_FALSE(cursor_client.IsCursorVisible()); in TEST_F() 98 EXPECT_FALSE(cursor_client.IsCursorVisible()); in TEST_F() 110 aura::test::TestCursorClient cursor_client(root_window()); in TEST_F() local 115 EXPECT_TRUE(cursor_client.IsMouseEventsEnabled()); in TEST_F() 122 EXPECT_FALSE(cursor_client.IsMouseEventsEnabled()); in TEST_F() [all …]
|
D | compound_event_filter.cc | 145 aura::client::CursorClient* cursor_client = in UpdateCursor() local 147 if (cursor_client) { in UpdateCursor() 155 cursor_client->SetCursor(cursor); in UpdateCursor()
|
D | tooltip_controller.cc | 322 aura::client::CursorClient* cursor_client = in IsCursorVisible() local 325 return !cursor_client || cursor_client->IsCursorVisible(); in IsCursorVisible()
|
/external/chromium_org/ash/magnifier/ |
D | magnification_controller.cc | 392 aura::client::CursorClient* cursor_client = in AfterAnimationMoveCursorTo() local 394 if (cursor_client) { in AfterAnimationMoveCursorTo() 397 if (!cursor_client->IsCursorVisible()) in AfterAnimationMoveCursorTo() 399 cursor_client->DisableMouseEvents(); in AfterAnimationMoveCursorTo() 443 aura::client::CursorClient* cursor_client = in OnImplicitAnimationsCompleted() local 445 if (cursor_client) in OnImplicitAnimationsCompleted() 446 cursor_client->EnableMouseEvents(); in OnImplicitAnimationsCompleted()
|
/external/chromium_org/ui/views/controls/button/ |
D | custom_button_unittest.cc | 67 aura::test::TestCursorClient cursor_client( in TEST_F() local 105 cursor_client.DisableMouseEvents(); in TEST_F() 133 aura::test::TestCursorClient cursor_client( in TEST_F() local
|
/external/chromium_org/content/browser/renderer_host/ |
D | render_widget_host_view_aura.cc | 586 aura::client::CursorClient* cursor_client = in WasShown() local 588 if (cursor_client) in WasShown() 589 NotifyRendererOfCursorVisibilityState(cursor_client->IsCursorVisible()); in WasShown() 1065 aura::client::CursorClient* cursor_client = in ScrollOffsetChanged() local 1067 if (cursor_client && !cursor_client->IsCursorVisible()) in ScrollOffsetChanged() 1068 cursor_client->DisableMouseEvents(); in ScrollOffsetChanged() 2179 aura::client::CursorClient* cursor_client = in LockMouse() local 2181 if (cursor_client) { in LockMouse() 2182 cursor_client->HideCursor(); in LockMouse() 2183 cursor_client->LockCursor(); in LockMouse() [all …]
|
D | render_widget_host_view_aura_unittest.cc | 608 aura::test::TestCursorClient cursor_client( in TEST_F() local 611 cursor_client.AddObserver(view_); in TEST_F() 616 cursor_client.ShowCursor(); in TEST_F() 623 cursor_client.ShowCursor(); in TEST_F() 628 cursor_client.HideCursor(); in TEST_F() 635 cursor_client.HideCursor(); in TEST_F() 641 cursor_client.ShowCursor(); in TEST_F() 643 cursor_client.HideCursor(); in TEST_F() 655 cursor_client.HideCursor(); in TEST_F() 660 cursor_client.ShowCursor(); in TEST_F() [all …]
|
/external/chromium_org/ui/aura/ |
D | root_window_host_win.cc | 184 client::CursorClient* cursor_client = in QueryMouseLocation() local 186 if (cursor_client && !cursor_client->IsMouseEventsEnabled()) { in QueryMouseLocation()
|
D | root_window_host_x11.cc | 403 client::CursorClient* cursor_client = in Dispatch() local 405 if (cursor_client) { in Dispatch() 408 cursor_client->SetDisplay(display); in Dispatch() 684 client::CursorClient* cursor_client = in QueryMouseLocation() local 686 if (cursor_client && !cursor_client->IsMouseEventsEnabled()) { in QueryMouseLocation()
|
D | root_window.cc | 515 client::CursorClient* cursor_client = client::GetCursorClient(window()); in MoveCursorToInternal() local 516 if (cursor_client) { in MoveCursorToInternal() 519 cursor_client->SetDisplay(display); in MoveCursorToInternal() 926 client::CursorClient* cursor_client = client::GetCursorClient(window()); in DispatchMouseEventToTarget() local 927 if (cursor_client && in DispatchMouseEventToTarget() 928 !cursor_client->IsMouseEventsEnabled() && in DispatchMouseEventToTarget()
|
D | window.cc | 183 client::CursorClient* cursor_client = client::GetCursorClient(window_); in ScopedCursorHider() local 184 if (cursor_is_in_bounds && cursor_client && in ScopedCursorHider() 185 cursor_client->IsCursorVisible()) { in ScopedCursorHider() 186 cursor_client->HideCursor(); in ScopedCursorHider() 197 client::CursorClient* cursor_client = client::GetCursorClient(window_); in ~ScopedCursorHider() local 198 if (cursor_client) { in ~ScopedCursorHider() 202 cursor_client->SetDisplay(display); in ~ScopedCursorHider() 203 cursor_client->ShowCursor(); in ~ScopedCursorHider()
|
D | aura.gyp | 44 'client/cursor_client.cc', 45 'client/cursor_client.h',
|
D | remote_root_window_host_win.cc | 414 aura::client::CursorClient* cursor_client = in QueryMouseLocation() local 416 if (cursor_client && !cursor_client->IsMouseEventsEnabled()) { in QueryMouseLocation()
|
D | root_window_unittest.cc | 731 test::TestCursorClient cursor_client(root_window()); in TEST_F() local 748 cursor_client.DisableMouseEvents(); in TEST_F()
|
/external/chromium_org/ui/views/widget/desktop_aura/ |
D | desktop_native_widget_aura.cc | 805 aura::client::CursorClient* cursor_client = in SetCursor() local 807 if (cursor_client) in SetCursor() 808 cursor_client->SetCursor(cursor); in SetCursor() 814 aura::client::CursorClient* cursor_client = in IsMouseEventsEnabled() local 816 return cursor_client ? cursor_client->IsMouseEventsEnabled() : true; in IsMouseEventsEnabled()
|
D | desktop_root_window_host_win.cc | 527 aura::client::CursorClient* cursor_client = in QueryMouseLocation() local 529 if (cursor_client && !cursor_client->IsMouseEventsEnabled()) { in QueryMouseLocation()
|
D | desktop_root_window_host_x11.cc | 836 aura::client::CursorClient* cursor_client = in QueryMouseLocation() local 838 if (cursor_client && !cursor_client->IsMouseEventsEnabled()) { in QueryMouseLocation()
|
/external/chromium_org/ash/wm/ |
D | toplevel_window_event_handler.cc | 354 aura::client::CursorClient* cursor_client = in RunMoveLoop() local 356 if (cursor_client) in RunMoveLoop() 357 cursor_client->SetCursor(ui::kCursorPointer); in RunMoveLoop()
|
D | immersive_fullscreen_controller.cc | 628 aura::client::CursorClient* cursor_client = aura::client::GetCursorClient( in UpdateLocatedEventRevealedLock() local 630 if (!cursor_client->IsMouseEventsEnabled()) { in UpdateLocatedEventRevealedLock()
|
/external/chromium_org/ui/views/widget/ |
D | native_widget_aura.cc | 612 aura::client::CursorClient* cursor_client = in SetCursor() local 614 if (cursor_client) in SetCursor() 615 cursor_client->SetCursor(cursor); in SetCursor() 621 aura::client::CursorClient* cursor_client = in IsMouseEventsEnabled() local 623 return cursor_client ? cursor_client->IsMouseEventsEnabled() : true; in IsMouseEventsEnabled()
|
/external/chromium_org/ash/shelf/ |
D | shelf_layout_manager.cc | 1033 aura::client::CursorClient* cursor_client = aura::client::GetCursorClient( in CalculateAutoHideState() local 1035 if (!cursor_client->IsMouseEventsEnabled()) in CalculateAutoHideState()
|