OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cursor_point
(Results
1 - 3
of
3
) sorted by null
/external/chromium/chrome/browser/ui/views/tabs/
base_tab_strip.cc
99
POINT
cursor_point
= {GET_X_LPARAM(pos), GET_Y_LPARAM(pos)};
local
100
MapWindowPoints(NULL, widget->GetNativeView(), &
cursor_point
, 1);
106
MAKELPARAM(
cursor_point
.x,
cursor_point
.y));
dragged_tab_controller.cc
571
gfx::Point
cursor_point
= GetCursorScreenPoint();
local
575
return
cursor_point
;
580
cursor_point
);
582
if (
cursor_point
.x() < work_area.x())
583
cursor_point
.set_x(work_area.x());
584
else if (
cursor_point
.x() > work_area.right())
585
cursor_point
.set_x(work_area.right());
586
if (
cursor_point
.y() < work_area.y())
587
cursor_point
.set_y(work_area.y());
588
else if (
cursor_point
.y() > work_area.bottom()
[
all
...]
/external/chromium/chrome/browser/ui/gtk/tabs/
dragged_tab_controller_gtk.cc
199
gfx::Point
cursor_point
= GetCursorScreenPoint();
local
200
return gfx::Point(
cursor_point
.x() - window_create_point_.x(),
201
cursor_point
.y() - window_create_point_.y());
Completed in 27 milliseconds