NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
cbar.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_COMPOSE_CBAR_H
24
#define MUTT_COMPOSE_CBAR_H
25
26
struct
ComposeSharedData
;
27
struct
NotifyCallback
;
28
29
struct
MuttWindow
*
cbar_new
(
struct
ComposeSharedData
*shared);
30
31
int
cbar_color_observer
(
struct
NotifyCallback
*nc);
32
int
cbar_config_observer
(
struct
NotifyCallback
*nc);
33
34
#endif
/* MUTT_COMPOSE_CBAR_H */
cbar_new
struct MuttWindow * cbar_new(struct ComposeSharedData *shared)
Create the Compose Bar (status).
Definition
cbar.c:226
cbar_color_observer
int cbar_color_observer(struct NotifyCallback *nc)
Notification that a Color has changed - Implements observer_t -.
Definition
cbar.c:125
cbar_config_observer
int cbar_config_observer(struct NotifyCallback *nc)
Notification that a Config Variable has changed - Implements observer_t -.
Definition
cbar.c:151
ComposeSharedData
Shared Compose Data.
Definition
shared_data.h:35
MuttWindow
Definition
mutt_window.h:129
NotifyCallback
Data passed to a notification function.
Definition
observer.h:34