aboutsummaryrefslogblamecommitdiffstats
path: root/src/colors.h
blob: 051aa9e26b76b6e050aabaf270d1f2ba690b534d (plain) (tree)
1
2
3
4
5
6
7


                

                   

                    











                           
                 
  
 
                                        
 
                    

                                                               
                       

      
                                         
 
                     
#ifndef COLORS_H
#define COLORS_H

#include "config.h"

#include <ncurses.h>

enum color {
	COLOR_TITLE = 1,
	COLOR_TITLE_BOLD,
	COLOR_LINE,
	COLOR_LINE_BOLD,
	COLOR_LIST,
	COLOR_LIST_BOLD,
	COLOR_PROGRESSBAR,
	COLOR_STATUS,
	COLOR_STATUS_BOLD,
	COLOR_STATUS_TIME,
	COLOR_STATUS_ALERT,
	COLOR_END
};

short colors_str2color(const char *str);

#ifdef ENABLE_COLORS
int colors_assign(const char *name, const char *value);
int colors_define(const char *name, short r, short g, short b);
int colors_start(void);
#endif

int colors_use(WINDOW *w, enum color id);

#endif /* COLORS_H */