NeoMutt  2024-03-23-147-g885fbc
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
color()

Calculate the colour for a line of the menu. More...

+ Collaboration diagram for color():

Functions

const struct AttrColorindex_color (struct Menu *menu, int line)
 Calculate the colour for a line of the index - Implements Menu::color() -.
 
static const struct AttrColordefault_color (struct Menu *menu, int line)
 Get the default colour for a line of the menu - Implements Menu::color() -.
 
static const struct AttrColorpost_color (struct Menu *menu, int line)
 Calculate the colour for a line of the postpone index - Implements Menu::color() -.
 

Detailed Description

Calculate the colour for a line of the menu.

Parameters
menuMenu containing items
lineMenu line number
Return values
>0Colour pair in an integer
0No colour

Function Documentation

◆ index_color()

const struct AttrColor * index_color ( struct Menu menu,
int  line 
)

Calculate the colour for a line of the index - Implements Menu::color() -.

Definition at line 898 of file dlg_index.c.

899{
900 struct IndexPrivateData *priv = menu->mdata;
901 struct IndexSharedData *shared = priv->shared;
902 struct Mailbox *m = shared->mailbox;
903 if (!m || (line < 0))
904 return NULL;
905
906 struct Email *e = mutt_get_virt_email(m, line);
907 if (!e)
908 return NULL;
909
910 if (e->attr_color)
911 return e->attr_color;
912
914 return e->attr_color;
915}
void mutt_set_header_color(struct Mailbox *m, struct Email *e)
Select a colour for a message.
Definition: dlg_index.c:1374
struct Email * mutt_get_virt_email(struct Mailbox *m, int vnum)
Get a virtual Email.
Definition: mview.c:418
The envelope/body of an email.
Definition: email.h:39
const struct AttrColor * attr_color
Color-pair to use when displaying in the index.
Definition: email.h:115
Private state data for the Index.
Definition: private_data.h:35
struct IndexSharedData * shared
Shared Index data.
Definition: private_data.h:40
struct Menu * menu
Menu controlling the index.
Definition: private_data.h:41
Data shared between Index, Pager and Sidebar.
Definition: shared_data.h:37
struct Mailbox * mailbox
Current Mailbox.
Definition: shared_data.h:41
A mailbox.
Definition: mailbox.h:79
void * mdata
Private data.
Definition: lib.h:147
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ default_color()

static const struct AttrColor * default_color ( struct Menu menu,
int  line 
)
static

Get the default colour for a line of the menu - Implements Menu::color() -.

Definition at line 48 of file menu.c.

49{
51}
struct AttrColor * simple_color_get(enum ColorId cid)
Get the colour of an object by its ID.
Definition: simple.c:88
@ MT_COLOR_NORMAL
Plain text.
Definition: color.h:59
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ post_color()

static const struct AttrColor * post_color ( struct Menu menu,
int  line 
)
static

Calculate the colour for a line of the postpone index - Implements Menu::color() -.

Definition at line 177 of file dlg_postpone.c.

178{
179 struct MailboxView *mv = menu->mdata;
180 if (!mv || (line < 0))
181 return NULL;
182
183 struct Mailbox *m = mv->mailbox;
184 if (!m)
185 return NULL;
186
187 struct Email *e = mutt_get_virt_email(m, line);
188 if (!e)
189 return NULL;
190
191 if (e->attr_color)
192 return e->attr_color;
193
195 return e->attr_color;
196}
View of a Mailbox.
Definition: mview.h:40
struct Menu * menu
Needed for pattern compilation.
Definition: mview.h:47
struct Mailbox * mailbox
Current Mailbox.
Definition: mview.h:51
+ Here is the call graph for this function:
+ Here is the caller graph for this function: