summaryrefslogtreecommitdiffstats
path: root/src/gui/colorcombo.h
blob: 037d860971d3e07af99deb0ca4ba3467367db012 (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
80
/***************************************************************************
 *   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 <tqcolor.h>
#include <tqcombobox.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 TQComboBox
{
	TQ_OBJECT
  
	TQ_PROPERTY( TQColor color READ color WRITE setColor )

	public:
		enum ColorScheme
		{
			TQtStandard = 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, TQWidget *parent, const char *name = 0L );
		~ColorCombo();

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

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

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

#endif