qtextoption.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:4k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QTEXTOPTION_H
  38. #define QTEXTOPTION_H
  39. #include <QtCore/qnamespace.h>
  40. #include <QtCore/qchar.h>
  41. #include <QtCore/qmetatype.h>
  42. QT_BEGIN_HEADER
  43. QT_BEGIN_NAMESPACE
  44. QT_MODULE(Gui)
  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 bool operator==(const Tab &other) const {
  59.             return type == other.type
  60.                    && qFuzzyCompare(position, other.position)
  61.                    && delimiter == other.delimiter;
  62.         }
  63.         inline bool operator!=(const Tab &other) const {
  64.             return !operator==(other);
  65.         }
  66.         qreal position;
  67.         TabType type;
  68.         QChar delimiter;
  69.     };
  70.     QTextOption();
  71.     QTextOption(Qt::Alignment alignment);
  72.     ~QTextOption();
  73.     QTextOption(const QTextOption &o);
  74.     QTextOption &operator=(const QTextOption &o);
  75.     inline void setAlignment(Qt::Alignment alignment);
  76.     inline Qt::Alignment alignment() const { return Qt::Alignment(align); }
  77.     inline void setTextDirection(Qt::LayoutDirection aDirection) { this->direction = aDirection; }
  78.     inline Qt::LayoutDirection textDirection() const { return Qt::LayoutDirection(direction); }
  79.     enum WrapMode {
  80.         NoWrap,
  81.         WordWrap,
  82.         ManualWrap,
  83.         WrapAnywhere,
  84.         WrapAtWordBoundaryOrAnywhere
  85.     };
  86.     inline void setWrapMode(WrapMode wrap) { wordWrap = wrap; }
  87.     inline WrapMode wrapMode() const { return static_cast<WrapMode>(wordWrap); }
  88.     enum Flag {
  89.         IncludeTrailingSpaces = 0x80000000
  90.     };
  91.     Q_DECLARE_FLAGS(Flags, Flag)
  92.     inline void setFlags(Flags flags);
  93.     inline Flags flags() const { return Flags(f); }
  94.     inline void setTabStop(qreal tabStop);
  95.     inline qreal tabStop() const { return tab; }
  96.     void setTabArray(QList<qreal> tabStops);
  97.     QList<qreal> tabArray() const;
  98.     void setTabs(QList<Tab> tabStops);
  99.     QList<Tab> tabs() const;
  100.     void setUseDesignMetrics(bool b) { design = b; }
  101.     bool useDesignMetrics() const { return design; }
  102. private:
  103.     uint align : 8;
  104.     uint wordWrap : 4;
  105.     uint design : 1;
  106.     uint direction : 1;
  107.     uint unused : 19;
  108.     uint f;
  109.     qreal tab;
  110.     QTextOptionPrivate *d;
  111. };
  112. Q_DECLARE_OPERATORS_FOR_FLAGS(QTextOption::Flags)
  113. inline void QTextOption::setAlignment(Qt::Alignment aalignment)
  114. { align = aalignment; }
  115. inline void QTextOption::setFlags(Flags aflags)
  116. { f = aflags; }
  117. inline void QTextOption::setTabStop(qreal atabStop)
  118. { tab = atabStop; }
  119. QT_END_NAMESPACE
  120. Q_DECLARE_METATYPE( QTextOption::Tab )
  121. QT_END_HEADER
  122. #endif // QTEXTOPTION_H