File: colors.h

package info (click to toggle)
alsa-utils 1.0.28-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,280 kB
  • ctags: 1,585
  • sloc: ansic: 21,693; sh: 6,035; xml: 590; makefile: 374; sed: 16
file content (33 lines) | stat: -rw-r--r-- 784 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef COLORS_H_INCLUDED
#define COLORS_H_INCLUDED

#define TRICOLOR_VOLUME_BAR

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;
extern int attr_ctl_bar_lo;
#ifdef TRICOLOR_VOLUME_BAR
extern int attr_ctl_bar_mi;
extern int attr_ctl_bar_hi;
#endif
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