Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgstextblock.cpp 3 : : --------------- 4 : : begin : May 2020 5 : : copyright : (C) Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 7 : : *************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : 16 : : #include "qgstextblock.h" 17 : : #include "qgstextfragment.h" 18 : : 19 : 0 : QgsTextBlock::QgsTextBlock( const QgsTextFragment &fragment ) 20 : : { 21 : 0 : mFragments.append( fragment ); 22 : 0 : } 23 : : 24 : 0 : QString QgsTextBlock::toPlainText() const 25 : : { 26 : 0 : QString res; 27 : 0 : for ( const QgsTextFragment &fragment : mFragments ) 28 : : { 29 : 0 : res.append( fragment.text() ); 30 : : } 31 : 0 : return res; 32 : 0 : } 33 : : 34 : 0 : void QgsTextBlock::append( const QgsTextFragment &fragment ) 35 : : { 36 : 0 : mFragments.append( fragment ); 37 : 0 : } 38 : : 39 : 0 : void QgsTextBlock::append( QgsTextFragment &&fragment ) 40 : : { 41 : 0 : mFragments.push_back( fragment ); 42 : 0 : } 43 : : 44 : 0 : void QgsTextBlock::clear() 45 : : { 46 : 0 : mFragments.clear(); 47 : 0 : } 48 : : 49 : 0 : bool QgsTextBlock::empty() const 50 : : { 51 : 0 : return mFragments.empty(); 52 : : } 53 : : 54 : 0 : int QgsTextBlock::size() const 55 : : { 56 : 0 : return mFragments.size(); 57 : : } 58 : : 59 : 0 : void QgsTextBlock::applyCapitalization( QgsStringUtils::Capitalization capitalization ) 60 : : { 61 : 0 : for ( QgsTextFragment &fragment : mFragments ) 62 : : { 63 : 0 : fragment.applyCapitalization( capitalization ); 64 : : } 65 : 0 : } 66 : : 67 : 0 : const QgsTextFragment &QgsTextBlock::at( int index ) const 68 : : { 69 : 0 : return mFragments.at( index ); 70 : : } 71 : : 72 : 0 : QgsTextFragment &QgsTextBlock::operator[]( int index ) 73 : : { 74 : 0 : return mFragments[ index ]; 75 : : } 76 : : 77 : : ///@cond PRIVATE 78 : 0 : QVector< QgsTextFragment >::const_iterator QgsTextBlock::begin() const 79 : : { 80 : 0 : return mFragments.begin(); 81 : : } 82 : : 83 : 0 : QVector< QgsTextFragment >::const_iterator QgsTextBlock::end() const 84 : : { 85 : 0 : return mFragments.end(); 86 : : } 87 : : ///@endcond