![]() |
Mixxx
|
00001 /*************************************************************************** 00002 wskincolor.h - description 00003 ------------------- 00004 begin : 14 April 2007 00005 copyright : (C) 2007 by Adam Davison 00006 email : adamdavison@gmail.com 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef WSKINCOLOR_H 00019 #define WSKINCOLOR_H 00020 00021 #include <QSharedPointer> 00022 #include "skin/imgsource.h" 00023 00024 class WSkinColor { 00025 public: 00026 static QColor getCorrectColor(QColor c); 00027 static void setLoader(QSharedPointer<ImgSource> ld); 00028 private: 00029 static QSharedPointer<ImgSource> loader; 00030 }; 00031 00032 #endif 00033