X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/4404768ce6bb07bf2784da7806444acd462c3a33..35403704d9aee1e5d322e2fa59a90d8fb2a32c91:/lib/gui/epixmap.cpp diff --git a/lib/gui/epixmap.cpp b/lib/gui/epixmap.cpp index 3e396c98..f20c1a9f 100644 --- a/lib/gui/epixmap.cpp +++ b/lib/gui/epixmap.cpp @@ -3,16 +3,25 @@ #include ePixmap::ePixmap(eWidget *parent) - :eWidget(parent), m_alphatest(false) + :eWidget(parent), m_alphatest(false), m_scale(false) { } -void ePixmap::setAlphatest(bool alphatest) +void ePixmap::setAlphatest(int alphatest) { m_alphatest = alphatest; setTransparent(alphatest); } +void ePixmap::setScale(int scale) +{ + if (m_scale != scale) + { + m_scale = scale; + invalidate(); + } +} + void ePixmap::setPixmap(gPixmap *pixmap) { m_pixmap = pixmap; @@ -40,6 +49,17 @@ void ePixmap::setPixmapFromFile(const char *filename) event(evtChangedPixmap); } +void ePixmap::checkSize() +{ + /* when we have no pixmap, or a pixmap of different size, we need + to enable transparency in any case. */ + if (m_pixmap && m_pixmap->size() == size() && !m_alphatest) + setTransparent(0); + else + setTransparent(1); + /* fall trough. */ +} + int ePixmap::event(int event, void *data, void *data2) { switch (event) @@ -49,18 +69,37 @@ int ePixmap::event(int event, void *data, void *data2) ePtr style; getStyle(style); - -// eWidget::event(event, data, data2); - + +// we don't clear the background before because of performance reasons. +// when the pixmap is too small to fit the whole widget area, the widget is +// transparent anyway, so the background is already painted. +// eWidget::event(event, data, data2); + gPainter &painter = *(gPainter*)data2; if (m_pixmap) - painter.blit(m_pixmap, ePoint(0, 0), eRect(), m_alphatest?gPainter::BT_ALPHATEST:0); - + { + int flags = 0; + if (m_alphatest == 0) + flags = 0; + else if (m_alphatest == 1) + flags = gPainter::BT_ALPHATEST; + else if (m_alphatest == 2) + flags = gPainter::BT_ALPHABLEND; + if (m_scale) + painter.blitScale(m_pixmap, eRect(ePoint(0, 0), size()), eRect(), flags); + else + painter.blit(m_pixmap, ePoint(0, 0), eRect(), flags); + } + return 0; } case evtChangedPixmap: + checkSize(); invalidate(); return 0; + case evtChangedSize: + checkSize(); + /* fall trough. */ default: return eWidget::event(event, data, data2); }