NeoMutt  2024-12-12-14-g7b49f7
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
pbar.c
Go to the documentation of this file.
1
62#include "config.h"
63#include <stdio.h>
64#include <sys/stat.h>
65#include "mutt/lib.h"
66#include "config/lib.h"
67#include "core/lib.h"
68#include "gui/lib.h"
69#include "pbar.h"
70#include "lib.h"
71#include "color/lib.h"
72#include "expando/lib.h"
73#include "index/lib.h"
74#include "display.h"
75#include "mview.h"
76#include "private_data.h"
77
82{
86};
87
91static int pbar_recalc(struct MuttWindow *win)
92{
93 struct PBarPrivateData *pbar_data = win->wdata;
94 struct IndexSharedData *shared = pbar_data->shared;
95 struct PagerPrivateData *priv = pbar_data->priv;
96 if (!priv || !priv->pview)
97 return 0;
98
99 struct Buffer *buf = buf_pool_get();
100 char pager_progress_str[65] = { 0 }; /* Lots of space for translations */
101
102 long offset;
103 if (priv->lines && (priv->cur_line <= priv->lines_used))
104 offset = priv->lines[priv->cur_line].offset;
105 else
106 offset = priv->bytes_read;
107
108 if (offset < (priv->st.st_size - 1))
109 {
110 const long percent = (100 * offset) / priv->st.st_size;
111 /* L10N: Pager position percentage.
112 `%ld` is the number, `%%` is the percent symbol.
113 They may be reordered, or space inserted, if you wish. */
114 snprintf(pager_progress_str, sizeof(pager_progress_str), _("%ld%%"), percent);
115 }
116 else
117 {
118 const char *msg = (priv->top_line == 0) ?
119 /* L10N: Status bar message: the entire email is visible in the pager */
120 _("all") :
121 /* L10N: Status bar message: the end of the email is visible in the pager */
122 _("end");
123 mutt_str_copy(pager_progress_str, msg, sizeof(pager_progress_str));
124 }
125
126 if ((priv->pview->mode == PAGER_MODE_EMAIL) || (priv->pview->mode == PAGER_MODE_ATTACH_E))
127 {
128 int msg_in_pager = shared->mailbox_view ? shared->mailbox_view->msg_in_pager : -1;
129
130 const struct Expando *c_pager_format = cs_subset_expando(shared->sub, "pager_format");
131 mutt_make_string(buf, win->state.cols, c_pager_format, shared->mailbox, msg_in_pager,
132 shared->email, MUTT_FORMAT_NO_FLAGS, pager_progress_str);
133 }
134 else
135 {
136 buf_printf(buf, "%s (%s)", priv->pview->banner, pager_progress_str);
137 }
138
139 if (!mutt_str_equal(buf_string(buf), pbar_data->pager_format))
140 {
141 mutt_str_replace(&pbar_data->pager_format, buf_string(buf));
142 win->actions |= WA_REPAINT;
143 }
144
145 buf_pool_release(&buf);
146 return 0;
147}
148
152static int pbar_repaint(struct MuttWindow *win)
153{
154 struct PBarPrivateData *pbar_data = win->wdata;
155
156 mutt_window_move(win, 0, 0);
159
160 mutt_window_move(win, 0, 0);
161 mutt_draw_statusline(win, win->state.cols, pbar_data->pager_format,
162 mutt_str_len(pbar_data->pager_format));
164
165 mutt_debug(LL_DEBUG5, "repaint done\n");
166 return 0;
167}
168
173{
174 if (nc->event_type != NT_COLOR)
175 return 0;
176 if (!nc->global_data || !nc->event_data)
177 return -1;
178
179 struct EventColor *ev_c = nc->event_data;
180 enum ColorId cid = ev_c->cid;
181
182 if ((cid != MT_COLOR_STATUS) && (cid != MT_COLOR_NORMAL) && (cid != MT_COLOR_MAX))
183 return 0;
184
185 struct MuttWindow *win_pbar = nc->global_data;
186 win_pbar->actions |= WA_REPAINT;
187 mutt_debug(LL_DEBUG5, "color done, request WA_REPAINT\n");
188
189 return 0;
190}
191
196{
197 if (nc->event_type != NT_CONFIG)
198 return 0;
199 if (!nc->global_data || !nc->event_data)
200 return -1;
201
202 struct EventConfig *ev_c = nc->event_data;
203 if (!mutt_str_equal(ev_c->name, "pager_format"))
204 return 0;
205
206 struct MuttWindow *win_pbar = nc->global_data;
207 win_pbar->actions |= WA_RECALC;
208 mutt_debug(LL_DEBUG5, "config done, request WA_RECALC\n");
209
210 return 0;
211}
212
223{
224 if (!nc->global_data)
225 return -1;
226
227 struct MuttWindow *win_pbar = nc->global_data;
228 win_pbar->actions |= WA_RECALC;
229 mutt_debug(LL_DEBUG5, "index done, request WA_RECALC\n");
230
231 return 0;
232}
233
238{
239 if (nc->event_type != NT_PAGER)
240 return 0;
241 if (!nc->global_data)
242 return -1;
243
244 struct MuttWindow *win_pbar = nc->global_data;
245
247 {
248 win_pbar->actions |= WA_RECALC;
249 mutt_debug(LL_DEBUG5, "pager done, request WA_RECALC\n");
250 }
251
252 return 0;
253}
254
259{
260 if (nc->event_type != NT_WINDOW)
261 return 0;
262 if (!nc->global_data || !nc->event_data)
263 return -1;
264
265 struct MuttWindow *win_pbar = nc->global_data;
266 struct EventWindow *ev_w = nc->event_data;
267 if (ev_w->win != win_pbar)
268 return 0;
269
271 {
272 win_pbar->actions |= WA_RECALC | WA_REPAINT;
273 mutt_debug(LL_NOTIFY, "window state done, request WA_RECALC\n");
274 }
275 else if (nc->event_subtype == NT_WINDOW_DELETE)
276 {
277 struct PBarPrivateData *pbar_data = win_pbar->wdata;
278 struct IndexSharedData *shared = pbar_data->shared;
279
285
286 mutt_debug(LL_DEBUG5, "window delete done\n");
287 }
288
289 return 0;
290}
291
295static void pbar_data_free(struct MuttWindow *win, void **ptr)
296{
297 if (!ptr || !*ptr)
298 return;
299
300 struct PBarPrivateData *pbar_data = *ptr;
301
302 FREE(&pbar_data->pager_format);
303
304 FREE(ptr);
305}
306
314 struct PagerPrivateData *priv)
315{
316 struct PBarPrivateData *pbar_data = MUTT_MEM_CALLOC(1, struct PBarPrivateData);
317
318 pbar_data->shared = shared;
319 pbar_data->priv = priv;
320
321 return pbar_data;
322}
323
330struct MuttWindow *pbar_new(struct IndexSharedData *shared, struct PagerPrivateData *priv)
331{
335
336 win_pbar->wdata = pbar_data_new(shared, priv);
337 win_pbar->wdata_free = pbar_data_free;
338 win_pbar->recalc = pbar_recalc;
339 win_pbar->repaint = pbar_repaint;
340
346
347 return win_pbar;
348}
int buf_printf(struct Buffer *buf, const char *fmt,...)
Format a string overwriting a Buffer.
Definition: buffer.c:161
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition: buffer.h:96
Color and attribute parsing.
void mutt_color_observer_remove(observer_t callback, void *global_data)
Remove an observer.
Definition: notify.c:71
void mutt_color_observer_add(observer_t callback, void *global_data)
Add an observer.
Definition: notify.c:61
ColorId
List of all coloured objects.
Definition: color.h:36
@ MT_COLOR_MAX
Definition: color.h:90
@ MT_COLOR_STATUS
Status bar (takes a pattern)
Definition: color.h:71
@ MT_COLOR_NORMAL
Plain text.
Definition: color.h:55
const struct Expando * cs_subset_expando(const struct ConfigSubset *sub, const char *name)
Get an Expando config item by name.
Definition: config_type.c:357
Convenience wrapper for the config headers.
Convenience wrapper for the core headers.
Pager Display.
void mutt_draw_statusline(struct MuttWindow *win, int max_cols, const char *buf, size_t buflen)
Draw a highlighted status bar.
Definition: dlg_index.c:958
int mutt_make_string(struct Buffer *buf, size_t max_cols, const struct Expando *exp, struct Mailbox *m, int inpgr, struct Email *e, MuttFormatFlags flags, const char *progress)
Create formatted strings using mailbox expandos.
Definition: dlg_index.c:803
Parse Expando string.
#define mutt_debug(LEVEL,...)
Definition: logging2.h:89
static int pbar_window_observer(struct NotifyCallback *nc)
Notification that a Window has changed - Implements observer_t -.
Definition: pbar.c:258
static int pbar_color_observer(struct NotifyCallback *nc)
Notification that a Color has changed - Implements observer_t -.
Definition: pbar.c:172
static int pbar_config_observer(struct NotifyCallback *nc)
Notification that a Config Variable has changed - Implements observer_t -.
Definition: pbar.c:195
static int pbar_pager_observer(struct NotifyCallback *nc)
Notification that the Pager has changed - Implements observer_t -.
Definition: pbar.c:237
static int pbar_index_observer(struct NotifyCallback *nc)
Notification that the Index has changed - Implements observer_t -.
Definition: pbar.c:222
static int pbar_recalc(struct MuttWindow *win)
Recalculate the Window data - Implements MuttWindow::recalc() -.
Definition: pbar.c:91
static int pbar_repaint(struct MuttWindow *win)
Repaint the Window - Implements MuttWindow::repaint() -.
Definition: pbar.c:152
static void pbar_data_free(struct MuttWindow *win, void **ptr)
Free the private data - Implements MuttWindow::wdata_free() -.
Definition: pbar.c:295
Convenience wrapper for the gui headers.
GUI manage the main index (list of emails)
@ LL_DEBUG5
Log at debug level 5.
Definition: logging2.h:47
@ LL_NOTIFY
Log of notifications.
Definition: logging2.h:48
#define FREE(x)
Definition: memory.h:55
#define MUTT_MEM_CALLOC(n, type)
Definition: memory.h:40
Convenience wrapper for the library headers.
#define _(a)
Definition: message.h:28
bool notify_observer_remove(struct Notify *notify, const observer_t callback, const void *global_data)
Remove an observer from an object.
Definition: notify.c:230
bool notify_observer_add(struct Notify *notify, enum NotifyType type, observer_t callback, void *global_data)
Add an observer to an object.
Definition: notify.c:191
bool mutt_str_equal(const char *a, const char *b)
Compare two strings.
Definition: string.c:660
size_t mutt_str_len(const char *a)
Calculate the length of a string, safely.
Definition: string.c:496
size_t mutt_str_copy(char *dest, const char *src, size_t dsize)
Copy a string into a buffer (guaranteeing NUL-termination)
Definition: string.c:581
char * mutt_str_replace(char **p, const char *s)
Replace one string with another.
Definition: string.c:280
const struct AttrColor * mutt_curses_set_normal_backed_color_by_id(enum ColorId cid)
Set the colour and attributes by the colour id.
Definition: mutt_curses.c:63
const struct AttrColor * mutt_curses_set_color_by_id(enum ColorId cid)
Set the colour and attributes by the colour id.
Definition: mutt_curses.c:79
struct MuttWindow * mutt_window_new(enum WindowType type, enum MuttWindowOrientation orient, enum MuttWindowSize size, int cols, int rows)
Create a new Window.
Definition: mutt_window.c:182
int mutt_window_move(struct MuttWindow *win, int col, int row)
Move the cursor in a Window.
Definition: mutt_window.c:297
void mutt_window_clrtoeol(struct MuttWindow *win)
Clear to the end of the line.
Definition: mutt_window.c:244
#define WA_RECALC
Recalculate the contents of the Window.
Definition: mutt_window.h:110
@ WT_STATUS_BAR
Status Bar containing extra info about the Index/Pager/etc.
Definition: mutt_window.h:102
@ MUTT_WIN_ORIENT_VERTICAL
Window uses all available vertical space.
Definition: mutt_window.h:39
@ NT_WINDOW_STATE
Window state has changed, e.g. WN_VISIBLE.
Definition: mutt_window.h:230
@ NT_WINDOW_DELETE
Window is about to be deleted.
Definition: mutt_window.h:229
#define WA_REPAINT
Redraw the contents of the Window.
Definition: mutt_window.h:111
#define MUTT_WIN_SIZE_UNLIMITED
Use as much space as possible.
Definition: mutt_window.h:53
@ MUTT_WIN_SIZE_FIXED
Window has a fixed size.
Definition: mutt_window.h:48
View of a Mailbox.
@ NT_WINDOW
MuttWindow has changed, NotifyWindow, EventWindow.
Definition: notify_type.h:57
@ 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_PAGER
Pager data has changed, NotifyPager, PagerPrivateData.
Definition: notify_type.h:53
@ NT_ALL
Register for all notifications.
Definition: notify_type.h:35
#define NT_PAGER_VIEW
Pager View has changed.
Definition: lib.h:187
@ PAGER_MODE_EMAIL
Pager is invoked via 1st path. The mime part is selected automatically.
Definition: lib.h:138
@ PAGER_MODE_ATTACH_E
A special case of PAGER_MODE_ATTACH - attachment is a full-blown email message.
Definition: lib.h:140
Private state data for the Pager.
struct MuttWindow * pbar_new(struct IndexSharedData *shared, struct PagerPrivateData *priv)
Create the Pager Bar.
Definition: pbar.c:330
static struct PBarPrivateData * pbar_data_new(struct IndexSharedData *shared, struct PagerPrivateData *priv)
Create new private data.
Definition: pbar.c:313
Pager Bar.
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
Definition: pool.c:82
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
Definition: pool.c:96
#define MUTT_FORMAT_NO_FLAGS
No flags are set.
Definition: render.h:33
Key value store.
String manipulation buffer.
Definition: buffer.h:36
struct Notify * notify
Notifications: NotifyConfig, EventConfig.
Definition: subset.h:52
An Event that happened to a Colour.
Definition: notify2.h:55
enum ColorId cid
Colour ID that has changed.
Definition: notify2.h:56
A config-change event.
Definition: subset.h:71
const char * name
Name of config item that changed.
Definition: subset.h:73
An Event that happened to a Window.
Definition: mutt_window.h:239
struct MuttWindow * win
Window that changed.
Definition: mutt_window.h:240
Parsed Expando trees.
Definition: expando.h:41
Data shared between Index, Pager and Sidebar.
Definition: shared_data.h:37
struct Email * email
Currently selected Email.
Definition: shared_data.h:42
struct Mailbox * mailbox
Current Mailbox.
Definition: shared_data.h:41
struct ConfigSubset * sub
Config set to use.
Definition: shared_data.h:38
struct MailboxView * mailbox_view
Current Mailbox view.
Definition: shared_data.h:40
struct Notify * notify
Notifications: NotifyIndex, IndexSharedData.
Definition: shared_data.h:44
LOFF_T offset
Offset into Email file (PagerPrivateData->fp)
Definition: display.h:51
int msg_in_pager
Message currently shown in the pager.
Definition: mview.h:45
int(* repaint)(struct MuttWindow *win)
Definition: mutt_window.h:187
struct WindowState state
Current state of the Window.
Definition: mutt_window.h:127
void * wdata
Private data.
Definition: mutt_window.h:145
struct Notify * notify
Notifications: NotifyWindow, EventWindow.
Definition: mutt_window.h:138
int(* recalc)(struct MuttWindow *win)
Definition: mutt_window.h:173
void(* wdata_free)(struct MuttWindow *win, void **ptr)
Definition: mutt_window.h:159
WindowActionFlags actions
Actions to be performed, e.g. WA_RECALC.
Definition: mutt_window.h:132
Container for Accounts, Notifications.
Definition: neomutt.h:42
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:46
Data passed to a notification function.
Definition: observer.h:34
void * event_data
Data from notify_send()
Definition: observer.h:38
enum NotifyType event_type
Send: Event type, e.g. NT_ACCOUNT.
Definition: observer.h:36
int event_subtype
Send: Event subtype, e.g. NT_ACCOUNT_ADD.
Definition: observer.h:37
void * global_data
Data from notify_observer_add()
Definition: observer.h:39
Data to draw the Pager Bar.
Definition: pbar.c:82
struct PagerPrivateData * priv
Private Pager data.
Definition: pbar.c:84
char * pager_format
Cached status string.
Definition: pbar.c:85
struct IndexSharedData * shared
Shared Index data.
Definition: pbar.c:83
Private state data for the Pager.
Definition: private_data.h:41
int cur_line
Current line (last line visible on screen)
Definition: private_data.h:51
int lines_used
Size of lines array (used entries)
Definition: private_data.h:49
struct Line * lines
Array of text lines in pager.
Definition: private_data.h:48
struct Notify * notify
Notifications: NotifyPager, PagerPrivateData.
Definition: private_data.h:71
LOFF_T bytes_read
Number of bytes read from file.
Definition: private_data.h:46
int top_line
First visible line on screen.
Definition: private_data.h:55
struct stat st
Stats about Email file.
Definition: private_data.h:45
struct PagerView * pview
Object to view in the pager.
Definition: private_data.h:42
enum PagerMode mode
Pager mode.
Definition: lib.h:174
const char * banner
Title to display in status bar.
Definition: lib.h:176
short cols
Number of columns, can be MUTT_WIN_SIZE_UNLIMITED.
Definition: mutt_window.h:61