Home | History | Annotate | Download | only in rendering

Lines Matching refs:selectionState

1913 void RenderBlock::setSelectionState(SelectionState s)
1915 if (selectionState() == s)
1918 if (s == SelectionInside && selectionState() != SelectionNone)
1921 if ((s == SelectionStart && selectionState() == SelectionEnd) ||
1922 (s == SelectionEnd && selectionState() == SelectionStart))
1934 return selectionState() != SelectionNone && style()->visibility() == VISIBLE && isSelectionRoot();
2063 if (rootBlock == this && (selectionState() != SelectionBoth && selectionState() != SelectionEnd))
2074 bool containsStart = selectionState() == SelectionStart || selectionState() == SelectionBoth;
2097 selectionState() != SelectionStart && selectionState() != SelectionBoth)
2111 if (lastSelectedLine && selectionState() != SelectionEnd && selectionState() != SelectionBoth) {
2127 for (curr = firstChildBox(); curr && curr->selectionState() == SelectionNone; curr = curr->nextSiblingBox()) { }
2130 SelectionState childState = curr->selectionState();
2245 void RenderBlock::getHorizontalSelectionGapInfo(SelectionState state, bool& leftGap, bool& rightGap)