Searched refs:column (Results 1 – 16 of 16) sorted by relevance
/glogg/glogg/src/ ! |
H A D | quickfind.cpp |
|
H A D | quickfindpattern.cpp |
|
H A D | selection.cpp |
|
H A D | quickfindpattern.h |
|
H A D | utils.h |
|
H A D | quickfind.h |
|
H A D | abstractlogview.cpp |
|
/glogg/src/ ! |
H A D | quickfind.cpp | 54 void QuickFind::LastMatchPosition::set( int line, int column ) in set() argument 57 ( ( line <= line_ ) && ( column < column_ ) ) ) in set() 60 column_ = column; in set() 66 set( position.line(), position.column() ); in set() 69 bool QuickFind::LastMatchPosition::isLater( int line, int column ) const in isLater() 73 else if ( ( line == line_ ) && ( column >= column_ ) ) in isLater() 83 return isLater( position.line(), position.column() ); in isLater() 86 bool QuickFind::LastMatchPosition::isSooner( int line, int column ) const in isSooner() 90 else if ( ( line == line_ ) && ( column <= column_ ) ) in isSooner() 100 return isSooner( position.line(), position.column() ); in isSooner() [all …]
|
H A D | quickfindpattern.cpp | 90 bool QuickFindPattern::isLineMatching( const QString& line, int column ) const in isLineMatching() 95 QRegularExpressionMatch match = regexp_.match( line, column ); in isLineMatching() 107 const QString& line, int column ) const in isLineMatchingBackward() 116 if ( column >= 0 && nextMatch.capturedEnd() >= column ) { in isLineMatchingBackward()
|
H A D | selection.cpp | 167 int column = 0; in getNextPosition() local 177 column = selectedPartial_.endColumn + 1; in getNextPosition() 180 return FilePosition( line, column ); in getNextPosition() 186 int column = 0; in getPreviousPosition() local 196 column = qMax( selectedPartial_.startColumn - 1, 0 ); in getPreviousPosition() 199 return FilePosition( line, column ); in getPreviousPosition()
|
H A D | quickfindpattern.h | 76 bool isLineMatching( const QString& line, int column = 0 ) const; 79 bool isLineMatchingBackward( const QString& line, int column = -1 ) const;
|
H A D | utils.h | 106 FilePosition( qint64 line, int column ) in FilePosition() argument 107 { line_ = line; column_ = column; } in FilePosition() 110 int column() const { return column_; } in column() function
|
H A D | quickfind.h | 140 void set( int line, int column ); 144 bool isLater( int line, int column ) const; 147 bool isSooner( int line, int column ) const;
|
H A D | abstractlogview.cpp | 1176 int column = firstCol + ( pos.x() - leftMarginPx_ ) / charWidth_; in convertCoordToFilePos() local 1181 if ( column >= length ) in convertCoordToFilePos() 1182 column = length - 1; in convertCoordToFilePos() 1183 if ( column < 0 ) in convertCoordToFilePos() 1184 column = 0; in convertCoordToFilePos() 1187 << column << " line=" << line; in convertCoordToFilePos() 1188 QPoint point( column, line ); in convertCoordToFilePos() 1565 int column = 0; // Current column in line space in drawTextArea() local 1572 if ( start > column ) in drawTextArea() 1573 chunkList << LineChunk( column, start - 1, LineChunk::Normal ); in drawTextArea() [all …]
|
/glogg/glogg/doc/ ! |
H A D | documentation.markdown |
|
/glogg/doc/ ! |
H A D | documentation.markdown | 100 <td>scroll one line up/down or one column left/right</td></tr>
|