NeoMutt
2025-09-05-55-g97fc89
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
sort.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_BROWSER_SORT_H
24
#define MUTT_BROWSER_SORT_H
25
29
enum
BrowserSortType
30
{
31
BROWSER_SORT_ALPHA
,
32
BROWSER_SORT_COUNT
,
33
BROWSER_SORT_DATE
,
34
BROWSER_SORT_DESC
,
35
BROWSER_SORT_NEW
,
36
BROWSER_SORT_SIZE
,
37
BROWSER_SORT_UNSORTED
,
38
};
39
40
#endif
/* MUTT_BROWSER_SORT_H */
BrowserSortType
BrowserSortType
Methods for sorting the Browser.
Definition
sort.h:30
BROWSER_SORT_ALPHA
@ BROWSER_SORT_ALPHA
Sort by name.
Definition
sort.h:31
BROWSER_SORT_UNSORTED
@ BROWSER_SORT_UNSORTED
Sort into the raw order.
Definition
sort.h:37
BROWSER_SORT_COUNT
@ BROWSER_SORT_COUNT
Sort by total message count.
Definition
sort.h:32
BROWSER_SORT_DATE
@ BROWSER_SORT_DATE
Sort by date.
Definition
sort.h:33
BROWSER_SORT_NEW
@ BROWSER_SORT_NEW
Sort by count of new messages.
Definition
sort.h:35
BROWSER_SORT_SIZE
@ BROWSER_SORT_SIZE
Sort by size.
Definition
sort.h:36
BROWSER_SORT_DESC
@ BROWSER_SORT_DESC
Sort by description.
Definition
sort.h:34