summaryrefslogtreecommitdiff
path: root/gtk2_ardour/color.h
blob: bb2ba499e8a3a342a871ee3c9286a4ef050a715a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __gtk_ardour_color_h__
#define __gtk_ardour_color_h__

#include <sigc++/signal.h>

#undef COLORID
#define COLORID(a) a,
enum ColorID {
	 #include "colors.h"
};
#undef COLORID

typedef std::map<ColorID,int> ColorMap;
extern ColorMap color_map;

extern sigc::signal<void>                  ColorsChanged;
extern sigc::signal<void,ColorID,uint32_t> ColorChanged;

#endif /* __gtk_ardour_color_h__ */