Home
last modified time | relevance | path

Searched refs:pixmapRect (Results 1 – 25 of 244) sorted by relevance

12345678910

/dports/audio/mixxx/mixxx-2.3.0/src/waveform/
H A Dwaveformmarklabel.cpp21 QRectF pixmapRect; in prerender() local
22 pixmapRect = fontMetrics.boundingRect(text); in prerender()
25 pixmapRect.setWidth(padding + pixmapRect.width() + padding); in prerender()
28 pixmapRect.setWidth(padding + icon.width() + padding + pixmapRect.width() + padding); in prerender()
32 if (pixmapRect.width() > widgetWidth) { in prerender()
35 pixmapRect.setWidth(widgetWidth); in prerender()
41 m_areaRect = pixmapRect; in prerender()
43 bottomLeft.y() - pixmapRect.height()); in prerender()
51 static_cast<int>(pixmapRect.height() * scaleFactor)); in prerender()
59 painter.drawRoundedRect(QRectF(0, 0, pixmapRect.width(), pixmapRect.height()), 2.0, 2.0); in prerender()
[all …]
/dports/graphics/kphotoalbum/kphotoalbum-5.8.1/ThumbnailView/
H A DDelegate.cpp54 paintBoundingRect(painter, pixmapRect, index); in paintCellPixmap()
55 painter->drawPixmap(pixmapRect, pixmap); in paintCellPixmap()
56 paintVideoInfo(painter, pixmapRect, index); in paintCellPixmap()
58 paintStackedIndicator(painter, pixmapRect, index); in paintCellPixmap()
86 if (backgroundRect.width() > pixmapRect.width() / 2) { in paintVideoInfo()
131 QRect rect = pixmapRect; in paintBoundingRect()
191 leftX = pixmapRect.left() + pixmapRect.width() / 2; in paintStackedIndicator()
194 rightX = pixmapRect.right(); in paintStackedIndicator()
196 QPoint bottomLeftPoint(leftX, pixmapRect.bottom()); in paintStackedIndicator()
197 QPoint bottomRightPoint(rightX, pixmapRect.bottom()); in paintStackedIndicator()
[all …]
/dports/x11-toolkits/qwt6/qwt-6.1.6/src/
H A Dqwt_plot_textlabel.cpp213 QRect pixmapRect; in draw() local
214 pixmapRect.setLeft( qFloor( rect.left() ) - pw ); in draw()
215 pixmapRect.setTop( qFloor( rect.top() ) - pw ); in draw()
216 pixmapRect.setRight( qCeil( rect.right() ) + pw ); in draw()
217 pixmapRect.setBottom( qCeil( rect.bottom() ) + pw ); in draw()
223 const QSize scaledSize = pixmapRect.size() * pixelRatio; in draw()
225 const QSize scaledSize = pixmapRect.size(); in draw()
237 pixmapRect.width() - 2 * pw, pixmapRect.height() - 2 * pw ); in draw()
243 painter->drawPixmap( pixmapRect, d_data->pixmap ); in draw()
/dports/devel/xelfviewer/XELFViewer-0.03/XQwt/3rdparty/qwt/src/
H A Dqwt_plot_textlabel.cpp213 QRect pixmapRect; in draw() local
214 pixmapRect.setLeft( qFloor( rect.left() ) - pw ); in draw()
215 pixmapRect.setTop( qFloor( rect.top() ) - pw ); in draw()
216 pixmapRect.setRight( qCeil( rect.right() ) + pw ); in draw()
217 pixmapRect.setBottom( qCeil( rect.bottom() ) + pw ); in draw()
223 const QSize scaledSize = pixmapRect.size() * pixelRatio; in draw()
225 const QSize scaledSize = pixmapRect.size(); in draw()
237 pixmapRect.width() - 2 * pw, pixmapRect.height() - 2 * pw ); in draw()
243 painter->drawPixmap( pixmapRect, d_data->pixmap ); in draw()
/dports/converters/wkhtmltopdf/qt-5db36ec/demos/embedded/fluidlauncher/
H A Dslideshow.cpp173 QRect pixmapRect(qMax( (size().width() - slide.width())/2, 0), in paintEvent() local
178 if (pixmapRect.top() > 0) { in paintEvent()
180 painter.fillRect(0, 0, size().width(), pixmapRect.top(), Qt::black); in paintEvent()
181 painter.fillRect(0, pixmapRect.bottom(), size().width(), size().height(), Qt::black); in paintEvent()
184 if (pixmapRect.left() > 0) { in paintEvent()
186 painter.fillRect(0, 0, pixmapRect.left(), size().height(), Qt::black); in paintEvent()
187 painter.fillRect(pixmapRect.right(), 0, size().width(), size().height(), Qt::black); in paintEvent()
190 painter.drawPixmap(pixmapRect, slide); in paintEvent()
/dports/graphics/digikam/digikam-7.4.0/core/libs/widgets/itemview/
H A Dditemdelegate.cpp139 QRect pixmapRect(borderWidth, borderWidth, w, h); in makeDragPixmap() local
155 p.drawPixmap(pixmapRect.topLeft(), icon); in makeDragPixmap()
168 …QRect r1 = p.boundingRect(pixmapRect, Qt::AlignLeft | Qt::AlignTop, text1).adjusted(0, 0, 1, … in makeDragPixmap()
169 …QRect r2 = p.boundingRect(pixmapRect, Qt::AlignLeft | Qt::AlignTop, text2).adjusted(0, 0, 1, … in makeDragPixmap()
171 if ((r2.width() > pixmapRect.width()) || (r2.height() > pixmapRect.height())) in makeDragPixmap()
184 textRect.moveLeft((pixmapRect.width() - textRect.width()) / 2 + pixmapRect.x()); in makeDragPixmap()
185 textRect.moveTop((pixmapRect.height() - textRect.height()) * 4 / 5); in makeDragPixmap()
/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qtsvg/examples/svg/embedded/fluidlauncher/
H A Dslideshow.cpp188 QRect pixmapRect(qMax( (size().width() - slide.width())/2, 0), in paintEvent() local
193 if (pixmapRect.top() > 0) { in paintEvent()
195 painter.fillRect(0, 0, size().width(), pixmapRect.top(), Qt::black); in paintEvent()
196 painter.fillRect(0, pixmapRect.bottom(), size().width(), size().height(), Qt::black); in paintEvent()
199 if (pixmapRect.left() > 0) { in paintEvent()
201 painter.fillRect(0, 0, pixmapRect.left(), size().height(), Qt::black); in paintEvent()
202 painter.fillRect(pixmapRect.right(), 0, size().width(), size().height(), Qt::black); in paintEvent()
205 painter.drawPixmap(pixmapRect, slide); in paintEvent()
/dports/editors/texmaker/texmaker-5.0.3/
H A Dicondelegate.cpp50 QRect pixmapRect(0,0,32,32);//=pixmap.rect(); in paint() local
62 doLayout(opt, &checkRect, &pixmapRect, &textRect, false); in paint()
80 drawDecoration(painter, opt, pixmapRect, pixmap); in paint()
95 QRect pixmapRect; in sizeHint() local
97 pixmapRect = QRect(0, 0, option.decorationSize.width(), in sizeHint()
104 doLayout(option, &checkRect, &pixmapRect, &textRect, true); in sizeHint()
106 return (pixmapRect|textRect|checkRect).size(); in sizeHint()
204 Q_ASSERT(checkRect && pixmapRect && textRect); in doLayout()
212 if (pixmapRect->isValid()) in doLayout()
275 decoration = *pixmapRect; in doLayout()
[all …]
/dports/x11-toolkits/kf5-kwidgetsaddons/kwidgetsaddons-5.89.0/src/
H A Dkpixmapsequenceoverlaypainter.cpp27 QRect pixmapRect();
63 m_widget->update(pixmapRect()); in timeout()
73 …p.drawPixmap(pixmapRect(), sequence().frameAt(m_counter), QRect(QPoint(0, 0), sequence().frameSize… in paintFrame()
81 QRect KPixmapSequenceOverlayPainterPrivate::pixmapRect() in pixmapRect() function in KPixmapSequenceOverlayPainterPrivate
218 d->m_widget->update(d->pixmapRect()); in start()
229 d->m_widget->update(d->pixmapRect()); in stop()
251 d->m_widget->update(d->pixmapRect()); in eventFilter()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/gui/styles/
H A Dqplastiquestyle.cpp2847 pixmapRect.topLeft(), pixmapRect.topRight(), in drawControl()
2848 pixmapRect.bottomLeft(), pixmapRect.bottomRight() }; in drawControl()
2855 lines[0] = QLine(pixmapRect.left() + 2, pixmapRect.top() + 1, in drawControl()
2856 pixmapRect.right() - 2, pixmapRect.top() + 1); in drawControl()
2857 lines[1] = QLine(pixmapRect.left() + 1, pixmapRect.top() + 2, in drawControl()
2862 lines[0] = QLine(pixmapRect.left() + 2, pixmapRect.bottom() - 1, in drawControl()
2865 pixmapRect.right() - 1, pixmapRect.top() + 2); in drawControl()
3672 QPoint(pixmapRect.left(), pixmapRect.top()), in drawControl()
3673 QPoint(pixmapRect.left(), pixmapRect.bottom()), in drawControl()
3674 QPoint(pixmapRect.right(), pixmapRect.top()), in drawControl()
[all …]
/dports/x11-themes/qt5-style-plugins/qtstyleplugins-5.0.0-23-g335dbe/src/plugins/styles/plastique/
H A Dqplastiquestyle.cpp2730 pixmapRect.topLeft(), pixmapRect.topRight(), in drawControl()
2731 pixmapRect.bottomLeft(), pixmapRect.bottomRight() }; in drawControl()
2738 lines[0] = QLine(pixmapRect.left() + 2, pixmapRect.top() + 1, in drawControl()
2739 pixmapRect.right() - 2, pixmapRect.top() + 1); in drawControl()
2740 lines[1] = QLine(pixmapRect.left() + 1, pixmapRect.top() + 2, in drawControl()
2745 lines[0] = QLine(pixmapRect.left() + 2, pixmapRect.bottom() - 1, in drawControl()
2748 pixmapRect.right() - 1, pixmapRect.top() + 2); in drawControl()
3547 QPoint(pixmapRect.left(), pixmapRect.top()), in drawControl()
3548 QPoint(pixmapRect.left(), pixmapRect.bottom()), in drawControl()
3549 QPoint(pixmapRect.right(), pixmapRect.top()), in drawControl()
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/utilities/import/items/
H A Dimportdelegate.cpp53 pixmapRect = QRect(0, 0, 0, 0); in clearRects()
179 QRect ImportDelegate::pixmapRect() const in pixmapRect() function in Digikam::ImportDelegate
182 return d->pixmapRect; in pixmapRect()
268 QRect actualPixmapRect = drawThumbnail(p, d->pixmapRect, pix, thumbnailPixmap(index)); in paint()
524 return d->pixmapRect; in actualPixmapRect()
691 d->pixmapRect = QRect(d->margin, d->margin, d->contentWidth, d->contentWidth); in updateRects()
698 d->downloadRect = QRect(d->contentWidth - pos, d->pixmapRect.top(), iconSize, iconSize); in updateRects()
700 d->lockRect = QRect(d->contentWidth - pos, d->pixmapRect.top(), iconSize, iconSize); in updateRects()
702 d->coordinatesRect = QRect(d->contentWidth - pos, d->pixmapRect.top(), iconSize, iconSize); in updateRects()
762 y = d->pixmapRect.bottom(); in updateRects()
[all …]
/dports/deskutils/syncthingtray/qtutilities/widgets/
H A Diconbutton.cpp94 …auto pixmapRect = QRect(0, 0, static_cast<int>(m_pixmap.width() / pixmapRatio), static_cast<int>(m… in paintEvent() local
95 pixmapRect.moveCenter(rect().center()); in paintEvent()
96 painter.drawPixmap(pixmapRect, m_pixmap); in paintEvent()
100 focusOption.rect = pixmapRect; in paintEvent()
/dports/graphics/kxstitch/kxstitch-2.2.0/src/
H A DScaledPixmapLabel.cpp67 QRect ScaledPixmapLabel::pixmapRect() const in pixmapRect() function in ScaledPixmapLabel
128 m_crop = pixmapRect().intersected(QRect(m_start, m_end).normalized()); in mouseMoveEvent()
139 m_crop = pixmapRect().intersected(QRect(m_start, m_end).normalized()); in mouseReleaseEvent()
143 m_crop.translate(-pixmapRect().topLeft()); in mouseReleaseEvent()
/dports/deskutils/copyq/CopyQ-5.0.0/src/gui/
H A Dfancylineedit.cpp268 auto pixmapRect = contentsRect().adjusted(m, m, -m, -m); in paintEvent() local
270 pixmapRect.setWidth( pixmapRect.width() - 2 ); in paintEvent()
273 m_icon.paint(&painter, pixmapRect); in paintEvent()
284 painter.translate(pixmapRect.bottomRight() + QPoint(0, -4)); in paintEvent()
294 focusOption.rect = pixmapRect; in paintEvent()
/dports/graphics/digikam/digikam-7.4.0/core/showfoto/thumbbar/
H A Dshowfotodelegate.cpp34 pixmapRect = QRect(0, 0, 0, 0); in clearRects()
123 QRect ShowfotoDelegate::pixmapRect() const in pixmapRect() function in ShowFoto::ShowfotoDelegate
127 return d->pixmapRect; in pixmapRect()
207 QRect actualPixmapRect = drawThumbnail(p, d->pixmapRect, pix, thumbnailPixmap(index)); in paint()
386 return d->pixmapRect; in actualPixmapRect()
553 d->pixmapRect = QRect(d->margin, d->margin, d->contentWidth, d->contentWidth); in updateRects()
555 d->coordinatesRect = QRect(d->contentWidth - 16+2, d->pixmapRect.top(), 16, 16); in updateRects()
608 d->pixmapRect = QRect(d->margin, y, d->contentWidth, d->contentWidth); in updateRects()
609 y = d->pixmapRect.bottom(); in updateRects()
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqfusionstyle.cpp1302 QLinearGradient gradient(pixmapRect.topLeft(), pixmapRect.bottomLeft()); in drawControl()
1318 cachePainter.drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawControl()
1320 cachePainter.drawLine(pixmapRect.bottomLeft(), pixmapRect.bottomRight()); in drawControl()
2571 QLinearGradient gradient(pixmapRect.center().x(), pixmapRect.top(), in drawComplexControl()
2572 pixmapRect.center().x(), pixmapRect.bottom()); in drawComplexControl()
2574 gradient = QLinearGradient(pixmapRect.left(), pixmapRect.center().y(), in drawComplexControl()
2684 painter->drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawComplexControl()
2842 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
2846 gradient.setStart(pixmapRect.left(), pixmapRect.center().y()); in drawComplexControl()
2868 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
[all …]
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqfusionstyle.cpp1302 QLinearGradient gradient(pixmapRect.topLeft(), pixmapRect.bottomLeft()); in drawControl()
1318 cachePainter.drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawControl()
1320 cachePainter.drawLine(pixmapRect.bottomLeft(), pixmapRect.bottomRight()); in drawControl()
2571 QLinearGradient gradient(pixmapRect.center().x(), pixmapRect.top(), in drawComplexControl()
2572 pixmapRect.center().x(), pixmapRect.bottom()); in drawComplexControl()
2574 gradient = QLinearGradient(pixmapRect.left(), pixmapRect.center().y(), in drawComplexControl()
2684 painter->drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawComplexControl()
2842 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
2846 gradient.setStart(pixmapRect.left(), pixmapRect.center().y()); in drawComplexControl()
2868 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
[all …]
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqfusionstyle.cpp1302 QLinearGradient gradient(pixmapRect.topLeft(), pixmapRect.bottomLeft()); in drawControl()
1318 cachePainter.drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawControl()
1320 cachePainter.drawLine(pixmapRect.bottomLeft(), pixmapRect.bottomRight()); in drawControl()
2571 QLinearGradient gradient(pixmapRect.center().x(), pixmapRect.top(), in drawComplexControl()
2572 pixmapRect.center().x(), pixmapRect.bottom()); in drawComplexControl()
2574 gradient = QLinearGradient(pixmapRect.left(), pixmapRect.center().y(), in drawComplexControl()
2684 painter->drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawComplexControl()
2842 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
2846 gradient.setStart(pixmapRect.left(), pixmapRect.center().y()); in drawComplexControl()
2868 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
[all …]
/dports/x11-toolkits/qt5-gui/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqfusionstyle.cpp1302 QLinearGradient gradient(pixmapRect.topLeft(), pixmapRect.bottomLeft()); in drawControl()
1318 cachePainter.drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawControl()
1320 cachePainter.drawLine(pixmapRect.bottomLeft(), pixmapRect.bottomRight()); in drawControl()
2571 QLinearGradient gradient(pixmapRect.center().x(), pixmapRect.top(), in drawComplexControl()
2572 pixmapRect.center().x(), pixmapRect.bottom()); in drawComplexControl()
2574 gradient = QLinearGradient(pixmapRect.left(), pixmapRect.center().y(), in drawComplexControl()
2684 painter->drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawComplexControl()
2842 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
2846 gradient.setStart(pixmapRect.left(), pixmapRect.center().y()); in drawComplexControl()
2868 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
[all …]
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqfusionstyle.cpp1302 QLinearGradient gradient(pixmapRect.topLeft(), pixmapRect.bottomLeft()); in drawControl()
1318 cachePainter.drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawControl()
1320 cachePainter.drawLine(pixmapRect.bottomLeft(), pixmapRect.bottomRight()); in drawControl()
2571 QLinearGradient gradient(pixmapRect.center().x(), pixmapRect.top(), in drawComplexControl()
2572 pixmapRect.center().x(), pixmapRect.bottom()); in drawComplexControl()
2574 gradient = QLinearGradient(pixmapRect.left(), pixmapRect.center().y(), in drawComplexControl()
2684 painter->drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawComplexControl()
2842 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
2846 gradient.setStart(pixmapRect.left(), pixmapRect.center().y()); in drawComplexControl()
2868 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
[all …]
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqfusionstyle.cpp1302 QLinearGradient gradient(pixmapRect.topLeft(), pixmapRect.bottomLeft()); in drawControl()
1318 cachePainter.drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawControl()
1320 cachePainter.drawLine(pixmapRect.bottomLeft(), pixmapRect.bottomRight()); in drawControl()
2571 QLinearGradient gradient(pixmapRect.center().x(), pixmapRect.top(), in drawComplexControl()
2572 pixmapRect.center().x(), pixmapRect.bottom()); in drawComplexControl()
2574 gradient = QLinearGradient(pixmapRect.left(), pixmapRect.center().y(), in drawComplexControl()
2684 painter->drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawComplexControl()
2842 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
2846 gradient.setStart(pixmapRect.left(), pixmapRect.center().y()); in drawComplexControl()
2868 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
[all …]
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqfusionstyle.cpp1302 QLinearGradient gradient(pixmapRect.topLeft(), pixmapRect.bottomLeft()); in drawControl()
1318 cachePainter.drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawControl()
1320 cachePainter.drawLine(pixmapRect.bottomLeft(), pixmapRect.bottomRight()); in drawControl()
2571 QLinearGradient gradient(pixmapRect.center().x(), pixmapRect.top(), in drawComplexControl()
2572 pixmapRect.center().x(), pixmapRect.bottom()); in drawComplexControl()
2574 gradient = QLinearGradient(pixmapRect.left(), pixmapRect.center().y(), in drawComplexControl()
2684 painter->drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawComplexControl()
2842 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
2846 gradient.setStart(pixmapRect.left(), pixmapRect.center().y()); in drawComplexControl()
2868 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
[all …]
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqfusionstyle.cpp1302 QLinearGradient gradient(pixmapRect.topLeft(), pixmapRect.bottomLeft()); in drawControl()
1318 cachePainter.drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawControl()
1320 cachePainter.drawLine(pixmapRect.bottomLeft(), pixmapRect.bottomRight()); in drawControl()
2571 QLinearGradient gradient(pixmapRect.center().x(), pixmapRect.top(), in drawComplexControl()
2572 pixmapRect.center().x(), pixmapRect.bottom()); in drawComplexControl()
2574 gradient = QLinearGradient(pixmapRect.left(), pixmapRect.center().y(), in drawComplexControl()
2684 painter->drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawComplexControl()
2842 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
2846 gradient.setStart(pixmapRect.left(), pixmapRect.center().y()); in drawComplexControl()
2868 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
[all …]
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/widgets/styles/
H A Dqfusionstyle.cpp1302 QLinearGradient gradient(pixmapRect.topLeft(), pixmapRect.bottomLeft()); in drawControl()
1318 cachePainter.drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawControl()
1320 cachePainter.drawLine(pixmapRect.bottomLeft(), pixmapRect.bottomRight()); in drawControl()
2571 QLinearGradient gradient(pixmapRect.center().x(), pixmapRect.top(), in drawComplexControl()
2572 pixmapRect.center().x(), pixmapRect.bottom()); in drawComplexControl()
2574 gradient = QLinearGradient(pixmapRect.left(), pixmapRect.center().y(), in drawComplexControl()
2684 painter->drawLine(pixmapRect.topLeft(), pixmapRect.topRight()); in drawComplexControl()
2842 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
2846 gradient.setStart(pixmapRect.left(), pixmapRect.center().y()); in drawComplexControl()
2868 gradient.setStart(pixmapRect.center().x(), pixmapRect.top()); in drawComplexControl()
[all …]

12345678910