Attachment Selection Dialog. More...
#include "config.h"
#include <stdbool.h>
#include <stdio.h>
#include "mutt/lib.h"
#include "config/lib.h"
#include "email/lib.h"
#include "core/lib.h"
#include "gui/lib.h"
#include "lib.h"
#include "color/lib.h"
#include "expando/lib.h"
#include "key/lib.h"
#include "menu/lib.h"
#include "attach.h"
#include "attachments.h"
#include "functions.h"
#include "hdrline.h"
#include "hook.h"
#include "mutt_logging.h"
#include "muttlib.h"
#include "mview.h"
#include "private_data.h"
#include "recvattach.h"
Go to the source code of this file.
Functions | |
void | attach_F (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: Filename in header - Implements ExpandoRenderData::get_string() -. | |
static int | attach_config_observer (struct NotifyCallback *nc) |
Notification that a Config Variable has changed - Implements observer_t -. | |
void | attach_c (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: Requires conversion flag - Implements ExpandoRenderData::get_string() -. | |
void | attach_C (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: Charset - Implements ExpandoRenderData::get_string() -. | |
void | attach_d (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: Description - Implements ExpandoRenderData::get_string() -. | |
long | attach_D_num (const struct ExpandoNode *node, void *data, MuttFormatFlags flags) |
Attachment: Deleted - Implements ExpandoRenderData::get_number() -. | |
void | attach_D (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: Deleted - Implements ExpandoRenderData::get_string() -. | |
void | attach_e (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: MIME type - Implements ExpandoRenderData::get_string() -. | |
void | attach_f (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: Filename - Implements ExpandoRenderData::get_string() -. | |
void | attach_I (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: Disposition flag - Implements ExpandoRenderData::get_string() -. | |
void | attach_m (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: Major MIME type - Implements ExpandoRenderData::get_string() -. | |
void | attach_M (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: MIME subtype - Implements ExpandoRenderData::get_string() -. | |
long | attach_n_num (const struct ExpandoNode *node, void *data, MuttFormatFlags flags) |
Attachment: Index number - Implements ExpandoRenderData::get_number() -. | |
long | attach_Q_num (const struct ExpandoNode *node, void *data, MuttFormatFlags flags) |
Attachment: Attachment counting - Implements ExpandoRenderData::get_number() -. | |
void | attach_Q (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: Attachment counting - Implements ExpandoRenderData::get_string() -. | |
long | attach_s_num (const struct ExpandoNode *node, void *data, MuttFormatFlags flags) |
Attachment: Size - Implements ExpandoRenderData::get_number() -. | |
void | attach_s (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: Size - Implements ExpandoRenderData::get_string() -. | |
long | attach_t_num (const struct ExpandoNode *node, void *data, MuttFormatFlags flags) |
Attachment: Is Tagged - Implements ExpandoRenderData::get_number() -. | |
void | attach_t (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: Is Tagged - Implements ExpandoRenderData::get_string() -. | |
void | attach_T (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: Tree characters - Implements ExpandoRenderData::get_string() -. | |
long | attach_u_num (const struct ExpandoNode *node, void *data, MuttFormatFlags flags) |
Attachment: Unlink flag - Implements ExpandoRenderData::get_number() -. | |
void | attach_u (const struct ExpandoNode *node, void *data, MuttFormatFlags flags, struct Buffer *buf) |
Attachment: Unlink flag - Implements ExpandoRenderData::get_string() -. | |
long | attach_X_num (const struct ExpandoNode *node, void *data, MuttFormatFlags flags) |
Attachment: Number of MIME parts - Implements ExpandoRenderData::get_number() -. | |
static int | attach_make_entry (struct Menu *menu, int line, int max_cols, struct Buffer *buf) |
Format an Attachment for the Menu - Implements Menu::make_entry() -. | |
static int | attach_tag (struct Menu *menu, int sel, int act) |
Tag an attachment - Implements Menu::tag() -. | |
static int | attach_window_observer (struct NotifyCallback *nc) |
Notification that a Window has changed - Implements observer_t -. | |
void | dlg_attachment (struct ConfigSubset *sub, struct MailboxView *mv, struct Email *e, FILE *fp, bool attach_msg) |
Show the attachments in a Menu -. | |
Variables | |
static const struct Mapping | AttachmentHelp [] |
Help Bar for the Attachment selection dialog. | |
const struct ExpandoRenderData | AttachRenderData [] |
Callbacks for Attachment Expandos. | |
Attachment Selection Dialog.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file dlg_attach.c.
|
static |
const struct ExpandoRenderData AttachRenderData[] |
Callbacks for Attachment Expandos.
Definition at line 621 of file dlg_attach.c.