summaryrefslogtreecommitdiffstats
path: root/src/gui/colorcombo.h
blob: 65b2714c0f96fe2a991cee6d7c1f73fbc42e041c (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/***************************************************************************
 *   Copyright (C) 2005 by David Saxton                                    *
 *   david@bluehaze.org                                                    *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 ***************************************************************************/

#ifndef COLORCOMBO_H
#define COLORCOMBO_H

#include <qcolor.h>
#include <qcombobox.h>

/**
Based on KColorCombo, Copyright (C) 1997 Martin Jones (mjones@kde.org). Allows
which colours are displayed to be changed.

@author David Saxton
*/
class ColorCombo : public QComboBox
{
	Q_OBJECT
	Q_PROPERTY( QColor color READ color WRITE setColor )

	public:
		enum ColorScheme
		{
			QtStandard = 0,
			LED = 1,
			NumberOfSchemes = 2, ///< for internal usage; this should be one less than the number of items in the enum
		};
		
  	 	/**
		 * Constructs a color combo box.
		 */
		ColorCombo( ColorScheme colorScheme, QWidget *parent, const char *name = 0L );
		~ColorCombo();

		/**
		 * Selects the color @p col.
		 */
		void setColor( const QColor & col );
		/**
		 * Returns the currently selected color.
		**/
		QColor color() const { return internalColor; }

	signals:
    	/**
		 * Emitted when a new color box has been selected.
		 */
		void activated( const QColor &col );
	    /**
		 * Emitted when a new item has been highlighted.
		 */
		void highlighted( const QColor &col );
		
	protected slots:
		void slotActivated( int index );
		void slotHighlighted( int index );

	protected:
		virtual void resizeEvent( QResizeEvent *re );
		void addColors();
		void createPalettes();
		
		QColor customColor;
		QColor internalColor;
		ColorScheme m_colorScheme;
		
		static bool createdPalettes;
		static QColor * palette[ NumberOfSchemes ];
		static int paletteSize[ NumberOfSchemes ];
};

#endif