colors.h (784B)
1 #ifndef COLORS_H_INCLUDED 2 #define COLORS_H_INCLUDED 3 4 #define TRICOLOR_VOLUME_BAR 5 6 extern int attr_mixer_frame; 7 extern int attr_mixer_text; 8 extern int attr_mixer_active; 9 extern int attr_ctl_frame; 10 extern int attr_ctl_mute; 11 extern int attr_ctl_nomute; 12 extern int attr_ctl_capture; 13 extern int attr_ctl_nocapture; 14 extern int attr_ctl_label; 15 extern int attr_ctl_label_focus; 16 extern int attr_ctl_mark_focus; 17 extern int attr_ctl_bar_lo; 18 #ifdef TRICOLOR_VOLUME_BAR 19 extern int attr_ctl_bar_mi; 20 extern int attr_ctl_bar_hi; 21 #endif 22 extern int attr_ctl_inactive; 23 extern int attr_ctl_label_inactive; 24 extern int attr_errormsg; 25 extern int attr_infomsg; 26 extern int attr_textbox; 27 extern int attr_textfield; 28 extern int attr_menu; 29 extern int attr_menu_selected; 30 31 void init_colors(int use_color); 32 33 #endif