Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgstextcharacterformat.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 "qgstextcharacterformat.h" 17 : : 18 : : #include <QTextCharFormat> 19 : : 20 : 0 : QgsTextCharacterFormat::QgsTextCharacterFormat( const QTextCharFormat &format ) 21 : 0 : : mTextColor( format.hasProperty( QTextFormat::ForegroundBrush ) ? format.foreground().color() : QColor() ) 22 : : #if 0 // settings which affect font metrics are disabled for now 23 : : , mFontWeight( format.hasProperty( QTextFormat::FontWeight ) ? format.fontWeight() : -1 ) 24 : : , mItalic( format.hasProperty( QTextFormat::FontItalic ) ? ( format.fontItalic() ? BooleanValue::SetTrue : BooleanValue::SetFalse ) : BooleanValue::NotSet ) 25 : : , mFontPointSize( format.hasProperty( QTextFormat::FontPointSize ) ? format.fontPointSize() : - 1 ) 26 : : , mFontFamily( format.hasProperty( QTextFormat::FontFamily ) ? format.fontFamily() : QString() ) 27 : : #endif 28 : 0 : , mStrikethrough( format.hasProperty( QTextFormat::FontStrikeOut ) ? ( format.fontStrikeOut() ? BooleanValue::SetTrue : BooleanValue::SetFalse ) : BooleanValue::NotSet ) 29 : 0 : , mUnderline( format.hasProperty( QTextFormat::FontUnderline ) ? ( format.fontUnderline() ? BooleanValue::SetTrue : BooleanValue::SetFalse ) : BooleanValue::NotSet ) 30 : 0 : , mOverline( format.hasProperty( QTextFormat::FontOverline ) ? ( format.fontOverline() ? BooleanValue::SetTrue : BooleanValue::SetFalse ) : BooleanValue::NotSet ) 31 : : { 32 : : 33 : 0 : } 34 : : 35 : 0 : QColor QgsTextCharacterFormat::textColor() const 36 : : { 37 : 0 : return mTextColor; 38 : : } 39 : : 40 : 0 : void QgsTextCharacterFormat::setTextColor( const QColor &textColor ) 41 : : { 42 : 0 : mTextColor = textColor; 43 : 0 : } 44 : : 45 : 0 : QgsTextCharacterFormat::BooleanValue QgsTextCharacterFormat::strikeOut() const 46 : : { 47 : 0 : return mStrikethrough; 48 : : } 49 : : 50 : 0 : void QgsTextCharacterFormat::setStrikeOut( BooleanValue strikethrough ) 51 : : { 52 : 0 : mStrikethrough = strikethrough; 53 : 0 : } 54 : : 55 : 0 : QgsTextCharacterFormat::BooleanValue QgsTextCharacterFormat::underline() const 56 : : { 57 : 0 : return mUnderline; 58 : : } 59 : : 60 : 0 : void QgsTextCharacterFormat::setUnderline( BooleanValue underline ) 61 : : { 62 : 0 : mUnderline = underline; 63 : 0 : } 64 : : 65 : 0 : QgsTextCharacterFormat::BooleanValue QgsTextCharacterFormat::overline() const 66 : : { 67 : 0 : return mOverline; 68 : : } 69 : : 70 : 0 : void QgsTextCharacterFormat::setOverline( QgsTextCharacterFormat::BooleanValue enabled ) 71 : : { 72 : 0 : mOverline = enabled; 73 : 0 : } 74 : : 75 : 0 : void QgsTextCharacterFormat::updateFontForFormat( QFont &font, const double scaleFactor ) const 76 : : { 77 : : Q_UNUSED( scaleFactor ); 78 : : #if 0 // settings which affect font metrics are disabled for now 79 : : if ( mItalic != QgsTextCharacterFormat::BooleanValue::NotSet ) 80 : : font.setItalic( mItalic == QgsTextCharacterFormat::BooleanValue::SetTrue ); 81 : : if ( mFontWeight != -1 ) 82 : : font.setWeight( mFontWeight ); 83 : : if ( !mFontFamily.isEmpty() ) 84 : : font.setFamily( mFontFamily ); 85 : : if ( mFontPointSize != -1 ) 86 : : font.setPointSizeF( mFontPointSize ); 87 : : #endif 88 : : 89 : 0 : if ( mUnderline != BooleanValue::NotSet ) 90 : 0 : font.setUnderline( mUnderline == QgsTextCharacterFormat::BooleanValue::SetTrue ); 91 : 0 : if ( mOverline != BooleanValue::NotSet ) 92 : 0 : font.setOverline( mOverline == QgsTextCharacterFormat::BooleanValue::SetTrue ); 93 : 0 : if ( mStrikethrough != QgsTextCharacterFormat::BooleanValue::NotSet ) 94 : 0 : font.setStrikeOut( mStrikethrough == QgsTextCharacterFormat::BooleanValue::SetTrue ); 95 : 0 : } 96 : : 97 : : #if 0 // settings which affect font metrics are disabled for now 98 : : QgsTextCharacterFormat::BooleanValue QgsTextCharacterFormat::italic() const 99 : : { 100 : : return mItalic; 101 : : } 102 : : 103 : : void QgsTextCharacterFormat::setItalic( QgsTextCharacterFormat::BooleanValue enabled ) 104 : : { 105 : : mItalic = enabled; 106 : : } 107 : : 108 : : int QgsTextCharacterFormat::fontWeight() const 109 : : { 110 : : return mFontWeight; 111 : : } 112 : : 113 : : void QgsTextCharacterFormat::setFontWeight( int fontWeight ) 114 : : { 115 : : mFontWeight = fontWeight; 116 : : } 117 : : #endif