QGIS API Documentation 3.41.0-Master (fda2aa46e9a)
|
Stores information relating to individual block formatting. More...
#include <qgstextblockformat.h>
Public Types | |
enum class | BooleanValue { NotSet , SetTrue , SetFalse } |
Status values for boolean format properties. More... | |
Public Member Functions | |
QgsTextBlockFormat ()=default | |
QgsTextBlockFormat (const QTextBlockFormat &format) | |
Constructor for QgsTextBlockFormat, based on the specified QTextBlockFormat format. | |
bool | hasHorizontalAlignmentSet () const |
Returns true if the format has an explicit horizontal alignment set. | |
Qgis::TextHorizontalAlignment | horizontalAlignment () const |
Returns the format horizontal alignment. | |
double | lineHeight () const |
Returns the line height in points, or NaN if the line height is not set and should be auto calculated. | |
double | lineHeightPercentage () const |
Returns the line height percentage size (as fraction of font size from 0.0 to 1.0), or NaN if the line height percentage is not set. | |
QgsMargins | margins () const |
Returns the block margins, in points. | |
void | overrideWith (const QgsTextBlockFormat &other) |
Override all the default/unset properties of the current block format with the settings from another format. | |
void | setHasHorizontalAlignmentSet (bool set) |
Sets whether the format has an explicit horizontal alignment set. | |
void | setHorizontalAlignment (Qgis::TextHorizontalAlignment alignment) |
Sets the format horizontal alignment. | |
void | setLineHeight (double height) |
Sets the font line height, in points. | |
void | setLineHeightPercentage (double height) |
Sets the line height percentage height (as fraction of font size from 0.0 to 1.0). | |
void | setMargins (const QgsMargins &margins) |
Sets the block margins, in points. | |
void | updateFontForFormat (QFont &font, const QgsRenderContext &context, double scaleFactor=1.0) const |
Updates the specified font in place, applying block formatting options which are applicable on a font level when rendered in the given context. | |
Stores information relating to individual block formatting.
These options encapsulate formatting options which override the default settings from a QgsTextFormat for individual text blocks.
Definition at line 42 of file qgstextblockformat.h.
|
strong |
Status values for boolean format properties.
Enumerator | |
---|---|
NotSet | Property is not set. |
SetTrue | Property is set and |
SetFalse | Property is set and |
Definition at line 54 of file qgstextblockformat.h.
|
default |
QgsTextBlockFormat::QgsTextBlockFormat | ( | const QTextBlockFormat & | format | ) |
Constructor for QgsTextBlockFormat, based on the specified QTextBlockFormat format.
Definition at line 46 of file qgstextblockformat.cpp.
|
inline |
Returns true
if the format has an explicit horizontal alignment set.
If false
is returned then the horizontal alignment will be inherited.
Definition at line 82 of file qgstextblockformat.h.
|
inline |
Returns the format horizontal alignment.
This property is only respected if hasHorizontalAlignmentSet() is true
.
Definition at line 102 of file qgstextblockformat.h.
double QgsTextBlockFormat::lineHeight | ( | ) | const |
Returns the line height in points, or NaN if the line height is not set and should be auto calculated.
Definition at line 82 of file qgstextblockformat.cpp.
double QgsTextBlockFormat::lineHeightPercentage | ( | ) | const |
Returns the line height percentage size (as fraction of font size from 0.0 to 1.0), or NaN if the line height percentage is not set.
Definition at line 92 of file qgstextblockformat.cpp.
|
inline |
Returns the block margins, in points.
Definition at line 174 of file qgstextblockformat.h.
void QgsTextBlockFormat::overrideWith | ( | const QgsTextBlockFormat & | other | ) |
Override all the default/unset properties of the current block format with the settings from another format.
This will replace any default/unset existing settings with the settings from other.
Any settings which are default/unset in other will be left unchanged.
other | The format to override with. |
Definition at line 59 of file qgstextblockformat.cpp.
|
inline |
Sets whether the format has an explicit horizontal alignment set.
If set is false
then the horizontal alignment will be inherited.
Definition at line 92 of file qgstextblockformat.h.
|
inline |
Sets the format horizontal alignment.
This property is only respected if hasHorizontalAlignmentSet() is true
.
Definition at line 112 of file qgstextblockformat.h.
void QgsTextBlockFormat::setLineHeight | ( | double | height | ) |
Sets the font line height, in points.
Set height to NaN if the line height is not set and should be auto calculated.
Definition at line 87 of file qgstextblockformat.cpp.
void QgsTextBlockFormat::setLineHeightPercentage | ( | double | height | ) |
Sets the line height percentage height (as fraction of font size from 0.0 to 1.0).
Set height to NaN if the line height percentange is not set.
Definition at line 97 of file qgstextblockformat.cpp.
|
inline |
Sets the block margins, in points.
Definition at line 182 of file qgstextblockformat.h.
void QgsTextBlockFormat::updateFontForFormat | ( | QFont & | font, |
const QgsRenderContext & | context, | ||
double | scaleFactor = 1.0 |
||
) | const |
Updates the specified font in place, applying block formatting options which are applicable on a font level when rendered in the given context.
The optional scaleFactor parameter can specify a font size scaling factor. It is recommended to set this to QgsTextRenderer::calculateScaleFactorForFormat() and then manually calculations based on the resultant font metrics. Failure to do so will result in poor quality text rendering at small font sizes.
Definition at line 102 of file qgstextblockformat.cpp.