Home | History | Annotate | Download | only in aura

Lines Matching defs:point

54 bool IsNonClientLocation(Window* target, const gfx::Point& location) {
73 const gfx::Point& location_in_root) {
77 gfx::Point location_in_screen = location_in_root;
263 gfx::Point point;
264 if (host_->QueryMouseLocation(&point)) {
266 ui::ConvertPointToDIP(window()->layer(), point));
306 void RootWindow::MoveCursorTo(const gfx::Point& location_in_dip) {
307 gfx::Point host_location(location_in_dip);
312 void RootWindow::MoveCursorToHostLocation(const gfx::Point& host_location) {
313 gfx::Point root_location(host_location);
376 gfx::Point last_mouse_location = GetLastMouseLocationInRoot();
382 void RootWindow::DispatchMouseExitAtPoint(const gfx::Point& point) {
383 ui::MouseEvent event(ui::ET_MOUSE_EXITED, point, point, ui::EF_NONE);
424 void RootWindow::ConvertPointToHost(gfx::Point* point) const {
425 gfx::Point3F point_3f(*point);
427 *point = gfx::ToFlooredPoint(point_3f.AsPointF());
430 void RootWindow::ConvertPointFromHost(gfx::Point* point) const {
431 gfx::Point3F point_3f(*point);
433 *point = gfx::ToFlooredPoint(point_3f.AsPointF());
470 gfx::Point RootWindow::GetLastMouseLocationInRoot() const {
471 gfx::Point location = Env::GetInstance()->last_mouse_location();
511 void RootWindow::MoveCursorToInternal(const gfx::Point& root_location,
512 const gfx::Point& host_location) {
634 ui::MouseEvent event(ui::ET_MOUSE_CAPTURE_CHANGED, gfx::Point(),
635 gfx::Point(), 0);
829 void RootWindow::OnHostMoved(const gfx::Point& origin) {
1133 gfx::Point root_mouse_location = GetLastMouseLocationInRoot();
1136 gfx::Point host_mouse_location = root_mouse_location;