HomeSort by relevance Sort by last modified time
    Searched refs:screen_loc (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/ui/views/widget/desktop_aura/
x11_topmost_window_finder.h 27 // Returns the topmost window at |screen_loc|, ignoring the windows in
28 // |ignore|. Returns NULL if the topmost window at |screen_loc| does not
30 aura::Window* FindLocalProcessWindowAt(const gfx::Point& screen_loc,
33 // Returns the topmost window at |screen_loc|.
34 XID FindWindowAt(const gfx::Point& screen_loc);
x11_topmost_window_finder.cc 22 const gfx::Point& screen_loc,
24 screen_loc_ = screen_loc;
43 XID X11TopmostWindowFinder::FindWindowAt(const gfx::Point& screen_loc) {
44 screen_loc_ = screen_loc;
  /external/chromium_org/ui/views/controls/menu/
menu_message_loop.h 45 // |screen_loc| is the event's location in screen coordinates.
48 const gfx::Point& screen_loc) = 0;
menu_message_loop_mac.h 26 const gfx::Point& screen_loc) OVERRIDE;
menu_message_pump_dispatcher_win.cc 37 gfx::Point screen_loc(0, item->height());
38 View::ConvertPointToScreen(item, &screen_loc);
43 item, item->GetCommand(), screen_loc, source_type);
menu_message_loop_aura.h 36 const gfx::Point& screen_loc) OVERRIDE;
menu_message_loop_mac.cc 27 const gfx::Point& screen_loc) {
menu_message_loop_aura.cc 112 const gfx::Point& screen_loc) {
118 gfx::Point root_loc(screen_loc);
menu_controller.cc 312 gfx::Point screen_loc(
315 static_cast<View*>(event->target()), &screen_loc);
316 menu_start_mouse_press_loc_ = screen_loc;
550 gfx::Point screen_loc(event.location());
551 View::ConvertPointToScreen(source->GetScrollViewContainer(), &screen_loc);
552 gfx::Vector2d moved = screen_loc - menu_start_mouse_press_loc_;
671 gfx::Point screen_loc(event.location());
672 View::ConvertPointToScreen(source, &screen_loc);
673 if (valid_drop_coordinates_ && screen_loc == drop_pt_)
675 drop_pt_ = screen_loc;
    [all...]
menu_controller.h 356 const gfx::Point& screen_loc);
362 const gfx::Point& screen_loc,
368 const gfx::Point& screen_loc);
menu_delegate.cc 44 const gfx::Point& screen_loc) const {
menu_delegate.h 102 const gfx::Point& screen_loc) const;
  /external/chromium_org/chrome/browser/ui/views/tabs/
window_finder_win.cc 67 // |screen_loc|, not including the windows in |ignore|.
69 const gfx::Point& screen_loc,
71 TopMostFinder finder(window, screen_loc, ignore);
126 const gfx::Point& screen_loc,
132 screen_loc_ = gfx::win::DIPToScreenPoint(screen_loc);
157 // Returns the hwnd from our process at screen_loc that is not obscured by
160 const gfx::Point& screen_loc,
162 LocalProcessWindowFinder finder(screen_loc, ignore);
170 screen_loc,
190 LocalProcessWindowFinder(const gfx::Point& screen_loc,
    [all...]
  /external/chromium_org/chrome/browser/ui/tabs/
dock_info.h 50 // Returns true if |screen_loc| is close to the hotspot at |x|, |y|. If the
53 static bool IsCloseToPoint(const gfx::Point& screen_loc,
59 static bool IsCloseToMonitorPoint(const gfx::Point& screen_loc,
147 // If screen_loc is close enough to the hot spot given by |x| and |y|, the
150 bool CheckMonitorPoint(const gfx::Point& screen_loc,
  /external/chromium_org/ui/views/widget/
tooltip_manager_aura.cc 52 gfx::Point screen_loc(
58 screen_position_client->ConvertPointToScreen(root_window, &screen_loc);
60 aura::Window* target = screen->GetWindowAtScreenPoint(screen_loc);
63 gfx::Point target_loc(screen_loc);
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_menu_controller_views.cc 54 gfx::Point screen_loc; local
55 views::View::ConvertPointToScreen(menu_button, &screen_loc);
57 gfx::Rect bounds(screen_loc.x(), screen_loc.y(), menu_button->width(),
bookmark_bar_view.h 162 const gfx::Point& screen_loc,
bookmark_menu_delegate.cc 124 const gfx::Point& screen_loc) const {
135 parent_, screen_loc, node->url(), node->GetTitle(), profile_);
  /external/chromium_org/chrome/browser/ui/views/extensions/
browser_action_overflow_menu_controller.cc 106 gfx::Point screen_loc; local
107 views::View::ConvertPointToScreen(menu_button_, &screen_loc);
108 bounds.set_x(screen_loc.x());
109 bounds.set_y(screen_loc.y());
extension_action_view_controller.cc 207 gfx::Point screen_loc; local
208 views::View::ConvertPointToScreen(delegate_->GetAsView(), &screen_loc);
223 gfx::Rect(screen_loc, delegate_->GetAsView()->size()),
  /external/chromium_org/ui/views/corewm/
tooltip_controller.cc 86 gfx::Point screen_loc(event.location());
88 ConvertPointToScreen(event_target, &screen_loc);
90 aura::Window* target = screen->GetWindowAtScreenPoint(screen_loc);
93 gfx::Point target_loc(screen_loc);
  /external/chromium_org/ui/base/x/
x11_util.h 127 // Returns true if |window| contains the point |screen_loc|.
128 UI_BASE_EXPORT bool WindowContainsPoint(XID window, gfx::Point screen_loc);
  /external/chromium_org/ui/views/controls/table/
table_view.cc 466 gfx::Point screen_loc(0, y);
468 screen_loc.set_x(width());
469 ConvertPointToScreen(this, &screen_loc);
470 return screen_loc;
  /external/chromium_org/ui/views/controls/tree/
tree_view.cc 542 gfx::Point screen_loc(0, y);
544 screen_loc.set_x(width());
545 ConvertPointToScreen(this, &screen_loc);
546 return screen_loc;
  /external/chromium_org/ash/wm/workspace/
multi_window_resize_controller.cc 463 gfx::Point screen_loc = Shell::GetScreen()->GetCursorScreenPoint(); local
464 if (!resize_widget_->GetWindowBoundsInScreen().Contains(screen_loc)) {

Completed in 775 milliseconds

1 2