File indexing completed on 2024-04-21 05:43:39

0001 /***************************************************************************
0002  *   Copyright (C) 2005 by David Saxton                                    *
0003  *   david@bluehaze.org                                                    *
0004  *                                                                         *
0005  *   This program is free software; you can redistribute it and/or modify  *
0006  *   it under the terms of the GNU General Public License as published by  *
0007  *   the Free Software Foundation; either version 2 of the License, or     *
0008  *   (at your option) any later version.                                   *
0009  ***************************************************************************/
0010 
0011 #ifndef COLORUTILS_H
0012 #define COLORUTILS_H
0013 
0014 class QWidget;
0015 class KColorCombo;
0016 
0017 namespace ColorUtils
0018 {
0019 
0020 enum ColorScheme {
0021     QtStandard = 0,
0022     LED = 1,
0023 };
0024 
0025 KColorCombo *createColorCombo(ColorScheme colorScheme, QWidget *parent = nullptr);
0026 
0027 }
0028 
0029 #endif