Home · All Classes · Modules

QTextBlockFormat Class Reference
[QtGui module]

The QTextBlockFormat class provides formatting information for blocks of text in a QTextDocument. More...

Inherits QTextFormat.

Types

Methods


Detailed Description

The QTextBlockFormat class provides formatting information for blocks of text in a QTextDocument.

A document is composed of a list of blocks, represented by QTextBlock objects. Each block can contain an item of some kind, such as a paragraph of text, a table, a list, or an image. Every block has an associated QTextBlockFormat that specifies its characteristics.

To cater for left-to-right and right-to-left languages you can set a block's direction with setDirection(). Paragraph alignment is set with setAlignment(). Margins are controlled by setTopMargin(), setBottomMargin(), setLeftMargin(), setRightMargin(). Overall indentation is set with setIndent(), the indentation of the first line with setTextIndent().

Line spacing is set with setLineHeight() and retrieved via lineHeight() and lineHeightType(). The types of line spacing available are in the LineHeightTypes enum.

Line breaking can be enabled and disabled with setNonBreakableLines().

The brush used to paint the paragraph's background is set with setBackground(), and other aspects of the text's appearance can be customized by using the setProperty() function with the OutlinePen, ForegroundBrush, and BackgroundBrush QTextFormat.Property values.

If a text block is part of a list, it can also have a list format that is accessible with the listFormat() function.


Type Documentation

QTextBlockFormat.LineHeightTypes

This enum describes the various types of line spacing support paragraphs can have.

Constant Value Description
QTextBlockFormat.SingleHeight 0 This is the default line height: single spacing.
QTextBlockFormat.ProportionalHeight 1 This sets the spacing proportional to the line (in percentage). For example, set to 200 for double spacing.
QTextBlockFormat.FixedHeight 2 This sets the line height to a fixed line height (in pixels).
QTextBlockFormat.MinimumHeight 3 This sets the minimum line height (in pixels).
QTextBlockFormat.LineDistanceHeight 4 This adds the specified height between lines (in pixels).

This enum was introduced or modified in Qt 4.8.

See also lineHeight(), lineHeightType(), and setLineHeight().


Method Documentation

QTextBlockFormat.__init__ (self)

Constructs a new QTextBlockFormat.

QTextBlockFormat.__init__ (self, QTextBlockFormat)

Qt.Alignment QTextBlockFormat.alignment (self)

Returns the paragraph's alignment.

See also setAlignment().

float QTextBlockFormat.bottomMargin (self)

Returns the paragraph's bottom margin.

See also setBottomMargin() and topMargin().

int QTextBlockFormat.indent (self)

Returns the paragraph's indent.

See also setIndent().

bool QTextBlockFormat.isValid (self)

Returns true if this block format is valid; otherwise returns false.

float QTextBlockFormat.leftMargin (self)

Returns the paragraph's left margin.

See also setLeftMargin(), rightMargin(), and indent().

float QTextBlockFormat.lineHeight (self, float scriptLineHeight, float scaling)

Returns the height of the lines in the paragraph based on the height of the script line given by scriptLineHeight and the specified scaling factor.

The value that is returned is also dependent on the given LineHeightType of the paragraph as well as the LineHeight setting that has been set for the paragraph.

The scaling is needed for heights that include a fixed number of pixels, to scale them appropriately for printing.

This function was introduced in Qt 4.8.

See also LineHeightTypes, setLineHeight(), and lineHeightType().

float QTextBlockFormat.lineHeight (self)

This returns the LineHeight property for the paragraph.

This function was introduced in Qt 4.8.

See also LineHeightTypes, setLineHeight(), and lineHeightType().

int QTextBlockFormat.lineHeightType (self)

This returns the LineHeightType property of the paragraph.

This function was introduced in Qt 4.8.

See also LineHeightTypes, setLineHeight(), and lineHeight().

bool QTextBlockFormat.nonBreakableLines (self)

Returns true if the lines in the paragraph are non-breakable; otherwise returns false.

See also setNonBreakableLines().

QTextFormat.PageBreakFlags QTextBlockFormat.pageBreakPolicy (self)

Returns the currently set page break policy for the paragraph. The default is QTextFormat.PageBreak_Auto.

This function was introduced in Qt 4.2.

See also setPageBreakPolicy().

float QTextBlockFormat.rightMargin (self)

Returns the paragraph's right margin.

See also setRightMargin() and leftMargin().

QTextBlockFormat.setAlignment (self, Qt.Alignment aalignment)

Sets the paragraph's alignment.

See also alignment().

QTextBlockFormat.setBottomMargin (self, float margin)

Sets the paragraph's bottom margin.

See also bottomMargin(), setTopMargin(), setLeftMargin(), and setRightMargin().

QTextBlockFormat.setIndent (self, int aindent)

Sets the paragraph's indentation. Margins are set independently of indentation with setLeftMargin() and setTextIndent(). The indentation is an integer that is multiplied with the document-wide standard indent, resulting in the actual indent of the paragraph.

See also indent() and QTextDocument.indentWidth().

QTextBlockFormat.setLeftMargin (self, float margin)

Sets the paragraph's left margin. Indentation can be applied separately with setIndent().

See also leftMargin(), setRightMargin(), setTopMargin(), and setBottomMargin().

QTextBlockFormat.setLineHeight (self, float height, int heightType)

Sets the line height for the paragraph to the value given by height which is dependent on heightType in the way described by the LineHeightTypes enum.

This function was introduced in Qt 4.8.

See also LineHeightTypes, lineHeight(), and lineHeightType().

QTextBlockFormat.setNonBreakableLines (self, bool b)

If b is true, the lines in the paragraph are treated as non-breakable; otherwise they are breakable.

See also nonBreakableLines().

QTextBlockFormat.setPageBreakPolicy (self, QTextFormat.PageBreakFlags flags)

Sets the page break policy for the paragraph to policy.

This function was introduced in Qt 4.2.

See also pageBreakPolicy().

QTextBlockFormat.setRightMargin (self, float margin)

Sets the paragraph's right margin.

See also rightMargin(), setLeftMargin(), setTopMargin(), and setBottomMargin().

QTextBlockFormat.setTabPositions (self, list-of-QTextOption.Tab tabs)

Sets the tab positions for the text block to those specified by tabs.

This function was introduced in Qt 4.4.

See also tabPositions().

QTextBlockFormat.setTextIndent (self, float margin)

Sets the indent for the first line in the block. This allows the first line of a paragraph to be indented differently to the other lines, enhancing the readability of the text.

See also textIndent(), setLeftMargin(), setRightMargin(), setTopMargin(), and setBottomMargin().

QTextBlockFormat.setTopMargin (self, float margin)

Sets the paragraph's top margin.

See also topMargin(), setBottomMargin(), setLeftMargin(), and setRightMargin().

list-of-QTextOption.Tab QTextBlockFormat.tabPositions (self)

Returns a list of tab positions defined for the text block.

This function was introduced in Qt 4.4.

See also setTabPositions().

float QTextBlockFormat.textIndent (self)

Returns the paragraph's text indent.

See also setTextIndent().

float QTextBlockFormat.topMargin (self)

Returns the paragraph's top margin.

See also setTopMargin() and bottomMargin().


PyQt 4.11.4 for X11Copyright © Riverbank Computing Ltd and The Qt Company 2015Qt 4.8.7