NeoMutt  2024-12-12-14-g7b49f7
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:1405
struct Email * mutt_get_virt_email(struct Mailbox *m, int vnum)
Get a virtual Email.
Definition: mview.c:417
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.
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:95
@ MT_COLOR_NORMAL
Plain text.
Definition: color.h:55
+ 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 178 of file dlg_postpone.c.

179{
180 struct PostponeData *pd = menu->mdata;
181 struct MailboxView *mv = pd->mailbox_view;
182 if (!mv || (line < 0))
183 return NULL;
184
185 struct Mailbox *m = mv->mailbox;
186 if (!m)
187 return NULL;
188
189 struct Email *e = mutt_get_virt_email(m, line);
190 if (!e)
191 return NULL;
192
193 if (e->attr_color)
194 return e->attr_color;
195
196 email_set_color(m, e);
197 return e->attr_color;
198}
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:34
struct MailboxView * mailbox_view
Postponed Mailbox view.
Definition: functions.h:35
struct Menu * menu
Postponed Menu.
Definition: functions.h:36
+ Here is the call graph for this function:
+ Here is the caller graph for this function: