1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
/******************************************************************************
*
* Copyright (C) 2002 Hugo PEREIRA <mailto: hugo.pereira@free.fr>
*
* This is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* This software is distributed in the hope that it will be useful, but WITHOUT
* Any WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*
*******************************************************************************/
#include "TextEditor.h"
#include "Debug.h"
#include "LineNumberDisplay.h"
#include "XmlOptions.h"
#include <QAbstractTextDocumentLayout>
#include <QPainter>
#include <QScrollBar>
#include <QTextDocument>
#include <QTextBlock>
#include <QTextLayout>
//____________________________________________________________________________
LineNumberDisplay::LineNumberDisplay(TextEditor* editor):
QObject( editor ),
Counter( "LineNumberDisplay" ),
editor_( editor )
{
Debug::Throw( "LineNumberDisplay::LineNumberDisplay.\n" );
connect( &editor_->wrapModeAction(), SIGNAL(toggled(bool)), SLOT(needUpdate()) );
// document connections
connect( editor_->document(), SIGNAL(blockCountChanged(int)), SLOT(_blockCountChanged()) );
connect( editor_->document(), SIGNAL(contentsChanged()), SLOT(_contentsChanged()) );
}
//__________________________________________
void LineNumberDisplay::synchronize( LineNumberDisplay* display )
{
Debug::Throw( "LineNumberDisplay::synchronize.\n" );
// copy members
lineNumberData_ = display->lineNumberData_;
needsUpdate_ = display->needsUpdate_;
width_ = display->width_;
// re-initialize connections
connect( editor_->document(), SIGNAL(blockCountChanged(int)), SLOT(_blockCountChanged()) );
connect( editor_->document(), SIGNAL(contentsChanged()), SLOT(_contentsChanged()) );
}
//__________________________________________
bool LineNumberDisplay::updateWidth( int count )
{
Debug::Throw( "LineNumberDisplay::updateWidth.\n" );
int new_width( editor_->fontMetrics().width( QString::number( count ) ) + 14 );
if( width() == new_width ) return false;
width_ = new_width;
Debug::Throw() << "LineNumberDisplay::updateWidth - count: " << count << " new_width: " << new_width << endl;
return true;
}
//__________________________________________
void LineNumberDisplay::clear()
{
Debug::Throw( "LineNumberDisplay::clear.\n" );
lineNumberData_.clear();
needsUpdate_ = true;
}
//__________________________________________
void LineNumberDisplay::paint( QPainter& painter )
{
// update line number data if needed
if( needsUpdate_ ) _updateLineNumberData();
needsUpdate_ = false;
// font metric and offset
auto metric( editor_->fontMetrics() );
// calculate dimensions
int yOffset = editor_->verticalScrollBar()->value() - editor_->frameWidth();
int height( editor_->contentsRect().height() );
// translate
height += yOffset;
// get begin and end cursor positions
int firstIndex = editor_->cursorForPosition( QPoint( 0, 0 ) ).position();
int lastIndex = editor_->cursorForPosition( QPoint( 0, editor_->height() ) ).position();
// loop over data
QTextBlock block( editor_->document()->begin() );
int id( 0 );
for( auto& data:lineNumberData_ )
{
// skip if block is not (yet) in window
if( data.cursor() < firstIndex ) continue;
// stop if block is outside (below) window
if( data.cursor() > lastIndex ) break;
// check validity
if( !data.isValid() ) _updateLineNumberData( block, id, data );
// check position
if( data.isValid() && data.position() > height ) continue;
QString numtext( QString::number( data.lineNumber() ) );
painter.drawText(
0, data.position(), width_-8,
metric.lineSpacing(),
Qt::AlignRight | Qt::AlignTop,
numtext );
}
}
//________________________________________________________
void LineNumberDisplay::_contentsChanged()
{
// if text is wrapped, line number data needs update at next update
/* note: this could be further optimized if one retrieve the position at which the contents changed occured */
if( editor_->lineWrapMode() != TextEditor::NoWrap )
{ needUpdate(); }
}
//________________________________________________________
void LineNumberDisplay::_blockCountChanged()
{
// nothing to be done if wrap mode is not NoWrap, because
// it is handled in the _contentsChanged slot.
if( editor_->lineWrapMode() == TextEditor::NoWrap )
{ needUpdate(); }
}
//________________________________________________________
void LineNumberDisplay::_updateLineNumberData()
{
lineNumberData_.clear();
// get document
int id( 0 );
int block_count( 1 );
QTextDocument &document( *editor_->document() );
for( auto&& block = document.begin(); block.isValid(); block = block.next(), id++ )
{
// insert new data
lineNumberData_ << LineNumberData( id, block_count, block.position() );
// update block count
block_count += editor_->blockCount( block );
}
return;
}
//________________________________________________________
void LineNumberDisplay::_updateLineNumberData( QTextBlock& block, int& id, LineNumberDisplay::LineNumberData& data ) const
{
Q_ASSERT( !data.isValid() );
// find block matching data id
if( data.id() < id ) { for( ; data.id() < id && block.isValid(); block = block.previous(), id-- ) {} }
else if( data.id() > id ) { for( ; data.id() > id && block.isValid(); block = block.next(), id++ ) {} }
Q_ASSERT( block.isValid() );
data.setPosition( (int)block.layout()->position().y() );
}
|