Searched refs:sel_start (Results 1 – 2 of 2) sorted by relevance
109 QList<LineChunk> LineChunk::select( int sel_start, int sel_end ) const in select() argument113 if ( ( sel_start < start_ ) && ( sel_end < start_ ) ) { in select()117 else if ( sel_start > end_ ) { in select()124 sel_start = qMax( sel_start, start_ ); in select()127 if ( sel_start > start_ ) in select()128 list << LineChunk( start_, sel_start - 1, type_ ); in select()129 list << LineChunk( sel_start, sel_end, Selected ); in select()1550 int sel_start, sel_end; in drawTextArea() local1552 selection_.getPortionForLine( line_index, &sel_start, &sel_end ); in drawTextArea()1585 sel_start -= firstCol; // coord in line space in drawTextArea()[all …]