-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbufed.c
197 lines (166 loc) · 5.08 KB
/
bufed.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
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
185
186
187
188
189
190
191
192
193
194
195
196
197
/*
* Buffer editor mode for QEmacs.
* Copyright (c) 2001, 2002 Fabrice Bellard.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "qe.h"
typedef struct BufedState {
StringArray items;
} BufedState;
ModeDef bufed_mode;
static void build_bufed_list(EditState *s)
{
QEmacsState *qs = s->qe_state;
EditBuffer *b;
BufedState *hs;
int i;
hs = s->mode_data;
free_strings(&hs->items);
for(b = qs->first_buffer; b != NULL; b = b->next) {
if (!(b->flags & BF_SYSTEM))
add_string(&hs->items, b->name);
}
/* build buffer */
b = s->b;
eb_delete(b, 0, b->total_size);
for(i=0;i<hs->items.nb_items;i++) {
eb_printf(b, " %s", hs->items.items[i]->str);
if (i != hs->items.nb_items - 1)
eb_printf(b, "\n");
}
}
static void bufed_select(EditState *s)
{
BufedState *bs = s->mode_data;
StringItem *item;
EditBuffer *b;
EditState *e;
int index;
index = list_get_pos(s);
if (index < 0 || index >= bs->items.nb_items)
return;
item = bs->items.items[index];
b = eb_find(item->str);
if (!b)
return;
e = find_window_right(s);
if (!e)
return;
/* delete dired window */
do_delete_window(s, 1);
switch_to_buffer(e, b);
}
/* iterate 'func_item' to selected items. If no selected items, then
use current item */
void string_selection_iterate(StringArray *cs,
int current_index,
void (*func_item)(void *, StringItem *),
void *opaque)
{
StringItem *item;
int count, i;
count = 0;
for(i=0;i<cs->nb_items;i++) {
item = cs->items[i];
if (item->selected) {
func_item(opaque, item);
count++;
}
}
/* if no item selected, then act on selected item */
if (count == 0 &&
current_index >=0 && current_index < cs->nb_items) {
item = cs->items[current_index];
func_item(opaque, item);
}
}
static void bufed_kill_item(void *opaque, StringItem *item)
{
EditState *s = opaque;
do_kill_buffer(s, item->str);
}
static void bufed_kill_buffer(EditState *s)
{
BufedState *hs = s->mode_data;
string_selection_iterate(&hs->items, list_get_pos(s),
bufed_kill_item, s);
build_bufed_list(s);
}
/* show a list of buffers */
static void do_list_buffers(EditState *s)
{
QEmacsState *qs = s->qe_state;
BufedState *bs;
EditBuffer *b;
EditState *e;
int width, i;
/* XXX: must close this buffer when destroying window: add a
special buffer flag to tell this */
b = eb_new("*bufed*", BF_READONLY | BF_SYSTEM);
width = qs->width / 4;
e = insert_window_left(b, width, WF_MODELINE);
do_set_mode(e, &bufed_mode, NULL);
bs = e->mode_data;
/* if active buffer is found, go directly on it */
for(i=0;i<bs->items.nb_items;i++) {
if (!strcmp(bs->items.items[i]->str, s->b->name)) {
e->offset = eb_goto_pos(e->b, i, 0);
break;
}
}
/* modify active window */
qs->active_window = e;
}
static int bufed_mode_init(EditState *s, ModeSavedData *saved_data)
{
list_mode.mode_init(s, saved_data);
build_bufed_list(s);
return 0;
}
static void bufed_mode_close(EditState *s)
{
BufedState *hs;
hs = s->mode_data;
free_strings(&hs->items);
list_mode.mode_close(s);
}
/* specific bufed commands */
static CmdDef bufed_commands[] = {
CMD0( KEY_RET, KEY_RIGHT, "bufed-select", bufed_select)
CMD1( KEY_CTRL('g'), KEY_NONE, "delete-window", do_delete_window, 0)
CMD0( ' ', KEY_CTRL('t'), "bufed-toggle_selection", list_toggle_selection)
CMD0( KEY_F8, KEY_NONE, "bufed-kill-buffer", bufed_kill_buffer)
CMD_DEF_END,
};
static CmdDef bufed_global_commands[] = {
CMD0( KEY_CTRLX(KEY_CTRL('b')), KEY_NONE, "list-buffers", do_list_buffers)
CMD_DEF_END,
};
static int bufed_init(void)
{
/* inherit from list mode */
memcpy(&bufed_mode, &list_mode, sizeof(ModeDef));
bufed_mode.name = "bufed";
bufed_mode.instance_size = sizeof(BufedState);
bufed_mode.mode_init = bufed_mode_init;
bufed_mode.mode_close = bufed_mode_close;
/* first register mode */
qe_register_mode(&bufed_mode);
qe_register_cmd_table(bufed_commands, "bufed");
qe_register_cmd_table(bufed_global_commands, NULL);
return 0;
}
qe_module_init(bufed_init);