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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
use libui;
use fmt;
use os;
use strings;
use io;
use strio;
use unix::tty;
use wcwidth;
export type listwidget = struct {
ui: libui::ttyui,
items: []str,
cursor: size,
listeners: []listener,
frame: frame,
sz: ttysize,
};
export type frame = struct {
start: u16,
// largest value is nb of items
end: u16,
};
export type ttysize = struct {
rows: u16,
cols: u16,
};
export type listener = *fn(l: *listwidget, r: rune) bool;
// Create a new list with the given items.
export fn newlist(ui: libui::ttyui, items: str...) listwidget = {
let sz = libui::getwinsize(ui)!;
let rows: (u16 | size) = if (sz.rows - 2 < len(items)) {
yield sz.rows - 2;
} else {
yield len(items);
};
let w = listwidget {
ui = ui,
items = items,
cursor = 0z,
listeners = [],
frame = frame {
start = 0u16,
end = rows: u16,
},
sz = ttysize {
rows = rows: u16,
cols = sz.columns,
},
};
return w;
};
// Add a listener to the given list.
export fn addlistener(list: *listwidget, l: listener) void = {
append(list.listeners, l);
};
// Print the list's items while truncating the items to not be wider than the
// list.sz.cols.
export fn print(list: *listwidget) (void | io::error | tty::error) = {
//let sz = libui::getwinsize(list.ui)?;
//let rows: (u16 | size) = if (sz.rows - 2 < len(list.items)) {
//yield sz.rows - 2;
//} else {
//yield len(list.items);
//};
//fmt::fprintln(os::stderr, rows)!;
list.frame.end = list.frame.start + list.sz.rows;
let st = strio::dynamic();
strio::concat(&st, "\r")?;
for (let i = list.frame.start; i < list.frame.end: u16; i += 1) {
let item = list.items[i];
let truncitem = wcwidth::truncate(item, list.sz.cols);
if (list.cursor == i) {
strio::concat(&st, "\x1B[104;1m\x1B[30m")?;
strio::concat(&st, truncitem)?;
strio::concat(&st, "\x1B[0m")?;
//libui::print(list.ui, strings::concat("\x1B[31;1m> ", list.items[i], "\x1B[0m"));
} else {
strio::concat(&st, truncitem)?;
//libui::print(list.ui, list.items[i]);
};
strio::concat(&st, "\r\n")?;
};
let s = strio::string(&st);
defer free(s);
libui::print(list.ui, s);
};
// Notify (call) the listwidget's listeners with the listwidget and r as a
// parameter.
export fn notify(l: *listwidget, r: rune) bool = {
for (let i = 0z; i < len(l.listeners); i += 1) {
if (l.listeners[i](l, r)) {
return true;
};
};
return false;
};
// Move the list's cursor down one item. Returns the new cursor.
export fn down(l: *listwidget) size = {
if (l.cursor < len(l.items) - 1) {
l.cursor += 1;
};
reframe(l);
return l.cursor;
};
// Move the list's cursor up one item. Returns the new cursor.
export fn up(l: *listwidget) size = {
if (l.cursor > 0) {
l.cursor -= 1;
};
reframe(l);
return l.cursor;
};
// Reset the list's frame based on the cursor. Returns whether the frame was
// updated.
fn reframe(l: *listwidget) bool = {
let reframed: bool = false;
if (l.cursor < l.frame.start) {
l.frame.end -= l.frame.start - l.cursor: u16;
l.frame.start = l.cursor: u16;
reframed = true;
};
if (l.cursor >= l.frame.end) {
l.frame.start += l.cursor: u16 - l.frame.end + 1;
l.frame.end = l.cursor: u16;
reframed = true;
};
return reframed;
};
// Move the list's cursor to the top (first item). Returns the new cursor.
export fn top(l: *listwidget) size = {
l.cursor = 0;
l.frame.start = 0;
l.frame.end = l.frame.start + l.sz.rows;
return l.cursor;
};
// Move the list's cursor to the bottom (last item). Returns the new cursor.
export fn bottom(l: *listwidget) size = {
l.cursor = len(l.items) - 1;
l.frame.end = len(l.items): u16;
l.frame.start = l.frame.end - l.sz.rows;
return l.cursor;
};
// Forward search through the list's items for an item containing s. Returns the
// new cursor.
export fn search(l: *listwidget, s: str) size = {
for (let i = l.cursor + 1; i < len(l.items); i += 1) {
if (strings::contains(l.items[i], s)) {
l.cursor = i;
reframe(l);
return l.cursor;
};
};
return l.cursor;
};
// Backwards search through the list's items for an item containing s. Returns
// the new cursor.
export fn rsearch(l: *listwidget, s: str) size = {
// size wraps to max value for size when < 0
for (let i = l.cursor: int - 1; i >= 0; i -= 1) {
if (strings::contains(l.items[i], s)) {
l.cursor = i: size;
reframe(l);
return l.cursor;
};
};
return l.cursor;
};
|