Home
last modified time | relevance | path

Searched refs:column (Results 1 – 16 of 16) sorted by relevance

/glogg/glogg/src/ !
H A Dquickfind.cpp
H A Dquickfindpattern.cpp
H A Dselection.cpp
H A Dquickfindpattern.h
H A Dutils.h
H A Dquickfind.h
H A Dabstractlogview.cpp
/glogg/src/ !
H A Dquickfind.cpp54 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 Dquickfindpattern.cpp90 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 Dselection.cpp167 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 Dquickfindpattern.h76 bool isLineMatching( const QString& line, int column = 0 ) const;
79 bool isLineMatchingBackward( const QString& line, int column = -1 ) const;
H A Dutils.h106 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 Dquickfind.h140 void set( int line, int column );
144 bool isLater( int line, int column ) const;
147 bool isSooner( int line, int column ) const;
H A Dabstractlogview.cpp1176 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 Ddocumentation.markdown
/glogg/doc/ !
H A Ddocumentation.markdown100 <td>scroll one line up/down or one column left/right</td></tr>