Code

f7caae020c8d9c450a41cecc1900afdcf0c54aa6
[ncmpc.git] / src / colors.h
1 /* ncmpc (Ncurses MPD Client)
2  * (c) 2004-2009 The Music Player Daemon Project
3  * Project homepage: http://musicpd.org
4  
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
20 #ifndef COLORS_H
21 #define COLORS_H
23 #include "config.h"
25 #ifdef HAVE_NCURSESW_NCURSES_H
26 #include <ncursesw/ncurses.h>
27 #else
28 #include <ncurses.h>
29 #endif
31 enum color {
32         COLOR_TITLE = 1,
33         COLOR_TITLE_BOLD,
34         COLOR_LINE,
35         COLOR_LINE_BOLD,
36         COLOR_LIST,
37         COLOR_LIST_BOLD,
38         COLOR_PROGRESSBAR,
39         COLOR_STATUS,
40         COLOR_STATUS_BOLD,
41         COLOR_STATUS_TIME,
42         COLOR_STATUS_ALERT,
43         COLOR_DIRECTORY,
44         COLOR_PLAYLIST,
45         COLOR_BACKGROUND,
46         COLOR_END
47 };
49 int colors_str2color(const char *str);
51 #ifdef ENABLE_COLORS
52 int colors_assign(const char *name, const char *value);
53 int colors_define(const char *name, short r, short g, short b);
54 int colors_start(void);
55 #endif
57 int colors_use(WINDOW *w, enum color id);
59 #endif /* COLORS_H */