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

  /external/chromium/chrome/browser/ui/gtk/tabs/
dragged_tab_controller_gtk.h 114 void MoveTab(const gfx::Point& screen_point);
118 TabStripGtk* GetTabStripForPoint(const gfx::Point& screen_point);
123 const gfx::Point& screen_point) const;
126 void Attach(TabStripGtk* attached_tabstrip, const gfx::Point& screen_point);
133 const gfx::Point& screen_point);
137 gfx::Rect GetDraggedTabTabStripBounds(const gfx::Point& screen_point);
147 gfx::Point GetDraggedTabPoint(const gfx::Point& screen_point);
dragged_tab_controller_gtk.cc 233 gfx::Point screen_point = GetCursorScreenPoint(); local
242 TabStripGtk* target_tabstrip = GetTabStripForPoint(screen_point);
251 Attach(target_tabstrip, screen_point);
260 MoveTab(screen_point);
263 void DraggedTabControllerGtk::MoveTab(const gfx::Point& screen_point) {
264 gfx::Point dragged_tab_point = GetDraggedTabPoint(screen_point);
281 if (abs(screen_point.x() - last_move_screen_x_) > threshold) {
286 last_move_screen_x_ = screen_point.x();
297 const gfx::Point& screen_point) {
301 DockInfo::GetLocalProcessWindowAtPoint(screen_point, dock_windows_)
    [all...]
dragged_tab_gtk.h 33 // pointer at |screen_point|.
34 void MoveTo(const gfx::Point& screen_point);
dragged_tab_gtk.cc 88 void DraggedTabGtk::MoveTo(const gfx::Point& screen_point) {
89 int x = screen_point.x() + mouse_tab_offset_.x() -
91 int y = screen_point.y() + mouse_tab_offset_.y() -
  /external/chromium/chrome/browser/ui/views/tabs/
dragged_tab_controller.h 174 void UpdateDockInfo(const gfx::Point& screen_point);
193 void MoveAttached(const gfx::Point& screen_point);
196 void MoveDetached(const gfx::Point& screen_point);
200 BaseTabStrip* GetTabStripForPoint(const gfx::Point& screen_point);
202 DockInfo GetDockInfoAtPoint(const gfx::Point& screen_point);
207 const gfx::Point& screen_point) const;
210 void Attach(BaseTabStrip* attached_tabstrip, const gfx::Point& screen_point);
229 gfx::Point GetAttachedDragPoint(const gfx::Point& screen_point);
dragged_tab_controller.cc 595 void DraggedTabController::UpdateDockInfo(const gfx::Point& screen_point) {
597 DockInfo dock_info = GetDockInfoAtPoint(screen_point);
649 gfx::Point screen_point = GetCursorScreenPoint(); local
650 int x_offset = abs(screen_point.x() - start_screen_point_.x());
651 int y_offset = abs(screen_point.y() - start_screen_point_.y());
667 gfx::Point screen_point = GetCursorScreenPoint(); local
676 BaseTabStrip* target_tabstrip = GetTabStripForPoint(screen_point);
684 Attach(target_tabstrip, screen_point);
692 UpdateDockInfo(screen_point);
695 MoveAttached(screen_point);
    [all...]
dragged_tab_view.cc 70 void DraggedTabView::MoveTo(const gfx::Point& screen_point) {
77 x = screen_point.x() + ScaleValue(mouse_tab_offset_.x() - ps.width());
79 x = screen_point.x() - ScaleValue(mouse_tab_offset_.x());
81 int y = screen_point.y() - ScaleValue(mouse_tab_offset_.y());
dragged_tab_view.h 31 // pointer at |screen_point|.
32 void MoveTo(const gfx::Point& screen_point);
  /external/chromium/chrome/browser/ui/tabs/
dock_info.h 30 const gfx::Point& screen_point,
34 const gfx::Point& screen_point,
86 // Returns the DockInfo for the specified point |screen_point|. |ignore|
95 static DockInfo GetDockInfoAtPoint(const gfx::Point& screen_point,
98 // Returns the top most window from the current process at |screen_point|.
100 // there is no window from the current process at |screen_point|, or another
101 // window obscures the topmost window from our process at |screen_point|.
106 const gfx::Point& screen_point,
111 bool IsValidForPoint(const gfx::Point& screen_point);
dock_info_win.cc 272 DockInfo DockInfo::GetDockInfoAtPoint(const gfx::Point& screen_point,
275 return factory_->GetDockInfoAtPoint(screen_point, ignore);
278 DockInfo info = DockToWindowFinder::GetDockInfoAtPoint(screen_point, ignore);
288 info.CheckMonitorPoint(screen_point, mid_x, m_bounds.y(),
290 info.CheckMonitorPoint(screen_point, mid_x, m_bounds.bottom(),
292 info.CheckMonitorPoint(screen_point, m_bounds.x(), mid_y,
294 info.CheckMonitorPoint(screen_point, m_bounds.right(), mid_y,
300 HWND DockInfo::GetLocalProcessWindowAtPoint(const gfx::Point& screen_point,
303 return factory_->GetLocalProcessWindowAtPoint(screen_point, ignore);
305 LocalProcessWindowFinder::GetProcessWindowAtPoint(screen_point, ignore)
    [all...]
dock_info_gtk.cc 181 DockInfo DockInfo::GetDockInfoAtPoint(const gfx::Point& screen_point,
184 return factory_->GetDockInfoAtPoint(screen_point, ignore);
192 const gfx::Point& screen_point,
195 return factory_->GetLocalProcessWindowAtPoint(screen_point, ignore);
201 LocalProcessWindowFinder::GetProcessWindowAtPoint(screen_point, ignore);
dock_info.cc 108 bool DockInfo::IsValidForPoint(const gfx::Point& screen_point) {
113 return IsCloseToPoint(screen_point, hot_spot_.x(), hot_spot_.y(),
117 return monitor_bounds_.Contains(screen_point) &&
118 IsCloseToMonitorPoint(screen_point, hot_spot_.x(),
dock_info_unittest.cc 109 gfx::Point screen_point[] = { local
120 EXPECT_EQ(expected_result[i], d.IsValidForPoint(screen_point[i]));
  /external/chromium/chrome/browser/ui/views/tab_contents/
tab_contents_view_touch.cc 278 gfx::Point screen_point(params.x, params.y);
282 views::View::ConvertPointToScreen(rwhv, &screen_point);
289 context_menu_->RunMenuAt(screen_point.x(), screen_point.y());
tab_contents_view_gtk.cc 376 gfx::Point screen_point(params.x, params.y);
377 views::View::ConvertPointToScreen(GetRootView(), &screen_point); local
383 context_menu_->RunMenuAt(screen_point.x(), screen_point.y());
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_menu_controller_views.h 114 const gfx::Point& screen_point,
bookmark_menu_controller_views.cc 253 const gfx::Point& screen_point,
259 gfx::Point bookmark_bar_loc(screen_point);
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_win.h 176 void HandleExternalMsg(UINT msg, UINT flags, const CPoint& screen_point);
autocomplete_edit_view_win.cc     [all...]
  /external/chromium/chrome/browser/ui/views/location_bar/
location_bar_view.cc     [all...]

Completed in 560 milliseconds