Home | History | Annotate | Download | only in qt

Lines Matching full:pixmap

58     QPixmap pixmap;
60 pixmap = QWebSettings::webGraphic(QWebSettings::MissingImageGraphic);
62 pixmap = QWebSettings::webGraphic(QWebSettings::MissingPluginGraphic);
64 pixmap = QWebSettings::webGraphic(QWebSettings::DefaultFrameIconGraphic);
66 pixmap = QWebSettings::webGraphic(QWebSettings::TextAreaSizeGripCornerGraphic);
68 pixmap = QWebSettings::webGraphic(QWebSettings::DeleteButtonGraphic);
70 pixmap = QWebSettings::webGraphic(QWebSettings::InputSpeechButtonGraphic);
72 pixmap = QWebSettings::webGraphic(QWebSettings::SearchCancelButtonGraphic);
74 pixmap = QWebSettings::webGraphic(QWebSettings::SearchCancelButtonPressedGraphic);
76 return pixmap;
117 QPixmap pixmap = *framePixmap;
118 if (tr.x() || tr.y() || tr.width() != pixmap.width() || tr.height() != pixmap.height())
119 pixmap = pixmap.copy(tr);
123 ctxt->setCompositeOperation(!pixmap.hasAlpha() && op == CompositeSourceOver ? CompositeCopy : op);
128 // If this would draw more than one scaled tile, we scale the pixmap first and then use the result to draw.
134 QSizeF scaledSize(float(pixmap.width()) * transform.m11(), float(pixmap.height()) * transform.m22());
136 if (pixmap.hasAlpha())
142 painter.drawPixmap(QRect(0, 0, scaledPixmap.width(), scaledPixmap.height()), pixmap);
144 pixmap = scaledPixmap;
153 QBrush b(pixmap);
163 BitmapImage::BitmapImage(QPixmap* pixmap, ImageObserver* observer)
183 int width = pixmap->width();
184 int height = pixmap->height();
189 m_frames[0].m_frame = pixmap;
190 m_frames[0].m_hasAlpha = pixmap->hasAlpha();