▲
-
Header: Tab
-
CMake:
find_package(Qt6 REQUIRED COMPONENTS Gui)
target_link_libraries(mytarget PRIVATE Qt6::Gui)
-
qmake: QT += gui
Detailed Description▲
Each tab definition is represented by this struct.
Member Function Documentation▲
Tab::Tab()▲
Creates a default left tab with position 80.
Tab::Tab(qreal pos, TabType tabType, QChar delim = QChar())▲
Creates a tab with the given position, tab type, and delimiter (pos, tabType, delim).
delim is only used when tabType is DelimiterTab.
bool Tab::operator!=(const Tab &other) const▲
Returns true if tab other is not equal to this tab; otherwise returns false.
bool Tab::operator==(const Tab &other) const▲
Returns true if tab other is equal to this tab; otherwise returns false.
Member Variable Documentation▲
QChar Tab::delimiter▲
If type is DelimitorTab; tab until this char is found in the text.
qreal Tab::position▲
Distance from the start of the paragraph. The position of a tab is from the start of the paragraph which implies that when the alignment of the paragraph is set to centered, the tab is interpreted to be moved the same distance as the left edge of the paragraph does. In case the paragraph is set to have a layoutDirection() RightToLeft the position is interpreted to be from the right side of the paragraph with higher numbers moving the tab to the left.