#include <QtGui/qtextformat.h>
#ifndef QTEXTFORMAT_H
class QTextListFormat: public QTextFormat{
public: enum Style{
ListDisc = -1,
ListCircle = -2,
ListSquare = -3,
ListDecimal = -4,
ListLowerAlpha = -5,
ListUpperAlpha = -6,
ListStyleUndefined = 0,
};
};
#endif // QTEXTFORMAT_H