/// Construct new coordinates with the specified screen-, client-, element- and page-relative points
pubfnnew(
screen: ScreenPoint,
client: ClientPoint,
element: ElementPoint,
page: PagePoint,
)-> Self{
Self{
screen,
client,
element,
page,
}
}
/// Coordinates relative to the entire screen. This takes into account the window's offset.
pubfnscreen(&self)-> ScreenPoint{
self.screen
}
/// Coordinates relative to the application's viewport (as opposed to the coordinate within the page).
///
/// For example, clicking in the top left corner of the viewport will always result in a mouse event with client coordinates (0., 0.), regardless of whether the page is scrolled horizontally.
pubfnclient(&self)-> ClientPoint{
self.client
}
/// Coordinates relative to the padding edge of the target element
///
/// For example, clicking in the top left corner of an element will result in element coordinates (0., 0.)
pubfnelement(&self)-> ElementPoint{
self.element
}
/// Coordinates relative to the entire document. This includes any portion of the document not currently visible.
///
/// For example, if the page is scrolled 200 pixels to the right and 300 pixels down, clicking in the top left corner of the viewport would result in page coordinates (200., 300.)