File: WidgetColorPicker.h

package info (click to toggle)
equalx 0.7.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,268 kB
  • sloc: cpp: 7,119; ansic: 98; sql: 10; makefile: 6
file content (72 lines) | stat: -rw-r--r-- 2,153 bytes parent folder | download | duplicates (4)
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
/*
 * Copyright 2013 Mihai Niculescu <q.quark@gmail.com>
 *
 * This file is part of EqualX Project (https://launchpad.net/equalx/)
 *
 * EqualX 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 3 of the License, or
 * (at your option) any later version.
 *
 * EqualX is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef __WIDGETCOLORPICKER_H_
#define __WIDGETCOLORPICKER_H_

#include <QComboBox>
#include <QColor>


class WidgetColorPicker : public QComboBox
{
    Q_OBJECT
    
public: //Methods
    WidgetColorPicker(QWidget *parent = 0);
    ~WidgetColorPicker();

    QColor getColor() const;
    QString getColorName() const;

    void setCurrentIndex(int index);

    /* setColor(const QColor& color)
     * setColorName(const QString& colorName);
     *
     * try to select this color if it is in the list, otherwise add a new color
     * it will emit signals:
     *  - currentIndexChanged(int index)
     *  - colorSelectionChanged(QString name)
     *  - colorSelectionChanged(QColor color)
     *
     * color name is a Qt named color
     */
    void setColor(const QColor& color);
    void setColorName(const QString& colorName);
private: //Methods
    void init();
    QIcon createIcon(const QString& colorName) const;
    void addColor(QString colorName);
    void addColor(QColor color);

private: //Data Members
    QColor m_Color;
    QString m_ColorName;
    int m_currentColorIndex;

private slots: //Slots
    void on_comboBox_currentIndexChanged(int index);

signals: //Signal
    void colorSelectionChanged(QString);
    void colorSelectionChanged(QColor);
};

#endif /*__WIDGETCOLORPICKER_H_*/