qtextoption.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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 QTEXTOPTION_H
  40. #define QTEXTOPTION_H
  41. #include <QtCore/qnamespace.h>
  42. #include <QtCore/qchar.h>
  43. #include <QtCore/qmetatype.h>
  44. QT_BEGIN_NAMESPACE
  45. template <typename T> class QList;
  46. struct QTextOptionPrivate;
  47. class Q_GUI_EXPORT QTextOption
  48. {
  49. public:
  50. enum TabType {
  51. LeftTab,
  52. RightTab,
  53. CenterTab,
  54. DelimiterTab
  55. };
  56. struct Q_GUI_EXPORT Tab {
  57. inline Tab() : position(80), type(QTextOption::LeftTab) { }
  58. inline Tab(qreal pos, TabType tabType, QChar delim = QChar())
  59. : position(pos), type(tabType), delimiter(delim) {}
  60. inline bool operator==(const Tab &other) const {
  61. return type == other.type
  62. && qFuzzyCompare(position, other.position)
  63. && delimiter == other.delimiter;
  64. }
  65. inline bool operator!=(const Tab &other) const {
  66. return !operator==(other);
  67. }
  68. qreal position;
  69. TabType type;
  70. QChar delimiter;
  71. };
  72. QTextOption();
  73. /*implicit*/ QTextOption(Qt::Alignment alignment);
  74. ~QTextOption();
  75. QTextOption(const QTextOption &o);
  76. QTextOption &operator=(const QTextOption &o);
  77. inline void setAlignment(Qt::Alignment alignment);
  78. inline Qt::Alignment alignment() const { return Qt::Alignment(align); }
  79. inline void setTextDirection(Qt::LayoutDirection aDirection) { this->direction = aDirection; }
  80. inline Qt::LayoutDirection textDirection() const { return Qt::LayoutDirection(direction); }
  81. enum WrapMode {
  82. NoWrap,
  83. WordWrap,
  84. ManualWrap,
  85. WrapAnywhere,
  86. WrapAtWordBoundaryOrAnywhere
  87. };
  88. inline void setWrapMode(WrapMode wrap) { wordWrap = wrap; }
  89. inline WrapMode wrapMode() const { return static_cast<WrapMode>(wordWrap); }
  90. enum Flag {
  91. ShowTabsAndSpaces = 0x1,
  92. ShowLineAndParagraphSeparators = 0x2,
  93. AddSpaceForLineAndParagraphSeparators = 0x4,
  94. SuppressColors = 0x8,
  95. ShowDocumentTerminator = 0x10,
  96. IncludeTrailingSpaces = 0x80000000
  97. };
  98. Q_DECLARE_FLAGS(Flags, Flag)
  99. inline void setFlags(Flags flags);
  100. inline Flags flags() const { return Flags(f); }
  101. inline void setTabStop(qreal tabStop);
  102. inline qreal tabStop() const { return tab; }
  103. void setTabArray(const QList<qreal> &tabStops);
  104. QList<qreal> tabArray() const;
  105. void setTabs(const QList<Tab> &tabStops);
  106. QList<Tab> tabs() const;
  107. void setUseDesignMetrics(bool b) { design = b; }
  108. bool useDesignMetrics() const { return design; }
  109. private:
  110. uint align : 8;
  111. uint wordWrap : 4;
  112. uint design : 1;
  113. uint direction : 2;
  114. uint unused : 17;
  115. uint unused2; // ### Qt 6: remove unnecessary, extra 32 bits
  116. uint f;
  117. qreal tab;
  118. QTextOptionPrivate *d;
  119. };
  120. Q_DECLARE_OPERATORS_FOR_FLAGS(QTextOption::Flags)
  121. inline void QTextOption::setAlignment(Qt::Alignment aalignment)
  122. { align = aalignment; }
  123. inline void QTextOption::setFlags(Flags aflags)
  124. { f = aflags; }
  125. inline void QTextOption::setTabStop(qreal atabStop)
  126. { tab = atabStop; }
  127. QT_END_NAMESPACE
  128. Q_DECLARE_METATYPE( QTextOption::Tab )
  129. #endif // QTEXTOPTION_H