Searched refs:PointDocument (Results 1 – 5 of 5) sorted by relevance
25 class PointDocument {30 explicit PointDocument(double x_ = 0, double y_ = 0) noexcept : x(x_), y(y_) { in x()34 explicit PointDocument(Point pt) noexcept : x(pt.x), y(pt.y) { in PointDocument() function
124 …SelectionPosition SPositionFromLocation(Surface *surface, const EditModel &model, PointDocument pt…
283 …PointDocument DocumentPointFromView(Point ptView) const; // Convert a point from view space to do…
303 PointDocument Editor::DocumentPointFromView(Point ptView) const { in DocumentPointFromView()304 PointDocument ptDocument(ptView); in DocumentPointFromView()415 const PointDocument ptdoc = DocumentPointFromView(pt); in SPositionFromLocation()
699 …View::SPositionFromLocation(Surface *surface, const EditModel &model, PointDocument pt, bool canRe… in SPositionFromLocation()