misc.h
00001 /* Plastik KWin window decoration 00002 Copyright (C) 2003 Sandro Giessl <ceebx@users.sourceforge.net> 00003 00004 based on the window decoration "Web": 00005 Copyright (C) 2001 Rik Hemsley (rikkus) <rik@kde.org> 00006 00007 This program is free software; you can redistribute it and/or 00008 modify it under the terms of the GNU General Public 00009 License as published by the Free Software Foundation; either 00010 version 2 of the License, or (at your option) any later version. 00011 00012 This program is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 General Public License for more details. 00016 00017 You should have received a copy of the GNU General Public License 00018 along with this program; see the file COPYING. If not, write to 00019 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00020 Boston, MA 02111-1307, USA. 00021 */ 00022 00023 #ifndef MISC_H 00024 #define MISC_H 00025 00026 QColor hsvRelative(QColor& baseColor, int relativeH, int relativeS = 0, int relativeV = 0); 00027 QColor alphaBlendColors(const QColor &backgroundColor, const QColor &foregroundColor, const int alpha); 00028 QImage recolorImage(QImage *img, QColor color); 00029 00030 #endif // MISC_H