Home | History | Annotate | Download | only in gfx

Lines Matching defs:SelectionModel

33 // SelectionModel is used to represent the logical selection and visual
59 class GFX_EXPORT SelectionModel {
61 // Create a default SelectionModel to be overwritten later.
62 SelectionModel();
63 // Create a SelectionModel representing a caret |position| without a
67 SelectionModel(size_t position, LogicalCursorDirection affinity);
68 // Create a SelectionModel representing a selection (which may be empty).
70 SelectionModel(const Range& selection, LogicalCursorDirection affinity);
80 bool operator==(const SelectionModel& sel) const;
81 bool operator!=(const SelectionModel& sel) const { return !(*this == sel); }