Lines Matching defs:QTextHtmlParserNode

155 struct QTextHtmlParserNode {  struct
165 QTextHtmlParserNode(); argument
166 QString tag;
167 QString text;
168 QStringList attributes;
169 int parent;
170 QVector<int> children;
171 QTextHTMLElements id;
172 QTextCharFormat charFormat;
173 QTextBlockFormat blockFormat;
174 uint cssFloat : 2;
175 uint hasOwnListStyle : 1;
176 uint hasOwnLineHeightType : 1;
177 uint hasLineHeightMultiplier : 1;
178 uint hasCssListIndent : 1;
179 uint isEmptyParagraph : 1;
180 uint isTextFrame : 1;
181 uint isRootFrame : 1;
182 uint displayMode : 3; // QTextHtmlElement::DisplayMode
183 uint hasHref : 1;
184 QTextListFormat::Style listStyle;
185 QString textListNumberPrefix;
186 QString textListNumberSuffix;
187 QString imageName;
188 QString imageAlt;
189 qreal imageWidth;
190 qreal imageHeight;
191 QTextLength width;
192 QTextLength height;
193 qreal tableBorder;
194 int tableCellRowSpan;
195 int tableCellColSpan;
196 qreal tableCellSpacing;
197 qreal tableCellPadding;
198 qreal tableCellBorder[4];
199 QBrush tableCellBorderBrush[4];
200 QTextFrameFormat::BorderStyle tableCellBorderStyle[4];
201 QBrush borderBrush;
202 QTextFrameFormat::BorderStyle borderStyle;
203 bool borderCollapse;
204 int userState;
206 int cssListIndent;
208 WhiteSpaceMode wsm;
210 inline bool isListStart() const in isListStart()
212 inline bool isTableCell() const in isTableCell()
214 inline bool isBlock() const in isBlock()
217 inline bool isNotSelfNesting() const in isNotSelfNesting()
220 inline bool allowedInContext(int parentId) const in allowedInContext()
245 void initializeProperties(const QTextHtmlParserNode *parent, const QTextHtmlParser *parser); argument
269 Q_DECLARE_TYPEINFO(QTextHtmlParserNode, Q_MOVABLE_TYPE); argument