NeoMutt  2025-12-11-800-ga0ee0f
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
names.c
Go to the documentation of this file.
1
22
28
29#include "config.h"
30#include "mutt/lib.h"
31#include "config/lib.h"
32#include "email/lib.h"
33#include "core/lib.h"
34#include "gui/lib.h"
35#include "lib.h"
36#include "color/lib.h"
37#include "menu/lib.h"
38
39#define DEBUG_NAME(NAME) \
40 case NAME: \
41 return #NAME
42
43#define DEBUG_DEFAULT \
44 default: \
45 return "UNKNOWN"
46
52const char *name_command_id(enum CommandId id)
53{
54 switch (id)
55 {
146 }
147}
148
171
191
198{
199 switch (disp)
200 {
206 }
207}
208
244
269
299
305const char *name_notify_global(int id)
306{
307 switch (id)
308 {
313 }
314}
315
321const char *name_notify_config(int id)
322{
323 switch (id)
324 {
329 }
330}
331
352
358const char *name_notify_mview(int id)
359{
360 switch (id)
361 {
366 }
367}
368
410
416const char *name_window_size(const struct MuttWindow *win)
417{
418 if (!win)
419 return "NULL";
420
421 switch (win->size)
422 {
427 }
428}
429
435const char *name_color_id(int cid)
436{
437 if (cid < 0)
438 return "UNSET";
439
440 switch (cid)
441 {
504 }
505}
Color and attribute parsing.
@ MT_COLOR_SIDEBAR_SPOOL_FILE
$spool_file (Spool mailbox)
Definition color.h:75
@ MT_COLOR_SIDEBAR_DIVIDER
Line dividing sidebar from the index/pager.
Definition color.h:69
@ MT_COLOR_MARKERS
Pager: markers, line continuation.
Definition color.h:51
@ MT_COLOR_COMPOSE_SECURITY_ENCRYPT
Mail will be encrypted.
Definition color.h:43
@ MT_COLOR_MESSAGE
Informational message.
Definition color.h:52
@ MT_COLOR_INDEX_AUTHOR
Index: author field.
Definition color.h:87
@ MT_COLOR_MAX
Definition color.h:97
@ MT_COLOR_QUOTED0
Pager: quoted text, level 0.
Definition color.h:57
@ MT_COLOR_SIDEBAR_NEW
Mailbox with new mail.
Definition color.h:73
@ MT_COLOR_HEADER
Message headers (takes a pattern)
Definition color.h:48
@ MT_COLOR_STATUS
Status bar (takes a pattern)
Definition color.h:78
@ MT_COLOR_SIDEBAR_UNREAD
Mailbox with unread mail.
Definition color.h:76
@ MT_COLOR_INDEX_SIZE
Index: size field.
Definition color.h:93
@ MT_COLOR_INDICATOR
Selected item in list.
Definition color.h:49
@ MT_COLOR_STRIPE_EVEN
Stripes: even lines of the Help Page.
Definition color.h:79
@ MT_COLOR_ERROR
Error message.
Definition color.h:46
@ MT_COLOR_NONE
No colour.
Definition color.h:36
@ MT_COLOR_COMPOSE_SECURITY_NONE
Mail will not be encrypted or signed.
Definition color.h:44
@ MT_COLOR_SIDEBAR_ORDINARY
Mailbox with no new or flagged messages.
Definition color.h:74
@ MT_COLOR_QUOTED1
Pager: quoted text, level 1.
Definition color.h:58
@ MT_COLOR_INDEX_TAGS
Index: tags field (g, J)
Definition color.h:96
@ MT_COLOR_QUOTED3
Pager: quoted text, level 3.
Definition color.h:60
@ MT_COLOR_BOLD
Bold text.
Definition color.h:40
@ MT_COLOR_INDEX_SUBJECT
Index: subject field.
Definition color.h:94
@ MT_COLOR_BODY
Pager: highlight body of message (takes a pattern)
Definition color.h:39
@ MT_COLOR_INDEX_DATE
Index: date field.
Definition color.h:89
@ MT_COLOR_QUOTED6
Pager: quoted text, level 6.
Definition color.h:63
@ MT_COLOR_PROGRESS
Progress bar.
Definition color.h:55
@ MT_COLOR_COMPOSE_SECURITY_BOTH
Mail will be encrypted and signed.
Definition color.h:42
@ MT_COLOR_QUOTED8
Pager: quoted text, level 8.
Definition color.h:65
@ MT_COLOR_SIDEBAR_BACKGROUND
Background colour for the Sidebar.
Definition color.h:68
@ MT_COLOR_INDEX_TAG
Index: tag field (G)
Definition color.h:95
@ MT_COLOR_HDRDEFAULT
Header default colour.
Definition color.h:47
@ MT_COLOR_OPTIONS
Options in prompt.
Definition color.h:54
@ MT_COLOR_TREE
Index: tree-drawing characters.
Definition color.h:82
@ MT_COLOR_QUOTED7
Pager: quoted text, level 7.
Definition color.h:64
@ MT_COLOR_NORMAL
Plain text.
Definition color.h:53
@ MT_COLOR_ATTACH_HEADERS
MIME attachment test (takes a pattern)
Definition color.h:38
@ MT_COLOR_SEARCH
Pager: search matches.
Definition color.h:67
@ MT_COLOR_COMPOSE_SECURITY_SIGN
Mail will be signed.
Definition color.h:45
@ MT_COLOR_INDEX_LABEL
Index: label field.
Definition color.h:91
@ MT_COLOR_ITALIC
Italic text.
Definition color.h:50
@ MT_COLOR_QUOTED4
Pager: quoted text, level 4.
Definition color.h:61
@ MT_COLOR_STRIPE_ODD
Stripes: odd lines of the Help Page.
Definition color.h:80
@ MT_COLOR_PROMPT
Question/user input.
Definition color.h:56
@ MT_COLOR_COMPOSE_HEADER
Header labels, e.g. From:
Definition color.h:41
@ MT_COLOR_INDEX
Index: default colour.
Definition color.h:86
@ MT_COLOR_QUOTED9
Pager: quoted text, level 9.
Definition color.h:66
@ MT_COLOR_QUOTED2
Pager: quoted text, level 2.
Definition color.h:59
@ MT_COLOR_ATTACHMENT
MIME attachments text (entire line)
Definition color.h:37
@ MT_COLOR_SIDEBAR_INDICATOR
Current open mailbox.
Definition color.h:72
@ MT_COLOR_SIDEBAR_HIGHLIGHT
Select cursor.
Definition color.h:71
@ MT_COLOR_WARNING
Warning messages.
Definition color.h:84
@ MT_COLOR_UNDERLINE
Underlined text.
Definition color.h:83
@ MT_COLOR_INDEX_NUMBER
Index: index number.
Definition color.h:92
@ MT_COLOR_SIGNATURE
Pager: signature lines.
Definition color.h:77
@ MT_COLOR_INDEX_FLAGS
Index: flags field.
Definition color.h:90
@ MT_COLOR_QUOTED5
Pager: quoted text, level 5.
Definition color.h:62
@ MT_COLOR_SIDEBAR_FLAGGED
Mailbox with flagged messages.
Definition color.h:70
@ MT_COLOR_TILDE
Pager: empty lines after message.
Definition color.h:81
@ MT_COLOR_INDEX_COLLAPSED
Index: number of messages in collapsed thread.
Definition color.h:88
CommandId
ID of Command.
Definition command.h:58
@ CMD_CLOSE_HOOK
:close-hook
Definition command.h:70
@ CMD_MIME_LOOKUP
:mime-lookup
Definition command.h:95
@ CMD_SPAM
:spam
Definition command.h:114
@ CMD_SUBSCRIBE
:subscribe
Definition command.h:117
@ CMD_UNSUBSCRIBE
:unsubscribe
Definition command.h:145
@ CMD_UNALIAS
:unalias
Definition command.h:123
@ CMD_IGNORE
:ignore
Definition command.h:85
@ CMD_GROUP
:group
Definition command.h:79
@ CMD_SEND_HOOK
:send-hook
Definition command.h:107
@ CMD_CD
:cd
Definition command.h:68
@ CMD_TAG_TRANSFORMS
:tag-transforms
Definition command.h:120
@ CMD_FCC_SAVE_HOOK
:fcc-save-hook
Definition command.h:76
@ CMD_LUA_SOURCE
:lua-source
Definition command.h:89
@ CMD_ICONV_HOOK
:iconv-hook
Definition command.h:82
@ CMD_ALIAS
:alias
Definition command.h:61
@ CMD_IFNDEF
:ifndef
Definition command.h:84
@ CMD_UNCOLOR
:uncolor
Definition command.h:129
@ CMD_COLOR
:color
Definition command.h:71
@ CMD_EXEC
:exec
Definition command.h:74
@ CMD_INDEX_FORMAT_HOOK
:index-format-hook
Definition command.h:86
@ CMD_UNMACRO
:unmacro
Definition command.h:135
@ CMD_UNSUBJECT_REGEX
:unsubject-regex
Definition command.h:144
@ CMD_SIDEBAR_PIN
:sidebar-pin
Definition command.h:111
@ CMD_SCORE
:score
Definition command.h:105
@ CMD_SHUTDOWN_HOOK
:shutdown-hook
Definition command.h:110
@ CMD_SETENV
:setenv
Definition command.h:109
@ CMD_IFDEF
:ifdef
Definition command.h:83
@ CMD_UNSUBSCRIBE_FROM
:unsubscribe-from
Definition command.h:146
@ CMD_MACRO
:macro
Definition command.h:90
@ CMD_MAILTO_ALLOW
:mailto-allow
Definition command.h:92
@ CMD_MY_HEADER
:my-header
Definition command.h:97
@ CMD_SOURCE
:source
Definition command.h:113
@ CMD_FCC_HOOK
:fcc-hook
Definition command.h:75
@ CMD_SIDEBAR_UNPIN
:sidebar-unpin
Definition command.h:112
@ CMD_LISTS
:lists
Definition command.h:87
@ CMD_MESSAGE_HOOK
:message-hook
Definition command.h:94
@ CMD_SEND2_HOOK
:send2-hook
Definition command.h:106
@ CMD_ATTACHMENTS
:attachments
Definition command.h:65
@ CMD_ECHO
:echo
Definition command.h:73
@ CMD_SUBSCRIBE_TO
:subscribe-to
Definition command.h:118
@ CMD_UNMIME_LOOKUP
:unmime-lookup
Definition command.h:138
@ CMD_PUSH
:push
Definition command.h:101
@ CMD_REPLY_HOOK
:reply-hook
Definition command.h:102
@ CMD_VERSION
:version
Definition command.h:147
@ CMD_LUA
:lua
Definition command.h:88
@ CMD_STARTUP_HOOK
:startup-hook
Definition command.h:115
@ CMD_AUTO_VIEW
:auto-view
Definition command.h:66
@ CMD_UNALTERNATIVE_ORDER
:unalternative-order
Definition command.h:125
@ CMD_UNAUTO_VIEW
:unauto-view
Definition command.h:127
@ CMD_CHARSET_HOOK
:charset-hook
Definition command.h:69
@ CMD_UNHEADER_ORDER
:unheader-order
Definition command.h:131
@ CMD_HOOKS
:hooks
Definition command.h:81
@ CMD_NOSPAM
:nospam
Definition command.h:99
@ CMD_UNGROUP
:ungroup
Definition command.h:130
@ CMD_NONE
No Command.
Definition command.h:59
@ CMD_TAG_FORMATS
:tag-formats
Definition command.h:119
@ CMD_MAILBOXES
:mailboxes
Definition command.h:91
@ CMD_ALTERNATES
:alternates
Definition command.h:62
@ CMD_UNIGNORE
:unignore
Definition command.h:133
@ CMD_UNLISTS
:unlists
Definition command.h:134
@ CMD_SAVE_HOOK
:save-hook
Definition command.h:104
@ CMD_FINISH
:finish
Definition command.h:77
@ CMD_ALTERNATIVE_ORDER
:alternative-order
Definition command.h:63
@ CMD_TIMEOUT_HOOK
:timeout-hook
Definition command.h:121
@ CMD_ACCOUNT_HOOK
:account-hook
Definition command.h:60
@ CMD_BIND
:bind
Definition command.h:67
@ CMD_MONO
:mono
Definition command.h:96
@ CMD_CRYPT_HOOK
:crypt-hook
Definition command.h:72
@ CMD_UNSETENV
:unsetenv
Definition command.h:143
@ CMD_UNALTERNATES
:unalternates
Definition command.h:124
@ CMD_MBOX_HOOK
:mbox-hook
Definition command.h:93
@ CMD_UNSCORE
:unscore
Definition command.h:141
@ CMD_UNMAILBOXES
:unmailboxes
Definition command.h:136
@ CMD_UNATTACHMENTS
:unattachments
Definition command.h:126
@ CMD_FOLDER_HOOK
:folder-hook
Definition command.h:78
@ CMD_UNMONO
:unmono
Definition command.h:139
@ CMD_SUBJECT_REGEX
:subject-regex
Definition command.h:116
@ CMD_HEADER_ORDER
:header-order
Definition command.h:80
@ CMD_UNHOOK
:unhook
Definition command.h:132
@ CMD_UNBIND
:unbind
Definition command.h:128
@ CMD_UNMAILTO_ALLOW
:unmailto-allow
Definition command.h:137
@ CMD_RESET
:reset
Definition command.h:103
@ CMD_NAMED_MAILBOXES
:named-mailboxes
Definition command.h:98
@ CMD_TOGGLE
:toggle
Definition command.h:122
@ CMD_UNSET
:unset
Definition command.h:142
@ CMD_SET
:set
Definition command.h:108
@ CMD_OPEN_HOOK
:open-hook
Definition command.h:100
@ CMD_APPEND_HOOK
:append-hook
Definition command.h:64
@ CMD_UNMY_HEADER
:unmy-header
Definition command.h:140
Convenience wrapper for the config headers.
Convenience wrapper for the core headers.
@ NT_MAILBOX_UNTAG
Clear the 'last-tagged' pointer.
Definition mailbox.h:182
@ NT_MAILBOX_CHANGE
Mailbox has been changed.
Definition mailbox.h:175
@ NT_MAILBOX_RESORT
Email list needs resorting.
Definition mailbox.h:180
@ NT_MAILBOX_DELETE
Mailbox is about to be deleted.
Definition mailbox.h:173
@ NT_MAILBOX_INVALID
Email list was changed.
Definition mailbox.h:179
@ NT_MAILBOX_DELETE_ALL
All Mailboxes are about to be deleted.
Definition mailbox.h:174
@ NT_MAILBOX_UPDATE
Update internal tables.
Definition mailbox.h:181
@ NT_MAILBOX_ADD
Mailbox has been added.
Definition mailbox.h:172
MailboxType
Supported mailbox formats.
Definition mailbox.h:40
@ MUTT_NOTMUCH
'Notmuch' (virtual) Mailbox type
Definition mailbox.h:50
@ MUTT_MMDF
'mmdf' Mailbox type
Definition mailbox.h:45
@ MUTT_MAILBOX_ERROR
Error occurred examining Mailbox.
Definition mailbox.h:42
@ MUTT_POP
'POP3' Mailbox type
Definition mailbox.h:51
@ MUTT_MH
'MH' Mailbox type
Definition mailbox.h:46
@ MUTT_NNTP
'NNTP' (Usenet) Mailbox type
Definition mailbox.h:48
@ MUTT_IMAP
'IMAP' Mailbox type
Definition mailbox.h:49
@ MUTT_MBOX
'mbox' Mailbox type
Definition mailbox.h:44
@ MUTT_MAILBOX_ANY
Match any Mailbox type.
Definition mailbox.h:41
@ MUTT_COMPRESSED
Compressed file Mailbox type.
Definition mailbox.h:52
@ MUTT_UNKNOWN
Mailbox wasn't recognised.
Definition mailbox.h:43
@ MUTT_MAILDIR
'Maildir' Mailbox type
Definition mailbox.h:47
Convenience wrapper for the debug headers.
Structs that make up an email.
Convenience wrapper for the gui headers.
GUI present the user with a selectable list.
ContentEncoding
Content-Transfer-Encoding.
Definition mime.h:47
@ ENC_7BIT
7-bit text
Definition mime.h:49
@ ENC_UUENCODED
UUEncoded text.
Definition mime.h:54
@ ENC_OTHER
Encoding unknown.
Definition mime.h:48
@ ENC_BINARY
Binary.
Definition mime.h:53
@ ENC_BASE64
Base-64 encoded text.
Definition mime.h:52
@ ENC_8BIT
8-bit text
Definition mime.h:50
@ ENC_QUOTED_PRINTABLE
Quoted-printable text.
Definition mime.h:51
ContentType
Content-Type.
Definition mime.h:30
@ TYPE_AUDIO
Type: 'audio/*'.
Definition mime.h:32
@ TYPE_IMAGE
Type: 'image/*'.
Definition mime.h:34
@ TYPE_OTHER
Unknown Content-Type.
Definition mime.h:31
@ TYPE_MESSAGE
Type: 'message/*'.
Definition mime.h:35
@ TYPE_MODEL
Type: 'model/*'.
Definition mime.h:36
@ TYPE_MULTIPART
Type: 'multipart/*'.
Definition mime.h:37
@ TYPE_APPLICATION
Type: 'application/*'.
Definition mime.h:33
@ TYPE_TEXT
Type: 'text/*'.
Definition mime.h:38
@ TYPE_ANY
Type: '' or '.'.
Definition mime.h:40
@ TYPE_VIDEO
Type: 'video/*'.
Definition mime.h:39
ContentDisposition
Content-Disposition values.
Definition mime.h:61
@ DISP_ATTACH
Content is attached.
Definition mime.h:63
@ DISP_INLINE
Content is inline.
Definition mime.h:62
@ DISP_NONE
No preferred disposition.
Definition mime.h:65
@ DISP_FORM_DATA
Content is form-data.
Definition mime.h:64
Convenience wrapper for the library headers.
@ WT_CUSTOM
Window with a custom drawing function.
Definition mutt_window.h:94
@ WT_ROOT
Parent of All Windows.
Definition mutt_window.h:72
@ WT_DLG_ALIAS
Alias Dialog, dlg_alias()
Definition mutt_window.h:77
@ WT_ALL_DIALOGS
Container for All Dialogs (nested Windows)
Definition mutt_window.h:74
@ WT_DLG_BROWSER
Browser Dialog, dlg_browser()
Definition mutt_window.h:80
@ WT_MESSAGE
Window for messages/errors.
Definition mutt_window.h:98
@ WT_DLG_SMIME
Smime Dialog, dlg_smime()
Definition mutt_window.h:91
@ WT_DLG_QUERY
Query Dialog, dlg_query()
Definition mutt_window.h:90
@ WT_DLG_HISTORY
History Dialog, dlg_history()
Definition mutt_window.h:85
@ WT_DLG_PGP
Pgp Dialog, dlg_pgp()
Definition mutt_window.h:88
@ WT_CONTAINER
Invisible shaping container Window.
Definition mutt_window.h:73
@ WT_DLG_CERTIFICATE
Certificate Dialog, dlg_certificate()
Definition mutt_window.h:81
@ WT_DLG_COMPOSE
Compose Dialog, dlg_compose()
Definition mutt_window.h:82
@ WT_DLG_INDEX
Index Dialog, dlg_index()
Definition mutt_window.h:86
@ WT_PAGER
A panel containing the Pager Window.
Definition mutt_window.h:99
@ WT_DLG_GPGME
GPGME Dialog, dlg_gpgme()
Definition mutt_window.h:83
@ WT_STATUS_BAR
Status Bar containing extra info about the Index/Pager/etc.
@ WT_HELP_BAR
Help Bar containing list of useful key bindings.
Definition mutt_window.h:95
@ WT_DLG_POSTPONE
Postpone Dialog, dlg_postpone()
Definition mutt_window.h:89
@ WT_INDEX
A panel containing the Index Window.
Definition mutt_window.h:96
@ WT_DLG_ATTACH
Attach Dialog, dlg_attach()
Definition mutt_window.h:78
@ WT_SIDEBAR
Side panel containing Accounts or groups of data.
@ WT_DLG_PAGER
Pager Dialog, dlg_pager()
Definition mutt_window.h:84
@ WT_DLG_AUTOCRYPT
Autocrypt Dialog, dlg_autocrypt()
Definition mutt_window.h:79
@ WT_MENU
An Window containing a Menu.
Definition mutt_window.h:97
@ WT_DLG_PATTERN
Pattern Dialog, dlg_pattern()
Definition mutt_window.h:87
@ MUTT_WIN_SIZE_FIXED
Window has a fixed size.
Definition mutt_window.h:47
@ MUTT_WIN_SIZE_MINIMISE
Window size depends on its children.
Definition mutt_window.h:49
@ MUTT_WIN_SIZE_MAXIMISE
Window wants as much space as possible.
Definition mutt_window.h:48
@ NT_MVIEW_DELETE
The Mview is about to be destroyed.
Definition mview.h:63
@ NT_MVIEW_CHANGE
The Mview has changed.
Definition mview.h:64
@ NT_MVIEW_ADD
The Mview has been opened.
Definition mview.h:62
#define DEBUG_NAME(NAME)
Definition names.c:39
const char * name_content_encoding(enum ContentEncoding enc)
Get the name of a content encoding.
Definition names.c:177
const char * name_window_size(const struct MuttWindow *win)
Get the name of a window size.
Definition names.c:416
const char * name_notify_global(int id)
Get the name of a global notification type.
Definition names.c:305
const char * name_mailbox_type(enum MailboxType type)
Get the name of a mailbox type.
Definition names.c:250
const char * name_menu_type(enum MenuType mt)
Get the name of a menu type.
Definition names.c:275
const char * name_command_id(enum CommandId id)
Get the name of a Command id.
Definition names.c:52
const char * name_notify_type(enum NotifyType type)
Get the name of a notification type.
Definition names.c:214
const char * name_window_type(const struct MuttWindow *win)
Get the name of a window type.
Definition names.c:374
const char * name_notify_mview(int id)
Get the name of a mailbox view notification type.
Definition names.c:358
const char * name_notify_config(int id)
Get the name of a config notification type.
Definition names.c:321
const char * name_content_type(enum ContentType type)
Get the name of a content type.
Definition names.c:154
const char * name_content_disposition(enum ContentDisposition disp)
Get the name of a content disposition.
Definition names.c:197
const char * name_notify_mailbox(int id)
Get the name of a mailbox notification type.
Definition names.c:337
#define DEBUG_DEFAULT
Definition names.c:43
const char * name_color_id(int cid)
Get the name of a color ID.
Definition names.c:435
@ NT_GLOBAL_STARTUP
NeoMutt is initialised.
Definition neomutt.h:69
@ NT_GLOBAL_COMMAND
A NeoMutt command.
Definition neomutt.h:71
@ NT_GLOBAL_SHUTDOWN
NeoMutt is about to close.
Definition neomutt.h:70
NotifyType
Notification Types.
Definition notify_type.h:34
@ NT_TIMEOUT
Timeout has occurred.
Definition notify_type.h:57
@ NT_WINDOW
MuttWindow has changed, NotifyWindow, EventWindow.
Definition notify_type.h:58
@ NT_MENU
Menu has changed, MenuRedrawFlags.
Definition notify_type.h:52
@ NT_ATTACH
Attachment command changed, NotifyAttach.
Definition notify_type.h:39
@ NT_CONFIG
Config has changed, NotifyConfig, EventConfig.
Definition notify_type.h:43
@ NT_COLOR
Colour has changed, NotifyColor, EventColor.
Definition notify_type.h:41
@ NT_EMAIL
Email has changed, NotifyEmail, EventEmail.
Definition notify_type.h:44
@ NT_BINDING
Key binding has changed, NotifyBinding, EventBinding.
Definition notify_type.h:40
@ NT_ENVELOPE
Envelope has changed, NotifyEnvelope.
Definition notify_type.h:45
@ NT_SCORE
Email scoring has changed.
Definition notify_type.h:55
@ NT_MAILBOX
Mailbox has changed, NotifyMailbox, EventMailbox.
Definition notify_type.h:50
@ NT_PAGER
Pager data has changed, NotifyPager, PagerPrivateData.
Definition notify_type.h:54
@ NT_COMMAND
A Command has been executed, Command.
Definition notify_type.h:42
@ NT_HEADER
A header has changed, NotifyHeader EventHeader.
Definition notify_type.h:47
@ NT_ACCOUNT
Account has changed, NotifyAccount, EventAccount.
Definition notify_type.h:36
@ NT_INDEX
Index data has changed, NotifyIndex, IndexSharedData.
Definition notify_type.h:48
@ NT_SUBJECTRX
Subject Regex has changed, NotifySubjectRx.
Definition notify_type.h:56
@ NT_ALL
Register for all notifications.
Definition notify_type.h:35
@ NT_MVIEW
MailboxView has changed, NotifyMview, EventMview.
Definition notify_type.h:51
@ NT_GLOBAL
Not object-related, NotifyGlobal.
Definition notify_type.h:46
@ NT_ALTERN
Alternates command changed, NotifyAlternates.
Definition notify_type.h:38
@ NT_RESIZE
Window has been resized.
Definition notify_type.h:53
@ NT_ALIAS
Alias has changed, NotifyAlias, EventAlias.
Definition notify_type.h:37
enum MuttWindowSize size
Type of Window, e.g. MUTT_WIN_SIZE_FIXED.
enum WindowType type
Window type, e.g. WT_SIDEBAR.
@ NT_CONFIG_DELETED
Config item has been deleted.
Definition subset.h:63
@ NT_CONFIG_RESET
Config item has been reset to initial, or parent, value.
Definition subset.h:62
@ NT_CONFIG_SET
Config item has been set.
Definition subset.h:61
MenuType
Types of GUI selections.
Definition type.h:33
@ MENU_INDEX
Index panel (list of emails)
Definition type.h:44
@ MENU_DIALOG
Simple Dialog.
Definition type.h:41
@ MENU_ATTACH
Select an attachment.
Definition type.h:35
@ MENU_QUERY
Select from results of external query.
Definition type.h:48
@ MENU_BROWSER
General file/mailbox browser.
Definition type.h:39
@ MENU_AUTOCRYPT
Autocrypt Account menu.
Definition type.h:37
@ MENU_COMPOSE
Compose an email.
Definition type.h:40
@ MENU_PGP
PGP encryption menu.
Definition type.h:46
@ MENU_GENERIC
Generic selection list.
Definition type.h:43
@ MENU_PAGER
Pager pager (email viewer)
Definition type.h:45
@ MENU_SMIME
SMIME encryption menu.
Definition type.h:50
@ MENU_MAX
Definition type.h:51
@ MENU_EDITOR
Text entry area.
Definition type.h:42
@ MENU_POSTPONE
Select a postponed email.
Definition type.h:47
@ MENU_ALIAS
Select an email address by its alias.
Definition type.h:34