xref: /haiku/src/preferences/appearance/Colors.h (revision 21258e2674226d6aa732321b6f8494841895af5f)
1 /*
2  * Copyright 2001-2015, Haiku.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		DarkWyrm <bpmagic@columbus.rr.com>
7  *		Rene Gollent <rene@gollent.com>
8  *		Joseph Groover <looncraz@looncraz.net>
9  */
10 #ifndef COLORS_H
11 #define COLORS_H
12 
13 
14 #include <InterfaceDefs.h>
15 
16 
17 typedef struct {
18 	color_which	which;
19 	const char*	text;
20 } ColorDescription;
21 
22 
23 const ColorDescription* get_color_description(int32 index);
24 int32 color_description_count(void);
25 void get_default_colors(BMessage* storage);
26 void get_current_colors(BMessage* storage);
27 
28 
29 #endif	// COLORS_H
30