comparison widgets/ColourComboBox.h @ 1196:b1e3ee5f1be6 levelpanwidget

Introduce colour combobox class, to replace ad-hoc code in property box
author Chris Cannam
date Fri, 16 Dec 2016 13:08:33 +0000
parents
children 85f04c956f03
comparison
equal deleted inserted replaced
1195:51bb2582c2cc 1196:b1e3ee5f1be6
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2
3 /*
4 Sonic Visualiser
5 An audio file viewer and annotation editor.
6 Centre for Digital Music, Queen Mary, University of London.
7 This file copyright 2007-2016 QMUL.
8
9 This program is free software; you can redistribute it and/or
10 modify it under the terms of the GNU General Public License as
11 published by the Free Software Foundation; either version 2 of the
12 License, or (at your option) any later version. See the file
13 COPYING included with this distribution for more information.
14 */
15
16 #ifndef SV_COLOUR_COMBO_BOX_H
17 #define SV_COLOUR_COMBO_BOX_H
18
19 #include "NotifyingComboBox.h"
20
21 /**
22 * Colour-picker combo box with swatches, optionally including "Add
23 * New Colour..." entry to invoke a QColorDialog/ColourNameDialog
24 */
25 class ColourComboBox : public NotifyingComboBox
26 {
27 Q_OBJECT
28
29 public:
30 ColourComboBox(bool withAddNewColourEntry, QWidget *parent = 0);
31
32 signals:
33 void colourChanged(int colourIndex);
34
35 private slots:
36 void rebuild();
37 void comboActivated(int);
38
39 private:
40 bool m_withAddNewColourEntry;
41 };
42
43 #endif
44