2009-05-25 10:26:22 +02:00
|
|
|
#ifndef COLORS_H_INCLUDED
|
|
|
|
#define COLORS_H_INCLUDED
|
|
|
|
|
2009-06-18 14:42:28 +02:00
|
|
|
#define TRICOLOR_VOLUME_BAR
|
|
|
|
|
2009-05-25 10:26:22 +02:00
|
|
|
extern int attr_mixer_frame;
|
|
|
|
extern int attr_mixer_text;
|
|
|
|
extern int attr_mixer_active;
|
|
|
|
extern int attr_ctl_frame;
|
|
|
|
extern int attr_ctl_mute;
|
|
|
|
extern int attr_ctl_nomute;
|
|
|
|
extern int attr_ctl_capture;
|
|
|
|
extern int attr_ctl_nocapture;
|
|
|
|
extern int attr_ctl_label;
|
|
|
|
extern int attr_ctl_label_focus;
|
|
|
|
extern int attr_ctl_mark_focus;
|
2009-06-18 14:42:28 +02:00
|
|
|
extern int attr_ctl_bar_lo;
|
|
|
|
#ifdef TRICOLOR_VOLUME_BAR
|
|
|
|
extern int attr_ctl_bar_mi;
|
|
|
|
extern int attr_ctl_bar_hi;
|
|
|
|
#endif
|
2009-05-25 10:26:22 +02:00
|
|
|
extern int attr_ctl_inactive;
|
|
|
|
extern int attr_ctl_label_inactive;
|
|
|
|
extern int attr_errormsg;
|
|
|
|
extern int attr_infomsg;
|
|
|
|
extern int attr_textbox;
|
|
|
|
extern int attr_textfield;
|
|
|
|
extern int attr_menu;
|
|
|
|
extern int attr_menu_selected;
|
|
|
|
|
|
|
|
void init_colors(int use_color);
|
|
|
|
|
|
|
|
#endif
|