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

  /external/chromium/chrome/browser/ui/views/tabs/
side_tab_strip.cc 229 gfx::Point local_point(point);
230 View::ConvertPointToView(this, scroll_down_button_, &local_point);
231 if (scroll_down_button_->HitTest(local_point))
232 return scroll_down_button_->GetEventHandlerForPoint(local_point);
236 gfx::Point local_point(point);
237 View::ConvertPointToView(this, scroll_up_button_, &local_point);
238 if (scroll_up_button_->HitTest(local_point))
239 return scroll_up_button_->GetEventHandlerForPoint(local_point);
base_tab_strip.cc 370 gfx::Point local_point = tab_in_tab_coordinates; local
371 ConvertPointToView(tab, this, &local_point);
372 return GetTabAtLocal(local_point);
530 BaseTab* BaseTabStrip::GetTabAtLocal(const gfx::Point& local_point) {
531 views::View* view = GetEventHandlerForPoint(local_point);
base_tab_strip.h 241 BaseTab* GetTabAtLocal(const gfx::Point& local_point);
  /external/chromium_org/ui/aura/
window.cc 528 gfx::Point local_point(point_in_root);
529 ConvertPointToTarget(root_window, this, &local_point);
530 return gfx::Rect(GetTargetBounds().size()).Contains(local_point);
533 bool Window::ContainsPoint(const gfx::Point& local_point) const {
534 return gfx::Rect(bounds().size()).Contains(local_point);
537 bool Window::HitTest(const gfx::Point& local_point) {
546 return local_bounds.Contains(local_point);
556 mask_region.contains(local_point.x(), local_point.y());
559 Window* Window::GetEventHandlerForPoint(const gfx::Point& local_point) {
    [all...]
window.h 271 // Returns true if relative-to-this-Window's-origin |local_point| falls
273 bool ContainsPoint(const gfx::Point& local_point) const;
276 // |local_point| can trigger an event for this Window.
280 bool HitTest(const gfx::Point& local_point);
282 // Returns the Window that most closely encloses |local_point| for the
284 Window* GetEventHandlerForPoint(const gfx::Point& local_point);
286 // Returns the topmost Window with a delegate containing |local_point|.
287 Window* GetTopWindowContainingPoint(const gfx::Point& local_point);
382 // Gets a Window (either this one or a subwindow) containing |local_point|.
387 Window* GetWindowForPoint(const gfx::Point& local_point,
    [all...]
  /external/chromium_org/ui/views/controls/tree/
tree_view.cc 383 gfx::Point local_point(p);
384 ConvertPointToTarget(NULL, this, &local_point);
385 int row = (local_point.y() - kVerticalInset) / row_height_;
391 if (!bounds.Contains(local_point))
  /external/chromium_org/chrome/browser/ui/views/download/
download_item_view.cc 523 gfx::Point local_point = point; local
524 ConvertPointFromScreen(this, &local_point);
525 ShowContextMenuImpl(local_point, source_type);
    [all...]
  /external/chromium_org/ui/views/
view.cc     [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_strip.cc 1167 gfx::Point local_point = tab_in_tab_coordinates; local
1572 gfx::Point local_point = event->location(); local
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_aura.cc 3034 gfx::Point local_point = screen_point; local
    [all...]

Completed in 666 milliseconds