NeoMutt  2025-12-11-435-g4ac674
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 926 of file dlg_index.c.

927{
928 struct IndexPrivateData *priv = menu->mdata;
929 struct IndexSharedData *shared = priv->shared;
930 struct Mailbox *m = shared->mailbox;
931 if (!m || (line < 0))
932 return NULL;
933
934 struct Email *e = mutt_get_virt_email(m, line);
935 if (!e)
936 return NULL;
937
938 if (e->attr_color)
939 return e->attr_color;
940
941 email_set_color(m, e);
942 return e->attr_color;
943}
void email_set_color(struct Mailbox *m, struct Email *e)
Select an Index colour for an Email.
Definition dlg_index.c:1406
struct Email * mutt_get_virt_email(struct Mailbox *m, int vnum)
Get a virtual Email.
Definition mview.c:415
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:112
Private state data for the Index.
struct IndexSharedData * shared
Shared Index data.
struct Menu * menu
Menu controlling the index.
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:78
void * mdata
Private data.
Definition lib.h:149
+ 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 50 of file menu.c.

51{
53}
struct AttrColor * simple_color_get(enum ColorId cid)
Get the colour of an object by its ID.
Definition simple.c:95
@ MT_COLOR_NORMAL
Plain text.
Definition color.h:53
+ 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 PostponeData *pd = menu->mdata;
180 struct MailboxView *mv = pd->mailbox_view;
181 if (!mv || (line < 0))
182 return NULL;
183
184 struct Mailbox *m = mv->mailbox;
185 if (!m)
186 return NULL;
187
188 struct Email *e = mutt_get_virt_email(m, line);
189 if (!e)
190 return NULL;
191
192 if (e->attr_color)
193 return e->attr_color;
194
195 email_set_color(m, e);
196 return e->attr_color;
197}
View of a Mailbox.
Definition mview.h:40
struct Mailbox * mailbox
Current Mailbox.
Definition mview.h:51
Data to pass to the Postpone Functions.
Definition functions.h:37
struct MailboxView * mailbox_view
Postponed Mailbox view.
Definition functions.h:38
struct Menu * menu
Postponed Menu.
Definition functions.h:39
+ Here is the call graph for this function:
+ Here is the caller graph for this function: