summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/styles/theme/ogfxeffect.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/styles/theme/ogfxeffect.cpp b/noncore/styles/theme/ogfxeffect.cpp
index cc5bbcd..2071a67 100644
--- a/noncore/styles/theme/ogfxeffect.cpp
+++ b/noncore/styles/theme/ogfxeffect.cpp
@@ -1,40 +1,42 @@
1/* This file is part of the KDE libraries 1/* This file is part of the KDE libraries
2 Copyright (C) 1998, 1999 Christian Tibirna <ctibirna@total.net> 2 Copyright (C) 1998, 1999 Christian Tibirna <ctibirna@total.net>
3 (C) 1998, 1999 Daniel M. Duley <mosfet@kde.org> 3 (C) 1998, 1999 Daniel M. Duley <mosfet@kde.org>
4 (C) 1998, 1999 Dirk A. Mueller <mueller@kde.org> 4 (C) 1998, 1999 Dirk A. Mueller <mueller@kde.org>
5 5
6*/ 6*/
7 7
8// $Id$ 8// $Id$
9 9
10#include <qimage.h> 10#include <qimage.h>
11#include <qpainter.h> 11#include <qpainter.h>
12 12
13#include <qpe/qmath.h> 13#include <qpe/qmath.h>
14 14
15#include "ogfxeffect.h" 15#include "ogfxeffect.h"
16 16
17#include <cstdlib>
18#include <cmath>
17 19
18//====================================================================== 20//======================================================================
19// 21//
20// Gradient effects 22// Gradient effects
21// 23//
22//====================================================================== 24//======================================================================
23 25
24 26
25QPixmap& OGfxEffect::gradient(QPixmap &pixmap, const QColor &ca, 27QPixmap& OGfxEffect::gradient(QPixmap &pixmap, const QColor &ca,
26 const QColor &cb, GradientType eff, int ncols) 28 const QColor &cb, GradientType eff, int ncols)
27{ 29{
28 QImage image = gradient(pixmap.size(), ca, cb, eff, ncols); 30 QImage image = gradient(pixmap.size(), ca, cb, eff, ncols);
29 pixmap.convertFromImage(image); 31 pixmap.convertFromImage(image);
30 32
31 return pixmap; 33 return pixmap;
32} 34}
33 35
34QImage OGfxEffect::gradient(const QSize &size, const QColor &ca, 36QImage OGfxEffect::gradient(const QSize &size, const QColor &ca,
35 const QColor &cb, GradientType eff, int /*ncols*/) 37 const QColor &cb, GradientType eff, int /*ncols*/)
36{ 38{
37 int rDiff, gDiff, bDiff; 39 int rDiff, gDiff, bDiff;
38 int rca, gca, bca, rcb, gcb, bcb; 40 int rca, gca, bca, rcb, gcb, bcb;
39 41
40 QImage image(size, 32); 42 QImage image(size, 32);