Lines Matching refs:staticText_d

5768     QStaticTextPrivate *staticText_d =  in drawStaticText()  local
5771 if (font() != staticText_d->font) { in drawStaticText()
5772 staticText_d->font = font(); in drawStaticText()
5773 staticText_d->needsRelayout = true; in drawStaticText()
5776 QFontEngine *fe = staticText_d->font.d->engineForScript(QChar::Script_Common); in drawStaticText()
5786 staticText_d->paintText(topLeftPosition, this, pen().color()); in drawStaticText()
5791 if (staticText_d->untransformedCoordinates && engineRequiresPretransform) { in drawStaticText()
5794 staticText_d->untransformedCoordinates = false; in drawStaticText()
5795 staticText_d->needsRelayout = true; in drawStaticText()
5796 } else if (!staticText_d->untransformedCoordinates && !engineRequiresPretransform) { in drawStaticText()
5799 staticText_d->untransformedCoordinates = true; in drawStaticText()
5800 staticText_d->needsRelayout = true; in drawStaticText()
5806 if (!staticText_d->untransformedCoordinates) in drawStaticText()
5812 if (d->state->matrix.isTranslating() && !staticText_d->untransformedCoordinates) { in drawStaticText()
5829 bool staticTextNeedsReinit = staticText_d->needsRelayout; in drawStaticText()
5830 if (!staticText_d->untransformedCoordinates && staticText_d->matrix != d->state->matrix) { in drawStaticText()
5831 staticText_d->matrix = d->state->matrix; in drawStaticText()
5837 staticText_d->init(); in drawStaticText()
5839 if (transformedPosition != staticText_d->position) { // Translate to actual position in drawStaticText()
5842 QFixed oldX = QFixed::fromReal(staticText_d->position.x()); in drawStaticText()
5843 QFixed oldY = QFixed::fromReal(staticText_d->position.y()); in drawStaticText()
5844 for (int item=0; item<staticText_d->itemCount;++item) { in drawStaticText()
5845 QStaticTextItem *textItem = staticText_d->items + item; in drawStaticText()
5853 staticText_d->position = transformedPosition; in drawStaticText()
5859 for (int i=0; i<staticText_d->itemCount; ++i) { in drawStaticText()
5860 QStaticTextItem *item = staticText_d->items + i; in drawStaticText()
5872 item->numGlyphs, item->fontEngine(), staticText_d->font, in drawStaticText()
5878 if (!staticText_d->untransformedCoordinates && oldMatrix.isTranslating()) in drawStaticText()