summaryrefslogtreecommitdiffstats
path: root/noatun/modules/kjofol-skin/helpers.cpp
blob: 0a2a9e67f3689c5e43112b96e9263143896e1a52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/***************************************************************************
	helpers.cpp
	Just a few functions needed in several Kjofol-classes
	---------------------------------------------
	Maintainer: Charles Samuels <charles@kde.org>

 ***************************************************************************/

#ifndef KJHELPERS_CPP
#define KJHELPERS_CPP

static int grayRgb(QRgb r)
{
	return qGray(qRed(r), qGreen(r), qBlue(r));
}

static int isGray(QRgb r)
{
// this is more tolerant than the old version
// i.e. RGB 162 163 162 is treated as gray too
// too many broken skins around having such colors

//	cerr << "r("<<qRed(r)<<","<<qGreen(r)<<","<<qBlue(r)<<")"<<endl;

	if ( (qRed(r)==qGreen(r)) || (qRed(r)+1==qGreen(r)) || (qRed(r)-1==qGreen(r)))
	{
		if ( (qRed(r)==qBlue(r)) || (qRed(r)+1==qBlue(r)) || (qRed(r)-1==qBlue(r)))
		{
			// looks a bit like gray, so return true
			return (1);
		}
	}
	// well, it's not gray
	return(0);

/*
	// mETz: wrong braces in the code below ??
	return (qRed(r)==qGreen(r)) && (qRed(r) == qBlue(r));
*/
}

// only works little endian
// UPDATE: should work on both little and big endian now (haven't tested that!)
// this code is taken from the QT-docu and I hope that this example
// is one of the working ones ;)
inline void setPixel1BPP(TQImage &image, int x, int y, bool value)
{
	if ( image.bitOrder() == TQImage::LittleEndian )
	{
		if (value)
			*(image.scanLine(y) + (x >> 3)) |= 1 << (x & 7);
		else
			*(image.scanLine(y) + (x >> 3)) &= ~(1 << (x & 7));
	}
	else
	{
		if (value)
			*(image.scanLine(y) + (x >> 3)) |= 1 << (7-(x & 7));
		else
			*(image.scanLine(y) + (x >> 3)) &= ~(1 << (7-(x & 7)));
	}
}

#endif