HomeSort by relevance Sort by last modified time
    Searched refs:cursor_client (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/ui/wm/core/
compound_event_filter_unittest.cc 7 #include "ui/aura/client/cursor_client.h"
64 aura::test::TestCursorClient cursor_client(root_window());
69 EXPECT_FALSE(cursor_client.IsCursorVisible());
76 EXPECT_FALSE(cursor_client.IsCursorVisible());
82 EXPECT_FALSE(cursor_client.IsCursorVisible());
88 EXPECT_TRUE(cursor_client.IsCursorVisible());
91 cursor_client.set_should_hide_cursor_on_key_event(false);
94 EXPECT_TRUE(cursor_client.IsCursorVisible());
97 cursor_client.set_should_hide_cursor_on_key_event(true);
100 EXPECT_FALSE(cursor_client.IsCursorVisible())
    [all...]
compound_event_filter.cc 9 #include "ui/aura/client/cursor_client.h"
112 aura::client::CursorClient* cursor_client =
114 if (cursor_client) {
127 cursor_client->SetCursor(cursor);
  /external/chromium_org/ui/chromeos/
touch_exploration_controller_unittest.cc 9 #include "ui/aura/client/cursor_client.h"
77 cursor_client()->ShowCursor();
78 cursor_client()->DisableMouseEvents();
89 aura::client::CursorClient* cursor_client() { return cursor_client_.get(); } function in class:ui::TouchExplorationTest
122 cursor_client()->ShowCursor();
123 cursor_client()->DisableMouseEvents();
135 aura::client::CursorClient* cursor_client = local
137 return cursor_client &&
138 cursor_client->IsMouseEventsEnabled() &&
139 !cursor_client->IsCursorVisible()
    [all...]
touch_exploration_controller.cc 9 #include "ui/aura/client/cursor_client.h"
418 aura::client::CursorClient* cursor_client = local
420 if (cursor_client && !cursor_client->IsMouseEventsEnabled())
421 cursor_client->EnableMouseEvents();
422 if (cursor_client && cursor_client->IsCursorVisible())
423 cursor_client->HideCursor();
  /external/chromium_org/ash/magnifier/
magnification_controller.cc 18 #include "ui/aura/client/cursor_client.h"
375 aura::client::CursorClient* cursor_client = local
377 if (cursor_client) {
380 if (!cursor_client->IsCursorVisible())
382 cursor_client->DisableMouseEvents();
426 aura::client::CursorClient* cursor_client = local
428 if (cursor_client)
429 cursor_client->EnableMouseEvents();
  /external/chromium_org/ui/aura/
window_tree_host.cc 9 #include "ui/aura/client/cursor_client.h"
264 client::CursorClient* cursor_client = client::GetCursorClient(window()); local
265 if (cursor_client) {
268 cursor_client->SetDisplay(display);
window.cc 17 #include "ui/aura/client/cursor_client.h"
168 client::CursorClient* cursor_client = client::GetCursorClient(window_); local
169 if (cursor_is_in_bounds && cursor_client &&
170 cursor_client->IsCursorVisible()) {
171 cursor_client->HideCursor();
182 client::CursorClient* cursor_client = client::GetCursorClient(window_); local
183 if (cursor_client) {
187 cursor_client->SetDisplay(display);
188 cursor_client->ShowCursor();
    [all...]
window_tree_host_x11.cc 27 #include "ui/aura/client/cursor_client.h"
343 client::CursorClient* cursor_client = local
345 if (cursor_client) {
348 cursor_client->SetDisplay(display);
window_event_dispatcher.cc 12 #include "ui/aura/client/cursor_client.h"
729 client::CursorClient* cursor_client = client::GetCursorClient(window()); local
733 if (cursor_client &&
734 !cursor_client->IsMouseEventsEnabled() &&
window_event_dispatcher_unittest.cc 902 test::TestCursorClient cursor_client(root_window());
919 cursor_client.DisableMouseEvents();
    [all...]
  /external/chromium_org/ui/views/controls/button/
custom_button_unittest.cc 61 aura::test::TestCursorClient cursor_client(
99 cursor_client.DisableMouseEvents();
125 aura::test::TestCursorClient cursor_client(
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_aura.cc 49 #include "ui/aura/client/cursor_client.h"
554 aura::client::CursorClient* cursor_client = local
556 if (cursor_client)
557 NotifyRendererOfCursorVisibilityState(cursor_client->IsCursorVisible());
920 aura::client::CursorClient* cursor_client =
922 if (cursor_client && !cursor_client->IsCursorVisible())
923 cursor_client->DisableMouseEvents();
1280 aura::client::CursorClient* cursor_client = local
1310 aura::client::CursorClient* cursor_client = local
1784 aura::client::CursorClient* cursor_client = local
2202 aura::client::CursorClient* cursor_client = local
2310 aura::client::CursorClient* cursor_client = local
2334 aura::client::CursorClient* cursor_client = local
    [all...]
render_widget_host_view_aura_unittest.cc     [all...]
  /external/chromium_org/ui/views/corewm/
tooltip_controller.cc 12 #include "ui/aura/client/cursor_client.h"
343 aura::client::CursorClient* cursor_client =
345 // |cursor_client| may be NULL in tests, treat NULL as always visible.
346 return !cursor_client || cursor_client->IsCursorVisible();
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_native_widget_aura.cc 10 #include "ui/aura/client/cursor_client.h"
876 aura::client::CursorClient* cursor_client = local
878 if (cursor_client)
879 cursor_client->SetCursor(cursor);
885 aura::client::CursorClient* cursor_client =
887 return cursor_client ? cursor_client->IsMouseEventsEnabled() : true;
    [all...]
desktop_window_tree_host_win.cc 11 #include "ui/aura/client/cursor_client.h"
152 aura::client::CursorClient* cursor_client = local
154 if (cursor_client)
155 is_cursor_visible_ = cursor_client->IsCursorVisible();
    [all...]
  /external/chromium_org/ui/views/widget/
native_widget_aura.cc 11 #include "ui/aura/client/cursor_client.h"
617 aura::client::CursorClient* cursor_client = local
619 if (cursor_client)
620 cursor_client->SetCursor(cursor);
626 aura::client::CursorClient* cursor_client =
628 return cursor_client ? cursor_client->IsMouseEventsEnabled() : true;
    [all...]
  /external/chromium_org/ash/wm/
toplevel_window_event_handler.cc 16 #include "ui/aura/client/cursor_client.h"
398 aura::client::CursorClient* cursor_client = local
400 if (cursor_client)
401 cursor_client->SetCursor(ui::kCursorPointer);
immersive_fullscreen_controller.cc 16 #include "ui/aura/client/cursor_client.h"
650 aura::client::CursorClient* cursor_client = aura::client::GetCursorClient( local
652 if (!cursor_client->IsMouseEventsEnabled()) {
    [all...]
  /external/chromium_org/ui/views/touchui/
touch_selection_controller_impl.cc 10 #include "ui/aura/client/cursor_client.h"
533 aura::client::CursorClient* cursor_client = aura::client::GetCursorClient( local
535 if (!cursor_client || cursor_client->IsMouseEventsEnabled())
  /external/chromium_org/ash/shelf/
shelf_layout_manager.cc 39 #include "ui/aura/client/cursor_client.h"
    [all...]

Completed in 844 milliseconds