NeoMutt  2023-03-22
Teaching an old dog new tricks
DOXYGEN
msgwin.h
Go to the documentation of this file.
1
23#ifndef MUTT_GUI_MSGWIN_H
24#define MUTT_GUI_MSGWIN_H
25
26#include <stdio.h>
27#include "color/lib.h"
28
29void msgwin_clear_text(void);
30struct MuttWindow *msgwin_new (void);
31const char * msgwin_get_text (void);
32size_t msgwin_get_width (void);
33struct MuttWindow *msgwin_get_window(void);
34void msgwin_set_height(short height);
35void msgwin_set_text (enum ColorId cid, const char *text);
36
37#endif /* MUTT_GUI_MSGWIN_H */
Color and attribute parsing.
ColorId
List of all colored objects.
Definition: color.h:38
void msgwin_set_text(enum ColorId cid, const char *text)
Set the text for the Message Window.
Definition: msgwin.c:233
void msgwin_set_height(short height)
Resize the Message Window.
Definition: msgwin.c:283
const char * msgwin_get_text(void)
Get the text from the Message Window.
Definition: msgwin.c:216
size_t msgwin_get_width(void)
Get the width of the Message Window.
Definition: msgwin.c:269
struct MuttWindow * msgwin_get_window(void)
Get the Message Window pointer.
Definition: msgwin.c:260
struct MuttWindow * msgwin_new(void)
Create the Message Window.
Definition: msgwin.c:197
void msgwin_clear_text(void)
Clear the text in the Message Window.
Definition: msgwin.c:249