Home | History | Annotate | Download | only in gfx

Lines Matching refs:SelectionModel

33 // SelectionModel is used to represent the logical selection and visual
59 class UI_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(ui::Range selection, LogicalCursorDirection affinity);
76 bool operator==(const SelectionModel& sel) const;
77 bool operator!=(const SelectionModel& sel) const { return !(*this == sel); }