Home
last modified time | relevance | path

Searched refs:cursor_client (Results 1 – 21 of 21) sorted by relevance

/external/chromium_org/ui/views/corewm/
Dcompound_event_filter_unittest.cc64 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 …]
Dcompound_event_filter.cc145 aura::client::CursorClient* cursor_client = in UpdateCursor() local
147 if (cursor_client) { in UpdateCursor()
155 cursor_client->SetCursor(cursor); in UpdateCursor()
Dtooltip_controller.cc322 aura::client::CursorClient* cursor_client = in IsCursorVisible() local
325 return !cursor_client || cursor_client->IsCursorVisible(); in IsCursorVisible()
/external/chromium_org/ash/magnifier/
Dmagnification_controller.cc392 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/
Dcustom_button_unittest.cc67 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/
Drender_widget_host_view_aura.cc586 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 …]
Drender_widget_host_view_aura_unittest.cc608 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/
Droot_window_host_win.cc184 client::CursorClient* cursor_client = in QueryMouseLocation() local
186 if (cursor_client && !cursor_client->IsMouseEventsEnabled()) { in QueryMouseLocation()
Droot_window_host_x11.cc403 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()
Droot_window.cc515 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()
Dwindow.cc183 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()
Daura.gyp44 'client/cursor_client.cc',
45 'client/cursor_client.h',
Dremote_root_window_host_win.cc414 aura::client::CursorClient* cursor_client = in QueryMouseLocation() local
416 if (cursor_client && !cursor_client->IsMouseEventsEnabled()) { in QueryMouseLocation()
Droot_window_unittest.cc731 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/
Ddesktop_native_widget_aura.cc805 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()
Ddesktop_root_window_host_win.cc527 aura::client::CursorClient* cursor_client = in QueryMouseLocation() local
529 if (cursor_client && !cursor_client->IsMouseEventsEnabled()) { in QueryMouseLocation()
Ddesktop_root_window_host_x11.cc836 aura::client::CursorClient* cursor_client = in QueryMouseLocation() local
838 if (cursor_client && !cursor_client->IsMouseEventsEnabled()) { in QueryMouseLocation()
/external/chromium_org/ash/wm/
Dtoplevel_window_event_handler.cc354 aura::client::CursorClient* cursor_client = in RunMoveLoop() local
356 if (cursor_client) in RunMoveLoop()
357 cursor_client->SetCursor(ui::kCursorPointer); in RunMoveLoop()
Dimmersive_fullscreen_controller.cc628 aura::client::CursorClient* cursor_client = aura::client::GetCursorClient( in UpdateLocatedEventRevealedLock() local
630 if (!cursor_client->IsMouseEventsEnabled()) { in UpdateLocatedEventRevealedLock()
/external/chromium_org/ui/views/widget/
Dnative_widget_aura.cc612 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/
Dshelf_layout_manager.cc1033 aura::client::CursorClient* cursor_client = aura::client::GetCursorClient( in CalculateAutoHideState() local
1035 if (!cursor_client->IsMouseEventsEnabled()) in CalculateAutoHideState()