/* vi: ts=8 sts=4 sw=4 * $Id$ * * This file is part of the KDE project, module kdecore. * Copyright (C) 2000 Geert Jansen * with minor additions and based on ideas from * Torsten Rahn * * This is free software; it comes under the GNU Library General * Public License, version 2. See the file "COPYING.LIB" for the * exact licensing terms. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "kiconeffect.h" #if defined(Q_WS_WIN) || defined(Q_WS_MACX) static bool qt_use_xrender=true; static bool qt_has_xft=true; #else extern bool qt_use_xrender; extern bool qt_has_xft; #endif class KIconEffectPrivate { public: QString mKey[6][3]; QColor mColor2[6][3]; }; KIconEffect::KIconEffect() { d = new KIconEffectPrivate; init(); } KIconEffect::~KIconEffect() { delete d; d = 0L; } void KIconEffect::init() { KConfig *config = KGlobal::config(); int i, j, effect=-1; QStringList groups; groups += "Desktop"; groups += "Toolbar"; groups += "MainToolbar"; groups += "Small"; groups += "Panel"; QStringList states; states += "Default"; states += "Active"; states += "Disabled"; QStringList::ConstIterator it, it2; QString _togray("togray"); QString _colorize("colorize"); QString _desaturate("desaturate"); QString _togamma("togamma"); QString _none("none"); QString _tomonochrome("tomonochrome"); KConfigGroupSaver cs(config, "default"); for (it=groups.begin(), i=0; it!=groups.end(); it++, i++) { // Default effects mEffect[i][0] = NoEffect; mEffect[i][1] = ((i==0)||(i==4)) ? ToGamma : NoEffect; mEffect[i][2] = ToGray; mTrans[i][0] = false; mTrans[i][1] = false; mTrans[i][2] = true; mValue[i][0] = 1.0; mValue[i][1] = ((i==0)||(i==4)) ? 0.7 : 1.0; mValue[i][2] = 1.0; mColor[i][0] = QColor(144,128,248); mColor[i][1] = QColor(169,156,255); mColor[i][2] = QColor(34,202,0); d->mColor2[i][0] = QColor(0,0,0); d->mColor2[i][1] = QColor(0,0,0); d->mColor2[i][2] = QColor(0,0,0); config->setGroup(*it + "Icons"); for (it2=states.begin(), j=0; it2!=states.end(); it2++, j++) { QString tmp = config->readEntry(*it2 + "Effect"); if (tmp == _togray) effect = ToGray; else if (tmp == _colorize) effect = Colorize; else if (tmp == _desaturate) effect = DeSaturate; else if (tmp == _togamma) effect = ToGamma; else if (tmp == _tomonochrome) effect = ToMonochrome; else if (tmp == _none) effect = NoEffect; else continue; if(effect != -1) mEffect[i][j] = effect; mValue[i][j] = config->readDoubleNumEntry(*it2 + "Value"); mColor[i][j] = config->readColorEntry(*it2 + "Color"); d->mColor2[i][j] = config->readColorEntry(*it2 + "Color2"); mTrans[i][j] = config->readBoolEntry(*it2 + "SemiTransparent"); } } } bool KIconEffect::hasEffect(int group, int state) const { return mEffect[group][state] != NoEffect; } QString KIconEffect::fingerprint(int group, int state) const { if ( group >= KIcon::LastGroup ) return ""; QString cached = d->mKey[group][state]; if (cached.isEmpty()) { QString tmp; cached = tmp.setNum(mEffect[group][state]); cached += ':'; cached += tmp.setNum(mValue[group][state]); cached += ':'; cached += mTrans[group][state] ? QString::fromLatin1("trans") : QString::fromLatin1("notrans"); if (mEffect[group][state] == Colorize || mEffect[group][state] == ToMonochrome) { cached += ':'; cached += mColor[group][state].name(); } if (mEffect[group][state] == ToMonochrome) { cached += ':'; cached += d->mColor2[group][state].name(); } d->mKey[group][state] = cached; } return cached; } QImage KIconEffect::apply(QImage image, int group, int state) const { if (state >= KIcon::LastState) { kdDebug(265) << "Illegal icon state: " << state << "\n"; return image; } if (group >= KIcon::LastGroup) { kdDebug(265) << "Illegal icon group: " << group << "\n"; return image; } return apply(image, mEffect[group][state], mValue[group][state], mColor[group][state], d->mColor2[group][state], mTrans[group][state]); } QImage KIconEffect::apply(QImage image, int effect, float value, const QColor col, bool trans) const { return apply (image, effect, value, col, KGlobalSettings::baseColor(), trans); } QImage KIconEffect::apply(QImage image, int effect, float value, const QColor col, const QColor col2, bool trans) const { if (effect >= LastEffect ) { kdDebug(265) << "Illegal icon effect: " << effect << "\n"; return image; } if (value > 1.0) value = 1.0; else if (value < 0.0) value = 0.0; switch (effect) { case ToGray: toGray(image, value); break; case DeSaturate: deSaturate(image, value); break; case Colorize: colorize(image, col, value); break; case ToGamma: toGamma(image, value); break; case ToMonochrome: toMonochrome(image, col, col2, value); break; } if (trans == true) { semiTransparent(image); } return image; } QPixmap KIconEffect::apply(QPixmap pixmap, int group, int state) const { if (state >= KIcon::LastState) { kdDebug(265) << "Illegal icon state: " << state << "\n"; return pixmap; } if (group >= KIcon::LastGroup) { kdDebug(265) << "Illegal icon group: " << group << "\n"; return pixmap; } return apply(pixmap, mEffect[group][state], mValue[group][state], mColor[group][state], d->mColor2[group][state], mTrans[group][state]); } QPixmap KIconEffect::apply(QPixmap pixmap, int effect, float value, const QColor col, bool trans) const { return apply (pixmap, effect, value, col, KGlobalSettings::baseColor(), trans); } QPixmap KIconEffect::apply(QPixmap pixmap, int effect, float value, const QColor col, const QColor col2, bool trans) const { QPixmap result; if (effect >= LastEffect ) { kdDebug(265) << "Illegal icon effect: " << effect << "\n"; return result; } if ((trans == true) && (effect == NoEffect)) { result = pixmap; semiTransparent(result); } else if ( effect != NoEffect ) { QImage tmpImg = pixmap.convertToImage(); tmpImg = apply(tmpImg, effect, value, col, col2, trans); result.convertFromImage(tmpImg); } else result = pixmap; return result; } // Taken from KImageEffect. We don't want to link kdecore to kdeui! As long // as this code is not too big, it doesn't seem much of a problem to me. void KIconEffect::toGray(QImage &img, float value) { int pixels = (img.depth() > 8) ? img.width()*img.height() : img.numColors(); unsigned int *data = img.depth() > 8 ? (unsigned int *) img.bits() : (unsigned int *) img.colorTable(); int rval, gval, bval, val, alpha, i; for (i=0; i(value*val+(1.0-value)*qRed(data[i])); gval = static_cast(value*val+(1.0-value)*qGreen(data[i])); bval = static_cast(value*val+(1.0-value)*qBlue(data[i])); data[i] = qRgba(rval, gval, bval, alpha); } else data[i] = qRgba(val, val, val, alpha); } } void KIconEffect::colorize(QImage &img, const QColor &col, float value) { int pixels = (img.depth() > 8) ? img.width()*img.height() : img.numColors(); unsigned int *data = img.depth() > 8 ? (unsigned int *) img.bits() : (unsigned int *) img.colorTable(); int rval, gval, bval, val, alpha, i; float rcol = col.red(), gcol = col.green(), bcol = col.blue(); for (i=0; i(rcol/128*val); gval = static_cast(gcol/128*val); bval = static_cast(bcol/128*val); } else if (val > 128) { rval = static_cast((val-128)*(2-rcol/128)+rcol-1); gval = static_cast((val-128)*(2-gcol/128)+gcol-1); bval = static_cast((val-128)*(2-bcol/128)+bcol-1); } else // val == 128 { rval = static_cast(rcol); gval = static_cast(gcol); bval = static_cast(bcol); } if (value < 1.0) { rval = static_cast(value*rval+(1.0 - value)*qRed(data[i])); gval = static_cast(value*gval+(1.0 - value)*qGreen(data[i])); bval = static_cast(value*bval+(1.0 - value)*qBlue(data[i])); } alpha = qAlpha(data[i]); data[i] = qRgba(rval, gval, bval, alpha); } } void KIconEffect::toMonochrome(QImage &img, const QColor &black, const QColor &white, float value) { int pixels = (img.depth() > 8) ? img.width()*img.height() : img.numColors(); unsigned int *data = img.depth() > 8 ? (unsigned int *) img.bits() : (unsigned int *) img.colorTable(); int rval, gval, bval, alpha, i; int rw = white.red(), gw = white.green(), bw = white.blue(); int rb = black.red(), gb = black.green(), bb = black.blue(); double values = 0, sum = 0; bool grayscale = true; // Step 1: determine the average brightness for (i=0; i( ((255-v)*rb + v*rw)*value/255 + (1.0-value)*qRed(data[i])); gval = static_cast( ((255-v)*gb + v*gw)*value/255 + (1.0-value)*qGreen(data[i])); bval = static_cast( ((255-v)*bb + v*bw)*value/255 + (1.0-value)*qBlue(data[i])); alpha = qAlpha(data[i]); data[i] = qRgba(rval, gval, bval, alpha); } } else { for (i=0; i(value*rb+(1.0-value)*qRed(data[i])); gval = static_cast(value*gb+(1.0-value)*qGreen(data[i])); bval = static_cast(value*bb+(1.0-value)*qBlue(data[i])); } else { rval = static_cast(value*rw+(1.0-value)*qRed(data[i])); gval = static_cast(value*gw+(1.0-value)*qGreen(data[i])); bval = static_cast(value*bw+(1.0-value)*qBlue(data[i])); } alpha = qAlpha(data[i]); data[i] = qRgba(rval, gval, bval, alpha); } } } void KIconEffect::deSaturate(QImage &img, float value) { int pixels = (img.depth() > 8) ? img.width()*img.height() : img.numColors(); unsigned int *data = (img.depth() > 8) ? (unsigned int *) img.bits() : (unsigned int *) img.colorTable(); QColor color; int h, s, v, i; for (i=0; i 8) ? img.width()*img.height() : img.numColors(); unsigned int *data = (img.depth() > 8) ? (unsigned int *) img.bits() : (unsigned int *) img.colorTable(); QColor color; int i, rval, gval, bval; float gamma; gamma = 1/(2*value+0.5); for (i=0; i(pow(static_cast(rval)/255 , gamma)*255); gval = static_cast(pow(static_cast(gval)/255 , gamma)*255); bval = static_cast(pow(static_cast(bval)/255 , gamma)*255); data[i] = qRgba(rval, gval, bval, qAlpha(data[i])); } } void KIconEffect::semiTransparent(QImage &img) { img.setAlphaBuffer(true); int x, y; if (img.depth() == 32) { int width = img.width(); int height = img.height(); if (qt_use_xrender && qt_has_xft ) for (y=0; y>= 1; line += 4; } } else for (y=0; y= img.numColors()) return; img.setColor(transColor, 0); if(img.depth() == 8) { for (y=0; yconvertToImage(); else { img.create(pix.size(), 1, 2, QImage::BigEndian); img.fill(1); } for (int y=0; y 255) { kdDebug(265) << "Too many colors in src + overlay!\n"; return; } // Find transparent pixel in overlay int trans; for (trans=0; trans> 8; g2 = (a1 * g1 + (0xff - a1) * g2) >> 8; b2 = (a1 * b1 + (0xff - a1) * b2) >> 8; a2 = QMAX(a1, a2); sline[j] = qRgba(r2, g2, b2, a2); } } } return; } void KIconEffect::visualActivate(QWidget * widget, QRect rect) { if (!KGlobalSettings::visualActivate()) return; uint actSpeed = KGlobalSettings::visualActivateSpeed(); uint actCount = QMIN(rect.width(), rect.height()) / 2; // Clip actCount to range 1..10. if (actCount < 1) actCount = 1; else if (actCount > 10) actCount = 10; // Clip actSpeed to range 1..100. if (actSpeed < 1) actSpeed = 1; else if (actSpeed > 100) actSpeed = 100; // actSpeed needs to be converted to actDelay. // actDelay is inversely proportional to actSpeed and needs to be // divided up into actCount portions. // We also convert the us value to ms. unsigned int actDelay = (1000 * (100 - actSpeed)) / actCount; //kdDebug() << "actCount=" << actCount << " actDelay=" << actDelay << endl; QPoint c = rect.center(); QPainter p(widget); // Use NotROP to avoid having to repaint the pixmap each time. p.setPen(QPen(Qt::black, 2, Qt::DotLine)); p.setRasterOp(Qt::NotROP); // The spacing between the rects we draw. // Use the minimum of width and height to avoid painting outside the // pixmap area. //unsigned int delta(QMIN(rect.width() / actCount, rect.height() / actCount)); // Support for rectangles by David unsigned int deltaX = rect.width() / actCount; unsigned int deltaY = rect.height() / actCount; for (unsigned int i = 1; i < actCount; i++) { int w = i * deltaX; int h = i * deltaY; rect.setRect(c.x() - w / 2, c.y() - h / 2, w, h); p.drawRect(rect); p.flush(); usleep(actDelay); p.drawRect(rect); } }