lib: add last_child flag to thread information
With that flag it's possible to reconstruct the entire thread tree structure in mu4e.
This commit is contained in:
@ -163,9 +163,10 @@ enum _MuMsgIterThreadProp {
|
||||
|
||||
MU_MSG_ITER_THREAD_PROP_ROOT = 1 << 0,
|
||||
MU_MSG_ITER_THREAD_PROP_FIRST_CHILD = 1 << 1,
|
||||
MU_MSG_ITER_THREAD_PROP_EMPTY_PARENT = 1 << 2,
|
||||
MU_MSG_ITER_THREAD_PROP_DUP = 1 << 3,
|
||||
MU_MSG_ITER_THREAD_PROP_HAS_CHILD = 1 << 4
|
||||
MU_MSG_ITER_THREAD_PROP_LAST_CHILD = 1 << 2,
|
||||
MU_MSG_ITER_THREAD_PROP_EMPTY_PARENT = 1 << 3,
|
||||
MU_MSG_ITER_THREAD_PROP_DUP = 1 << 4,
|
||||
MU_MSG_ITER_THREAD_PROP_HAS_CHILD = 1 << 5
|
||||
};
|
||||
typedef guint8 MuMsgIterThreadProp;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user