NeoMutt  2024-04-25-1-g3de005
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
dump.h
Go to the documentation of this file.
1
23#ifndef MUTT_COLOR_DUMP_H
24#define MUTT_COLOR_DUMP_H
25
26struct AttrColor;
27struct Buffer;
28struct ColorElement;
29
30void color_dump(void);
31
32const char *color_log_attrs_list (int attrs);
33void color_log_color_attrs(struct AttrColor *ac, struct Buffer *swatch);
34const char *color_log_name (char *buf, int buflen, struct ColorElement *elem);
35
36#endif /* MUTT_COLOR_DUMP_H */
37
void color_log_color_attrs(struct AttrColor *ac, struct Buffer *swatch)
Get a colourful string to represent a colour in the log.
Definition: dump.c:52
const char * color_log_name(char *buf, int buflen, struct ColorElement *elem)
Get a string to represent a colour name.
Definition: dump.c:165
void color_dump(void)
Display all the colours in the Pager.
Definition: dump.c:450
const char * color_log_attrs_list(int attrs)
Get a string to represent some attributes in the log.
Definition: dump.c:135
A curses colour and its attributes.
Definition: attr.h:66
String manipulation buffer.
Definition: buffer.h:36
One element of a Colour.
Definition: attr.h:56