#include <QtGui/qtextformat.h>
#ifndef QTEXTFORMAT_H
class QTextFormat{
   /* Some contents are skipped to improve readability */
   public: enum Property{
      ObjectIndex = 0,
      CssFloat = 2048,
      LayoutDirection = 2049,
      OutlinePen = 2064,
      BackgroundBrush = 2080,
      ForegroundBrush = 2081,
      BlockAlignment = 4112,
      BlockTopMargin = 4144,
      BlockBottomMargin = 4145,
      BlockLeftMargin = 4146,
      BlockRightMargin = 4147,
      TextIndent = 4148,
      BlockIndent = 4160,
      BlockNonBreakableLines = 4176,
      BlockTrailingHorizontalRulerWidth = 4192,
      FontFamily = 8192,
      FontPointSize = 8193,
      FontSizeAdjustment = 8194,
      FontSizeIncrement = 8194,
      FontWeight = 8195,
      FontItalic = 8196,
      FontUnderline = 8197,
      FontOverline = 8198,
      FontStrikeOut = 8199,
      FontFixedPitch = 8200,
      FontPixelSize = 8201,
      TextUnderlineColor = 8208,
      TextVerticalAlignment = 8225,
      TextOutline = 8226,
      TextUnderlineStyle = 8227,
      IsAnchor = 8240,
      AnchorHref = 8241,
      AnchorName = 8242,
      ObjectType = 12032,
      ListStyle = 12288,
      ListIndent = 12289,
      FrameBorder = 16384,
      FrameMargin = 16385,
      FramePadding = 16386,
      FrameWidth = 16387,
      FrameHeight = 16388,
      TableColumns = 16640,
      TableColumnWidthConstraints = 16641,
      TableCellSpacing = 16642,
      TableCellPadding = 16643,
      TableHeaderRowCount = 16644,
      TableCellRowSpan = 18448,
      TableCellColumnSpan = 18449,
      ImageName = 20480,
      ImageWidth = 20496,
      ImageHeight = 20497,
      FullWidthSelection = 24576,
      PageBreakPolicy = 28672,
      UserProperty = 1048576,
   };
   /* ... */
};
#endif // QTEXTFORMAT_H