forked from barnowl/barnowl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sepbar.c
119 lines (102 loc) · 3.32 KB
/
sepbar.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#include "owl.h"
static void sepbar_redraw(owl_window *w, WINDOW *sepwin, void *user_data);
void owl_sepbar_init(owl_window *w)
{
g_signal_connect(w, "redraw", G_CALLBACK(sepbar_redraw), NULL);
/* TODO: handle dirtiness in the sepbar */
owl_window_dirty(w);
}
static void sepbar_redraw(owl_window *w, WINDOW *sepwin, void *user_data)
{
const owl_messagelist *ml;
const owl_view *v;
int x, y, i;
const char *foo, *appendtosepbar;
int cur_numlines, cur_totallines;
ml=owl_global_get_msglist(&g);
v=owl_global_get_current_view(&g);
werase(sepwin);
wattron(sepwin, A_REVERSE);
if (owl_global_is_fancylines(&g)) {
whline(sepwin, ACS_HLINE, owl_global_get_cols(&g));
} else {
whline(sepwin, '-', owl_global_get_cols(&g));
}
if (owl_global_is_sepbar_disable(&g)) {
getyx(sepwin, y, x);
wmove(sepwin, y, owl_global_get_cols(&g)-1);
return;
}
wmove(sepwin, 0, 2);
if (owl_messagelist_get_size(ml) == 0)
waddstr(sepwin, " (-/-) ");
else
wprintw(sepwin, " (%i/%i/%i) ", owl_global_get_curmsg(&g) + 1,
owl_view_get_size(v),
owl_messagelist_get_size(ml));
foo=owl_view_get_filtname(v);
if (strcmp(foo, owl_global_get_view_home(&g)))
wattroff(sepwin, A_REVERSE);
wprintw(sepwin, " %s ", owl_view_get_filtname(v));
if (strcmp(foo, owl_global_get_view_home(&g)))
wattron(sepwin, A_REVERSE);
i=owl_mainwin_get_last_msg(owl_global_get_mainwin(&g));
if ((i != -1) &&
(i < owl_view_get_size(v)-1)) {
getyx(sepwin, y, x);
wmove(sepwin, y, x+2);
wattron(sepwin, A_BOLD);
waddstr(sepwin, " <more> ");
wattroff(sepwin, A_BOLD);
}
if (owl_global_get_rightshift(&g)>0) {
getyx(sepwin, y, x);
wmove(sepwin, y, x+2);
wprintw(sepwin, " right: %i ", owl_global_get_rightshift(&g));
}
if (owl_global_is_zaway(&g) || owl_global_is_aaway(&g)) {
getyx(sepwin, y, x);
wmove(sepwin, y, x+2);
wattron(sepwin, A_BOLD);
wattroff(sepwin, A_REVERSE);
if (owl_global_is_zaway(&g) && owl_global_is_aaway(&g)) {
waddstr(sepwin, " AWAY ");
} else if (owl_global_is_zaway(&g)) {
waddstr(sepwin, " Z-AWAY ");
} else if (owl_global_is_aaway(&g)) {
waddstr(sepwin, " A-AWAY ");
}
wattron(sepwin, A_REVERSE);
wattroff(sepwin, A_BOLD);
}
if (owl_mainwin_is_curmsg_truncated(owl_global_get_mainwin(&g))) {
getyx(sepwin, y, x);
wmove(sepwin, y, x+2);
wattron(sepwin, A_BOLD);
cur_numlines = owl_global_get_curmsg_vert_offset(&g) + 1;
cur_totallines = owl_message_get_numlines(owl_view_get_element(v, owl_global_get_curmsg(&g)));
wprintw(sepwin, " <truncated: %d/%d> ", cur_numlines, cur_totallines);
wattroff(sepwin, A_BOLD);
}
if (owl_global_get_curmsg_vert_offset(&g)) {
getyx(sepwin, y, x);
wmove(sepwin, y, x+2);
wattron(sepwin, A_BOLD);
wattroff(sepwin, A_REVERSE);
waddstr(sepwin, " SCROLL ");
wattron(sepwin, A_REVERSE);
wattroff(sepwin, A_BOLD);
}
appendtosepbar = owl_global_get_appendtosepbar(&g);
if (appendtosepbar && *appendtosepbar) {
getyx(sepwin, y, x);
wmove(sepwin, y, x+2);
waddstr(sepwin, " ");
waddstr(sepwin, owl_global_get_appendtosepbar(&g));
waddstr(sepwin, " ");
}
getyx(sepwin, y, x);
wmove(sepwin, y, owl_global_get_cols(&g)-1);
wattroff(sepwin, A_BOLD);
wattroff(sepwin, A_REVERSE);
}