qtextformat.h 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QTEXTFORMAT_H
  40. #define QTEXTFORMAT_H
  41. #include <QtGui/qcolor.h>
  42. #include <QtGui/qfont.h>
  43. #include <QtCore/qshareddata.h>
  44. #include <QtCore/qvector.h>
  45. #include <QtCore/qvariant.h>
  46. #include <QtGui/qpen.h>
  47. #include <QtGui/qbrush.h>
  48. #include <QtGui/qtextoption.h>
  49. QT_BEGIN_NAMESPACE
  50. class QString;
  51. class QVariant;
  52. class QFont;
  53. class QTextFormatCollection;
  54. class QTextFormatPrivate;
  55. class QTextBlockFormat;
  56. class QTextCharFormat;
  57. class QTextListFormat;
  58. class QTextTableFormat;
  59. class QTextFrameFormat;
  60. class QTextImageFormat;
  61. class QTextTableCellFormat;
  62. class QTextFormat;
  63. class QTextObject;
  64. class QTextCursor;
  65. class QTextDocument;
  66. class QTextLength;
  67. #ifndef QT_NO_DATASTREAM
  68. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QTextLength &);
  69. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QTextLength &);
  70. #endif
  71. #ifndef QT_NO_DEBUG_STREAM
  72. Q_GUI_EXPORT QDebug operator<<(QDebug, const QTextLength &);
  73. #endif
  74. class Q_GUI_EXPORT QTextLength
  75. {
  76. public:
  77. enum Type { VariableLength = 0, FixedLength, PercentageLength };
  78. inline QTextLength() : lengthType(VariableLength), fixedValueOrPercentage(0) {}
  79. inline explicit QTextLength(Type type, qreal value);
  80. inline Type type() const { return lengthType; }
  81. inline qreal value(qreal maximumLength) const
  82. {
  83. switch (lengthType) {
  84. case FixedLength: return fixedValueOrPercentage;
  85. case VariableLength: return maximumLength;
  86. case PercentageLength: return fixedValueOrPercentage * maximumLength / qreal(100);
  87. }
  88. return -1;
  89. }
  90. inline qreal rawValue() const { return fixedValueOrPercentage; }
  91. inline bool operator==(const QTextLength &other) const
  92. { return lengthType == other.lengthType
  93. && qFuzzyCompare(fixedValueOrPercentage, other.fixedValueOrPercentage); }
  94. inline bool operator!=(const QTextLength &other) const
  95. { return lengthType != other.lengthType
  96. || !qFuzzyCompare(fixedValueOrPercentage, other.fixedValueOrPercentage); }
  97. operator QVariant() const;
  98. private:
  99. Type lengthType;
  100. qreal fixedValueOrPercentage;
  101. friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QTextLength &);
  102. friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QTextLength &);
  103. };
  104. Q_DECLARE_TYPEINFO(QTextLength, QT_VERSION >= QT_VERSION_CHECK(6,0,0) ? Q_PRIMITIVE_TYPE : Q_RELOCATABLE_TYPE);
  105. inline QTextLength::QTextLength(Type atype, qreal avalue)
  106. : lengthType(atype), fixedValueOrPercentage(avalue) {}
  107. #ifndef QT_NO_DATASTREAM
  108. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QTextFormat &);
  109. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QTextFormat &);
  110. #endif
  111. #ifndef QT_NO_DEBUG_STREAM
  112. Q_GUI_EXPORT QDebug operator<<(QDebug, const QTextFormat &);
  113. #endif
  114. class Q_GUI_EXPORT QTextFormat
  115. {
  116. Q_GADGET
  117. public:
  118. enum FormatType {
  119. InvalidFormat = -1,
  120. BlockFormat = 1,
  121. CharFormat = 2,
  122. ListFormat = 3,
  123. #if QT_DEPRECATED_SINCE(5, 3)
  124. TableFormat = 4,
  125. #endif
  126. FrameFormat = 5,
  127. UserFormat = 100
  128. };
  129. Q_ENUM(FormatType)
  130. enum Property {
  131. ObjectIndex = 0x0,
  132. // paragraph and char
  133. CssFloat = 0x0800,
  134. LayoutDirection = 0x0801,
  135. OutlinePen = 0x810,
  136. BackgroundBrush = 0x820,
  137. ForegroundBrush = 0x821,
  138. // Internal to qtextlayout.cpp: ObjectSelectionBrush = 0x822
  139. BackgroundImageUrl = 0x823,
  140. // paragraph
  141. BlockAlignment = 0x1010,
  142. BlockTopMargin = 0x1030,
  143. BlockBottomMargin = 0x1031,
  144. BlockLeftMargin = 0x1032,
  145. BlockRightMargin = 0x1033,
  146. TextIndent = 0x1034,
  147. TabPositions = 0x1035,
  148. BlockIndent = 0x1040,
  149. LineHeight = 0x1048,
  150. LineHeightType = 0x1049,
  151. BlockNonBreakableLines = 0x1050,
  152. BlockTrailingHorizontalRulerWidth = 0x1060,
  153. // character properties
  154. FirstFontProperty = 0x1FE0,
  155. FontCapitalization = FirstFontProperty,
  156. FontLetterSpacingType = 0x2033,
  157. FontLetterSpacing = 0x1FE1,
  158. FontWordSpacing = 0x1FE2,
  159. FontStretch = 0x2034,
  160. FontStyleHint = 0x1FE3,
  161. FontStyleStrategy = 0x1FE4,
  162. FontKerning = 0x1FE5,
  163. FontHintingPreference = 0x1FE6,
  164. FontFamily = 0x2000,
  165. FontPointSize = 0x2001,
  166. FontSizeAdjustment = 0x2002,
  167. FontSizeIncrement = FontSizeAdjustment, // old name, compat
  168. FontWeight = 0x2003,
  169. FontItalic = 0x2004,
  170. FontUnderline = 0x2005, // deprecated, use TextUnderlineStyle instead
  171. FontOverline = 0x2006,
  172. FontStrikeOut = 0x2007,
  173. FontFixedPitch = 0x2008,
  174. FontPixelSize = 0x2009,
  175. LastFontProperty = FontPixelSize,
  176. TextUnderlineColor = 0x2010,
  177. TextVerticalAlignment = 0x2021,
  178. TextOutline = 0x2022,
  179. TextUnderlineStyle = 0x2023,
  180. TextToolTip = 0x2024,
  181. IsAnchor = 0x2030,
  182. AnchorHref = 0x2031,
  183. AnchorName = 0x2032,
  184. ObjectType = 0x2f00,
  185. // list properties
  186. ListStyle = 0x3000,
  187. ListIndent = 0x3001,
  188. ListNumberPrefix = 0x3002,
  189. ListNumberSuffix = 0x3003,
  190. // table and frame properties
  191. FrameBorder = 0x4000,
  192. FrameMargin = 0x4001,
  193. FramePadding = 0x4002,
  194. FrameWidth = 0x4003,
  195. FrameHeight = 0x4004,
  196. FrameTopMargin = 0x4005,
  197. FrameBottomMargin = 0x4006,
  198. FrameLeftMargin = 0x4007,
  199. FrameRightMargin = 0x4008,
  200. FrameBorderBrush = 0x4009,
  201. FrameBorderStyle = 0x4010,
  202. TableColumns = 0x4100,
  203. TableColumnWidthConstraints = 0x4101,
  204. TableCellSpacing = 0x4102,
  205. TableCellPadding = 0x4103,
  206. TableHeaderRowCount = 0x4104,
  207. // table cell properties
  208. TableCellRowSpan = 0x4810,
  209. TableCellColumnSpan = 0x4811,
  210. TableCellTopPadding = 0x4812,
  211. TableCellBottomPadding = 0x4813,
  212. TableCellLeftPadding = 0x4814,
  213. TableCellRightPadding = 0x4815,
  214. // image properties
  215. ImageName = 0x5000,
  216. ImageWidth = 0x5010,
  217. ImageHeight = 0x5011,
  218. // internal
  219. /*
  220. SuppressText = 0x5012,
  221. SuppressBackground = 0x513
  222. */
  223. // selection properties
  224. FullWidthSelection = 0x06000,
  225. // page break properties
  226. PageBreakPolicy = 0x7000,
  227. // --
  228. UserProperty = 0x100000
  229. };
  230. Q_ENUM(Property)
  231. enum ObjectTypes {
  232. NoObject,
  233. ImageObject,
  234. TableObject,
  235. TableCellObject,
  236. UserObject = 0x1000
  237. };
  238. Q_ENUM(ObjectTypes)
  239. enum PageBreakFlag {
  240. PageBreak_Auto = 0,
  241. PageBreak_AlwaysBefore = 0x001,
  242. PageBreak_AlwaysAfter = 0x010
  243. // PageBreak_AlwaysInside = 0x100
  244. };
  245. Q_DECLARE_FLAGS(PageBreakFlags, PageBreakFlag)
  246. QTextFormat();
  247. explicit QTextFormat(int type);
  248. QTextFormat(const QTextFormat &rhs);
  249. QTextFormat &operator=(const QTextFormat &rhs);
  250. ~QTextFormat();
  251. void swap(QTextFormat &other)
  252. { qSwap(d, other.d); qSwap(format_type, other.format_type); }
  253. void merge(const QTextFormat &other);
  254. inline bool isValid() const { return type() != InvalidFormat; }
  255. inline bool isEmpty() const { return propertyCount() == 0; }
  256. int type() const;
  257. int objectIndex() const;
  258. void setObjectIndex(int object);
  259. QVariant property(int propertyId) const;
  260. void setProperty(int propertyId, const QVariant &value);
  261. void clearProperty(int propertyId);
  262. bool hasProperty(int propertyId) const;
  263. bool boolProperty(int propertyId) const;
  264. int intProperty(int propertyId) const;
  265. qreal doubleProperty(int propertyId) const;
  266. QString stringProperty(int propertyId) const;
  267. QColor colorProperty(int propertyId) const;
  268. QPen penProperty(int propertyId) const;
  269. QBrush brushProperty(int propertyId) const;
  270. QTextLength lengthProperty(int propertyId) const;
  271. QVector<QTextLength> lengthVectorProperty(int propertyId) const;
  272. void setProperty(int propertyId, const QVector<QTextLength> &lengths);
  273. QMap<int, QVariant> properties() const;
  274. int propertyCount() const;
  275. inline void setObjectType(int type);
  276. inline int objectType() const
  277. { return intProperty(ObjectType); }
  278. inline bool isCharFormat() const { return type() == CharFormat; }
  279. inline bool isBlockFormat() const { return type() == BlockFormat; }
  280. inline bool isListFormat() const { return type() == ListFormat; }
  281. inline bool isFrameFormat() const { return type() == FrameFormat; }
  282. inline bool isImageFormat() const { return type() == CharFormat && objectType() == ImageObject; }
  283. inline bool isTableFormat() const { return type() == FrameFormat && objectType() == TableObject; }
  284. inline bool isTableCellFormat() const { return type() == CharFormat && objectType() == TableCellObject; }
  285. QTextBlockFormat toBlockFormat() const;
  286. QTextCharFormat toCharFormat() const;
  287. QTextListFormat toListFormat() const;
  288. QTextTableFormat toTableFormat() const;
  289. QTextFrameFormat toFrameFormat() const;
  290. QTextImageFormat toImageFormat() const;
  291. QTextTableCellFormat toTableCellFormat() const;
  292. bool operator==(const QTextFormat &rhs) const;
  293. inline bool operator!=(const QTextFormat &rhs) const { return !operator==(rhs); }
  294. operator QVariant() const;
  295. inline void setLayoutDirection(Qt::LayoutDirection direction)
  296. { setProperty(QTextFormat::LayoutDirection, direction); }
  297. inline Qt::LayoutDirection layoutDirection() const
  298. { return Qt::LayoutDirection(intProperty(QTextFormat::LayoutDirection)); }
  299. inline void setBackground(const QBrush &brush)
  300. { setProperty(BackgroundBrush, brush); }
  301. inline QBrush background() const
  302. { return brushProperty(BackgroundBrush); }
  303. inline void clearBackground()
  304. { clearProperty(BackgroundBrush); }
  305. inline void setForeground(const QBrush &brush)
  306. { setProperty(ForegroundBrush, brush); }
  307. inline QBrush foreground() const
  308. { return brushProperty(ForegroundBrush); }
  309. inline void clearForeground()
  310. { clearProperty(ForegroundBrush); }
  311. private:
  312. QSharedDataPointer<QTextFormatPrivate> d;
  313. qint32 format_type;
  314. friend class QTextFormatCollection;
  315. friend class QTextCharFormat;
  316. friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QTextFormat &);
  317. friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QTextFormat &);
  318. };
  319. Q_DECLARE_SHARED(QTextFormat)
  320. inline void QTextFormat::setObjectType(int atype)
  321. { setProperty(ObjectType, atype); }
  322. Q_DECLARE_OPERATORS_FOR_FLAGS(QTextFormat::PageBreakFlags)
  323. class Q_GUI_EXPORT QTextCharFormat : public QTextFormat
  324. {
  325. public:
  326. enum VerticalAlignment {
  327. AlignNormal = 0,
  328. AlignSuperScript,
  329. AlignSubScript,
  330. AlignMiddle,
  331. AlignTop,
  332. AlignBottom,
  333. AlignBaseline
  334. };
  335. enum UnderlineStyle { // keep in sync with Qt::PenStyle!
  336. NoUnderline,
  337. SingleUnderline,
  338. DashUnderline,
  339. DotLine,
  340. DashDotLine,
  341. DashDotDotLine,
  342. WaveUnderline,
  343. SpellCheckUnderline
  344. };
  345. QTextCharFormat();
  346. bool isValid() const { return isCharFormat(); }
  347. enum FontPropertiesInheritanceBehavior {
  348. FontPropertiesSpecifiedOnly,
  349. FontPropertiesAll
  350. };
  351. void setFont(const QFont &font, FontPropertiesInheritanceBehavior behavior);
  352. void setFont(const QFont &font); // ### Qt6: Merge with above
  353. QFont font() const;
  354. inline void setFontFamily(const QString &family)
  355. { setProperty(FontFamily, family); }
  356. inline QString fontFamily() const
  357. { return stringProperty(FontFamily); }
  358. inline void setFontPointSize(qreal size)
  359. { setProperty(FontPointSize, size); }
  360. inline qreal fontPointSize() const
  361. { return doubleProperty(FontPointSize); }
  362. inline void setFontWeight(int weight)
  363. { setProperty(FontWeight, weight); }
  364. inline int fontWeight() const
  365. { return hasProperty(FontWeight) ? intProperty(FontWeight) : QFont::Normal; }
  366. inline void setFontItalic(bool italic)
  367. { setProperty(FontItalic, italic); }
  368. inline bool fontItalic() const
  369. { return boolProperty(FontItalic); }
  370. inline void setFontCapitalization(QFont::Capitalization capitalization)
  371. { setProperty(FontCapitalization, capitalization); }
  372. inline QFont::Capitalization fontCapitalization() const
  373. { return static_cast<QFont::Capitalization>(intProperty(FontCapitalization)); }
  374. inline void setFontLetterSpacingType(QFont::SpacingType letterSpacingType)
  375. { setProperty(FontLetterSpacingType, letterSpacingType); }
  376. inline QFont::SpacingType fontLetterSpacingType() const
  377. { return static_cast<QFont::SpacingType>(intProperty(FontLetterSpacingType)); }
  378. inline void setFontLetterSpacing(qreal spacing)
  379. { setProperty(FontLetterSpacing, spacing); }
  380. inline qreal fontLetterSpacing() const
  381. { return doubleProperty(FontLetterSpacing); }
  382. inline void setFontWordSpacing(qreal spacing)
  383. { setProperty(FontWordSpacing, spacing); }
  384. inline qreal fontWordSpacing() const
  385. { return doubleProperty(FontWordSpacing); }
  386. inline void setFontUnderline(bool underline)
  387. { setProperty(TextUnderlineStyle, underline ? SingleUnderline : NoUnderline); }
  388. bool fontUnderline() const;
  389. inline void setFontOverline(bool overline)
  390. { setProperty(FontOverline, overline); }
  391. inline bool fontOverline() const
  392. { return boolProperty(FontOverline); }
  393. inline void setFontStrikeOut(bool strikeOut)
  394. { setProperty(FontStrikeOut, strikeOut); }
  395. inline bool fontStrikeOut() const
  396. { return boolProperty(FontStrikeOut); }
  397. inline void setUnderlineColor(const QColor &color)
  398. { setProperty(TextUnderlineColor, color); }
  399. inline QColor underlineColor() const
  400. { return colorProperty(TextUnderlineColor); }
  401. inline void setFontFixedPitch(bool fixedPitch)
  402. { setProperty(FontFixedPitch, fixedPitch); }
  403. inline bool fontFixedPitch() const
  404. { return boolProperty(FontFixedPitch); }
  405. inline void setFontStretch(int factor)
  406. { setProperty(FontStretch, factor); }
  407. inline int fontStretch() const
  408. { return intProperty(FontStretch); }
  409. inline void setFontStyleHint(QFont::StyleHint hint, QFont::StyleStrategy strategy = QFont::PreferDefault)
  410. { setProperty(FontStyleHint, hint); setProperty(FontStyleStrategy, strategy); }
  411. inline void setFontStyleStrategy(QFont::StyleStrategy strategy)
  412. { setProperty(FontStyleStrategy, strategy); }
  413. QFont::StyleHint fontStyleHint() const
  414. { return static_cast<QFont::StyleHint>(intProperty(FontStyleHint)); }
  415. QFont::StyleStrategy fontStyleStrategy() const
  416. { return static_cast<QFont::StyleStrategy>(intProperty(FontStyleStrategy)); }
  417. inline void setFontHintingPreference(QFont::HintingPreference hintingPreference)
  418. {
  419. setProperty(FontHintingPreference, hintingPreference);
  420. }
  421. inline QFont::HintingPreference fontHintingPreference() const
  422. {
  423. return static_cast<QFont::HintingPreference>(intProperty(FontHintingPreference));
  424. }
  425. inline void setFontKerning(bool enable)
  426. { setProperty(FontKerning, enable); }
  427. inline bool fontKerning() const
  428. { return boolProperty(FontKerning); }
  429. void setUnderlineStyle(UnderlineStyle style);
  430. inline UnderlineStyle underlineStyle() const
  431. { return static_cast<UnderlineStyle>(intProperty(TextUnderlineStyle)); }
  432. inline void setVerticalAlignment(VerticalAlignment alignment)
  433. { setProperty(TextVerticalAlignment, alignment); }
  434. inline VerticalAlignment verticalAlignment() const
  435. { return static_cast<VerticalAlignment>(intProperty(TextVerticalAlignment)); }
  436. inline void setTextOutline(const QPen &pen)
  437. { setProperty(TextOutline, pen); }
  438. inline QPen textOutline() const
  439. { return penProperty(TextOutline); }
  440. inline void setToolTip(const QString &tip)
  441. { setProperty(TextToolTip, tip); }
  442. inline QString toolTip() const
  443. { return stringProperty(TextToolTip); }
  444. inline void setAnchor(bool anchor)
  445. { setProperty(IsAnchor, anchor); }
  446. inline bool isAnchor() const
  447. { return boolProperty(IsAnchor); }
  448. inline void setAnchorHref(const QString &value)
  449. { setProperty(AnchorHref, value); }
  450. inline QString anchorHref() const
  451. { return stringProperty(AnchorHref); }
  452. inline void setAnchorName(const QString &name)
  453. { setAnchorNames(QStringList(name)); }
  454. QString anchorName() const;
  455. inline void setAnchorNames(const QStringList &names)
  456. { setProperty(AnchorName, names); }
  457. QStringList anchorNames() const;
  458. inline void setTableCellRowSpan(int tableCellRowSpan);
  459. inline int tableCellRowSpan() const
  460. { int s = intProperty(TableCellRowSpan); if (s == 0) s = 1; return s; }
  461. inline void setTableCellColumnSpan(int tableCellColumnSpan);
  462. inline int tableCellColumnSpan() const
  463. { int s = intProperty(TableCellColumnSpan); if (s == 0) s = 1; return s; }
  464. protected:
  465. explicit QTextCharFormat(const QTextFormat &fmt);
  466. friend class QTextFormat;
  467. };
  468. Q_DECLARE_SHARED(QTextCharFormat)
  469. inline void QTextCharFormat::setTableCellRowSpan(int _tableCellRowSpan)
  470. {
  471. if (_tableCellRowSpan <= 1)
  472. clearProperty(TableCellRowSpan); // the getter will return 1 here.
  473. else
  474. setProperty(TableCellRowSpan, _tableCellRowSpan);
  475. }
  476. inline void QTextCharFormat::setTableCellColumnSpan(int _tableCellColumnSpan)
  477. {
  478. if (_tableCellColumnSpan <= 1)
  479. clearProperty(TableCellColumnSpan); // the getter will return 1 here.
  480. else
  481. setProperty(TableCellColumnSpan, _tableCellColumnSpan);
  482. }
  483. class Q_GUI_EXPORT QTextBlockFormat : public QTextFormat
  484. {
  485. public:
  486. enum LineHeightTypes {
  487. SingleHeight = 0,
  488. ProportionalHeight = 1,
  489. FixedHeight = 2,
  490. MinimumHeight = 3,
  491. LineDistanceHeight = 4
  492. };
  493. QTextBlockFormat();
  494. bool isValid() const { return isBlockFormat(); }
  495. inline void setAlignment(Qt::Alignment alignment);
  496. inline Qt::Alignment alignment() const
  497. { int a = intProperty(BlockAlignment); if (a == 0) a = Qt::AlignLeft; return QFlag(a); }
  498. inline void setTopMargin(qreal margin)
  499. { setProperty(BlockTopMargin, margin); }
  500. inline qreal topMargin() const
  501. { return doubleProperty(BlockTopMargin); }
  502. inline void setBottomMargin(qreal margin)
  503. { setProperty(BlockBottomMargin, margin); }
  504. inline qreal bottomMargin() const
  505. { return doubleProperty(BlockBottomMargin); }
  506. inline void setLeftMargin(qreal margin)
  507. { setProperty(BlockLeftMargin, margin); }
  508. inline qreal leftMargin() const
  509. { return doubleProperty(BlockLeftMargin); }
  510. inline void setRightMargin(qreal margin)
  511. { setProperty(BlockRightMargin, margin); }
  512. inline qreal rightMargin() const
  513. { return doubleProperty(BlockRightMargin); }
  514. inline void setTextIndent(qreal aindent)
  515. { setProperty(TextIndent, aindent); }
  516. inline qreal textIndent() const
  517. { return doubleProperty(TextIndent); }
  518. inline void setIndent(int indent);
  519. inline int indent() const
  520. { return intProperty(BlockIndent); }
  521. inline void setLineHeight(qreal height, int heightType)
  522. { setProperty(LineHeight, height); setProperty(LineHeightType, heightType); }
  523. inline qreal lineHeight(qreal scriptLineHeight, qreal scaling) const;
  524. inline qreal lineHeight() const
  525. { return doubleProperty(LineHeight); }
  526. inline int lineHeightType() const
  527. { return intProperty(LineHeightType); }
  528. inline void setNonBreakableLines(bool b)
  529. { setProperty(BlockNonBreakableLines, b); }
  530. inline bool nonBreakableLines() const
  531. { return boolProperty(BlockNonBreakableLines); }
  532. inline void setPageBreakPolicy(PageBreakFlags flags)
  533. { setProperty(PageBreakPolicy, int(flags)); }
  534. inline PageBreakFlags pageBreakPolicy() const
  535. { return PageBreakFlags(intProperty(PageBreakPolicy)); }
  536. void setTabPositions(const QList<QTextOption::Tab> &tabs);
  537. QList<QTextOption::Tab> tabPositions() const;
  538. protected:
  539. explicit QTextBlockFormat(const QTextFormat &fmt);
  540. friend class QTextFormat;
  541. };
  542. Q_DECLARE_SHARED(QTextBlockFormat)
  543. inline void QTextBlockFormat::setAlignment(Qt::Alignment aalignment)
  544. { setProperty(BlockAlignment, int(aalignment)); }
  545. inline void QTextBlockFormat::setIndent(int aindent)
  546. { setProperty(BlockIndent, aindent); }
  547. inline qreal QTextBlockFormat::lineHeight(qreal scriptLineHeight, qreal scaling = 1.0) const
  548. {
  549. switch(intProperty(LineHeightType)) {
  550. case SingleHeight:
  551. return(scriptLineHeight);
  552. case ProportionalHeight:
  553. return(scriptLineHeight * doubleProperty(LineHeight) / 100.0);
  554. case FixedHeight:
  555. return(doubleProperty(LineHeight) * scaling);
  556. case MinimumHeight:
  557. return(qMax(scriptLineHeight, doubleProperty(LineHeight) * scaling));
  558. case LineDistanceHeight:
  559. return(scriptLineHeight + doubleProperty(LineHeight) * scaling);
  560. }
  561. return(0);
  562. }
  563. class Q_GUI_EXPORT QTextListFormat : public QTextFormat
  564. {
  565. public:
  566. QTextListFormat();
  567. bool isValid() const { return isListFormat(); }
  568. enum Style {
  569. ListDisc = -1,
  570. ListCircle = -2,
  571. ListSquare = -3,
  572. ListDecimal = -4,
  573. ListLowerAlpha = -5,
  574. ListUpperAlpha = -6,
  575. ListLowerRoman = -7,
  576. ListUpperRoman = -8,
  577. ListStyleUndefined = 0
  578. };
  579. inline void setStyle(Style style);
  580. inline Style style() const
  581. { return static_cast<Style>(intProperty(ListStyle)); }
  582. inline void setIndent(int indent);
  583. inline int indent() const
  584. { return intProperty(ListIndent); }
  585. inline void setNumberPrefix(const QString &numberPrefix);
  586. inline QString numberPrefix() const
  587. { return stringProperty(ListNumberPrefix); }
  588. inline void setNumberSuffix(const QString &numberSuffix);
  589. inline QString numberSuffix() const
  590. { return stringProperty(ListNumberSuffix); }
  591. protected:
  592. explicit QTextListFormat(const QTextFormat &fmt);
  593. friend class QTextFormat;
  594. };
  595. Q_DECLARE_SHARED(QTextListFormat)
  596. inline void QTextListFormat::setStyle(Style astyle)
  597. { setProperty(ListStyle, astyle); }
  598. inline void QTextListFormat::setIndent(int aindent)
  599. { setProperty(ListIndent, aindent); }
  600. inline void QTextListFormat::setNumberPrefix(const QString &np)
  601. { setProperty(ListNumberPrefix, np); }
  602. inline void QTextListFormat::setNumberSuffix(const QString &ns)
  603. { setProperty(ListNumberSuffix, ns); }
  604. class Q_GUI_EXPORT QTextImageFormat : public QTextCharFormat
  605. {
  606. public:
  607. QTextImageFormat();
  608. bool isValid() const { return isImageFormat(); }
  609. inline void setName(const QString &name);
  610. inline QString name() const
  611. { return stringProperty(ImageName); }
  612. inline void setWidth(qreal width);
  613. inline qreal width() const
  614. { return doubleProperty(ImageWidth); }
  615. inline void setHeight(qreal height);
  616. inline qreal height() const
  617. { return doubleProperty(ImageHeight); }
  618. protected:
  619. explicit QTextImageFormat(const QTextFormat &format);
  620. friend class QTextFormat;
  621. };
  622. Q_DECLARE_SHARED(QTextImageFormat)
  623. inline void QTextImageFormat::setName(const QString &aname)
  624. { setProperty(ImageName, aname); }
  625. inline void QTextImageFormat::setWidth(qreal awidth)
  626. { setProperty(ImageWidth, awidth); }
  627. inline void QTextImageFormat::setHeight(qreal aheight)
  628. { setProperty(ImageHeight, aheight); }
  629. class Q_GUI_EXPORT QTextFrameFormat : public QTextFormat
  630. {
  631. public:
  632. QTextFrameFormat();
  633. bool isValid() const { return isFrameFormat(); }
  634. enum Position {
  635. InFlow,
  636. FloatLeft,
  637. FloatRight
  638. // ######
  639. // Absolute
  640. };
  641. enum BorderStyle {
  642. BorderStyle_None,
  643. BorderStyle_Dotted,
  644. BorderStyle_Dashed,
  645. BorderStyle_Solid,
  646. BorderStyle_Double,
  647. BorderStyle_DotDash,
  648. BorderStyle_DotDotDash,
  649. BorderStyle_Groove,
  650. BorderStyle_Ridge,
  651. BorderStyle_Inset,
  652. BorderStyle_Outset
  653. };
  654. inline void setPosition(Position f)
  655. { setProperty(CssFloat, f); }
  656. inline Position position() const
  657. { return static_cast<Position>(intProperty(CssFloat)); }
  658. inline void setBorder(qreal border);
  659. inline qreal border() const
  660. { return doubleProperty(FrameBorder); }
  661. inline void setBorderBrush(const QBrush &brush)
  662. { setProperty(FrameBorderBrush, brush); }
  663. inline QBrush borderBrush() const
  664. { return brushProperty(FrameBorderBrush); }
  665. inline void setBorderStyle(BorderStyle style)
  666. { setProperty(FrameBorderStyle, style); }
  667. inline BorderStyle borderStyle() const
  668. { return static_cast<BorderStyle>(intProperty(FrameBorderStyle)); }
  669. void setMargin(qreal margin);
  670. inline qreal margin() const
  671. { return doubleProperty(FrameMargin); }
  672. inline void setTopMargin(qreal margin);
  673. qreal topMargin() const;
  674. inline void setBottomMargin(qreal margin);
  675. qreal bottomMargin() const;
  676. inline void setLeftMargin(qreal margin);
  677. qreal leftMargin() const;
  678. inline void setRightMargin(qreal margin);
  679. qreal rightMargin() const;
  680. inline void setPadding(qreal padding);
  681. inline qreal padding() const
  682. { return doubleProperty(FramePadding); }
  683. inline void setWidth(qreal width);
  684. inline void setWidth(const QTextLength &length)
  685. { setProperty(FrameWidth, length); }
  686. inline QTextLength width() const
  687. { return lengthProperty(FrameWidth); }
  688. inline void setHeight(qreal height);
  689. inline void setHeight(const QTextLength &height);
  690. inline QTextLength height() const
  691. { return lengthProperty(FrameHeight); }
  692. inline void setPageBreakPolicy(PageBreakFlags flags)
  693. { setProperty(PageBreakPolicy, int(flags)); }
  694. inline PageBreakFlags pageBreakPolicy() const
  695. { return PageBreakFlags(intProperty(PageBreakPolicy)); }
  696. protected:
  697. explicit QTextFrameFormat(const QTextFormat &fmt);
  698. friend class QTextFormat;
  699. };
  700. Q_DECLARE_SHARED(QTextFrameFormat)
  701. inline void QTextFrameFormat::setBorder(qreal aborder)
  702. { setProperty(FrameBorder, aborder); }
  703. inline void QTextFrameFormat::setPadding(qreal apadding)
  704. { setProperty(FramePadding, apadding); }
  705. inline void QTextFrameFormat::setWidth(qreal awidth)
  706. { setProperty(FrameWidth, QTextLength(QTextLength::FixedLength, awidth)); }
  707. inline void QTextFrameFormat::setHeight(qreal aheight)
  708. { setProperty(FrameHeight, QTextLength(QTextLength::FixedLength, aheight)); }
  709. inline void QTextFrameFormat::setHeight(const QTextLength &aheight)
  710. { setProperty(FrameHeight, aheight); }
  711. inline void QTextFrameFormat::setTopMargin(qreal amargin)
  712. { setProperty(FrameTopMargin, amargin); }
  713. inline void QTextFrameFormat::setBottomMargin(qreal amargin)
  714. { setProperty(FrameBottomMargin, amargin); }
  715. inline void QTextFrameFormat::setLeftMargin(qreal amargin)
  716. { setProperty(FrameLeftMargin, amargin); }
  717. inline void QTextFrameFormat::setRightMargin(qreal amargin)
  718. { setProperty(FrameRightMargin, amargin); }
  719. class Q_GUI_EXPORT QTextTableFormat : public QTextFrameFormat
  720. {
  721. public:
  722. QTextTableFormat();
  723. inline bool isValid() const { return isTableFormat(); }
  724. inline int columns() const
  725. { int cols = intProperty(TableColumns); if (cols == 0) cols = 1; return cols; }
  726. inline void setColumns(int columns);
  727. inline void setColumnWidthConstraints(const QVector<QTextLength> &constraints)
  728. { setProperty(TableColumnWidthConstraints, constraints); }
  729. inline QVector<QTextLength> columnWidthConstraints() const
  730. { return lengthVectorProperty(TableColumnWidthConstraints); }
  731. inline void clearColumnWidthConstraints()
  732. { clearProperty(TableColumnWidthConstraints); }
  733. inline qreal cellSpacing() const
  734. { return doubleProperty(TableCellSpacing); }
  735. inline void setCellSpacing(qreal spacing)
  736. { setProperty(TableCellSpacing, spacing); }
  737. inline qreal cellPadding() const
  738. { return doubleProperty(TableCellPadding); }
  739. inline void setCellPadding(qreal padding);
  740. inline void setAlignment(Qt::Alignment alignment);
  741. inline Qt::Alignment alignment() const
  742. { return QFlag(intProperty(BlockAlignment)); }
  743. inline void setHeaderRowCount(int count)
  744. { setProperty(TableHeaderRowCount, count); }
  745. inline int headerRowCount() const
  746. { return intProperty(TableHeaderRowCount); }
  747. protected:
  748. explicit QTextTableFormat(const QTextFormat &fmt);
  749. friend class QTextFormat;
  750. };
  751. Q_DECLARE_SHARED(QTextTableFormat)
  752. inline void QTextTableFormat::setColumns(int acolumns)
  753. {
  754. if (acolumns == 1)
  755. acolumns = 0;
  756. setProperty(TableColumns, acolumns);
  757. }
  758. inline void QTextTableFormat::setCellPadding(qreal apadding)
  759. { setProperty(TableCellPadding, apadding); }
  760. inline void QTextTableFormat::setAlignment(Qt::Alignment aalignment)
  761. { setProperty(BlockAlignment, int(aalignment)); }
  762. class Q_GUI_EXPORT QTextTableCellFormat : public QTextCharFormat
  763. {
  764. public:
  765. QTextTableCellFormat();
  766. inline bool isValid() const { return isTableCellFormat(); }
  767. inline void setTopPadding(qreal padding);
  768. inline qreal topPadding() const;
  769. inline void setBottomPadding(qreal padding);
  770. inline qreal bottomPadding() const;
  771. inline void setLeftPadding(qreal padding);
  772. inline qreal leftPadding() const;
  773. inline void setRightPadding(qreal padding);
  774. inline qreal rightPadding() const;
  775. inline void setPadding(qreal padding);
  776. protected:
  777. explicit QTextTableCellFormat(const QTextFormat &fmt);
  778. friend class QTextFormat;
  779. };
  780. Q_DECLARE_SHARED(QTextTableCellFormat)
  781. inline void QTextTableCellFormat::setTopPadding(qreal padding)
  782. {
  783. setProperty(TableCellTopPadding, padding);
  784. }
  785. inline qreal QTextTableCellFormat::topPadding() const
  786. {
  787. return doubleProperty(TableCellTopPadding);
  788. }
  789. inline void QTextTableCellFormat::setBottomPadding(qreal padding)
  790. {
  791. setProperty(TableCellBottomPadding, padding);
  792. }
  793. inline qreal QTextTableCellFormat::bottomPadding() const
  794. {
  795. return doubleProperty(TableCellBottomPadding);
  796. }
  797. inline void QTextTableCellFormat::setLeftPadding(qreal padding)
  798. {
  799. setProperty(TableCellLeftPadding, padding);
  800. }
  801. inline qreal QTextTableCellFormat::leftPadding() const
  802. {
  803. return doubleProperty(TableCellLeftPadding);
  804. }
  805. inline void QTextTableCellFormat::setRightPadding(qreal padding)
  806. {
  807. setProperty(TableCellRightPadding, padding);
  808. }
  809. inline qreal QTextTableCellFormat::rightPadding() const
  810. {
  811. return doubleProperty(TableCellRightPadding);
  812. }
  813. inline void QTextTableCellFormat::setPadding(qreal padding)
  814. {
  815. setTopPadding(padding);
  816. setBottomPadding(padding);
  817. setLeftPadding(padding);
  818. setRightPadding(padding);
  819. }
  820. QT_END_NAMESPACE
  821. #endif // QTEXTFORMAT_H