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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
|
/*
* (c) 2004 by Kalle Wallin <kaw@linux.se>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "i18n.h"
#include "mpdclient.h"
#include "options.h"
#include "conf.h"
#include "command.h"
#include "screen.h"
#include "screen_utils.h"
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#define STATIC_ITEMS 0
#define STATIC_SUB_ITEMS 1
#define BUFSIZE 256
#define LIST_ITEM_APPLY() ((unsigned)command_list_length)
#define LIST_ITEM_SAVE() (LIST_ITEM_APPLY()+1)
#define LIST_LENGTH() (LIST_ITEM_SAVE()+1)
#define LIST_ITEM_SAVE_LABEL _("===> Apply & Save key bindings ")
#define LIST_ITEM_APPLY_LABEL _("===> Apply key bindings ")
static list_window_t *lw = NULL;
static unsigned command_list_length = 0;
static command_definition_t *cmds = NULL;
static int subcmd = -1;
static unsigned subcmd_length = 0;
static unsigned subcmd_addpos = 0;
static int
keybindings_changed(void)
{
command_definition_t *orginal_cmds = get_command_definitions();
size_t size = command_list_length * sizeof(command_definition_t);
return memcmp(orginal_cmds, cmds, size);
}
static void
apply_keys(void)
{
if (keybindings_changed()) {
command_definition_t *orginal_cmds = get_command_definitions();
size_t size = command_list_length * sizeof(command_definition_t);
memcpy(orginal_cmds, cmds, size);
screen_status_printf(_("You have new key bindings"));
} else
screen_status_printf(_("Keybindings unchanged."));
}
static int
save_keys(void)
{
FILE *f;
char *filename;
if (check_user_conf_dir()) {
screen_status_printf(_("Error: Unable to create direcory ~/.ncmpc - %s"),
strerror(errno));
screen_bell();
return -1;
}
filename = get_user_key_binding_filename();
if ((f = fopen(filename,"w")) == NULL) {
screen_status_printf(_("Error: %s - %s"), filename, strerror(errno));
screen_bell();
g_free(filename);
return -1;
}
if (write_key_bindings(f, KEYDEF_WRITE_HEADER))
screen_status_printf(_("Error: %s - %s"), filename, strerror(errno));
else
screen_status_printf(_("Wrote %s"), filename);
g_free(filename);
return fclose(f);
}
static void
check_subcmd_length(void)
{
subcmd_length = 0;
while (subcmd_length < MAX_COMMAND_KEYS &&
cmds[subcmd].keys[subcmd_length] > 0)
++subcmd_length;
if (subcmd_length < MAX_COMMAND_KEYS) {
subcmd_addpos = subcmd_length;
subcmd_length++;
} else
subcmd_addpos = 0;
subcmd_length += STATIC_SUB_ITEMS;
}
static void
keydef_paint(void);
static void
keydef_repaint(void)
{
keydef_paint();
wrefresh(lw->w);
}
static void
delete_key(int cmd_index, int key_index)
{
int i = key_index+1;
screen_status_printf(_("Deleted"));
while (i < MAX_COMMAND_KEYS && cmds[cmd_index].keys[i])
cmds[cmd_index].keys[key_index++] = cmds[cmd_index].keys[i++];
cmds[cmd_index].keys[key_index] = 0;
cmds[cmd_index].flags |= COMMAND_KEY_MODIFIED;
check_subcmd_length();
/* repaint */
keydef_repaint();
/* update key conflict flags */
check_key_bindings(cmds, NULL, 0);
}
static void
assign_new_key(WINDOW *w, int cmd_index, int key_index)
{
int key;
char *buf;
command_t cmd;
buf = g_strdup_printf(_("Enter new key for %s: "), cmds[cmd_index].name);
key = screen_getch(w, buf);
g_free(buf);
if (key==ERR) {
screen_status_printf(_("Aborted"));
return;
}
cmd = find_key_command(key, cmds);
if (cmd != CMD_NONE && cmd != cmds[cmd_index].command) {
screen_status_printf(_("Error: key %s is already used for %s"),
key2str(key),
get_key_command_name(cmd));
screen_bell();
return;
}
cmds[cmd_index].keys[key_index] = key;
cmds[cmd_index].flags |= COMMAND_KEY_MODIFIED;
screen_status_printf(_("Assigned %s to %s"),
key2str(key),cmds[cmd_index].name);
check_subcmd_length();
/* repaint */
keydef_repaint();
/* update key conflict flags */
check_key_bindings(cmds, NULL, 0);
}
static const char *
list_callback(unsigned idx, bool *highlight, G_GNUC_UNUSED void *data)
{
static char buf[BUFSIZE];
if (subcmd < 0) {
if (idx < (unsigned)command_list_length) {
if (cmds[idx].flags & COMMAND_KEY_CONFLICT)
*highlight = true;
return cmds[idx].name;
} else if (idx == LIST_ITEM_APPLY())
return LIST_ITEM_APPLY_LABEL;
else if (idx == LIST_ITEM_SAVE())
return LIST_ITEM_SAVE_LABEL;
} else {
if (idx == 0)
return "[..]";
idx--;
if (idx < MAX_COMMAND_KEYS && cmds[subcmd].keys[idx] > 0) {
g_snprintf(buf,
BUFSIZE, "%d. %-20s (%d) ",
idx + 1,
key2str(cmds[subcmd].keys[idx]),
cmds[subcmd].keys[idx]);
return buf;
} else if (idx == subcmd_addpos) {
g_snprintf(buf, BUFSIZE, "%d. %s",
idx + 1, _("Add new key"));
return buf;
}
}
return NULL;
}
static void
keydef_init(WINDOW *w, int cols, int rows)
{
lw = list_window_init(w, cols, rows);
}
static void
keydef_resize(int cols, int rows)
{
lw->cols = cols;
lw->rows = rows;
}
static void
keydef_exit(void)
{
list_window_free(lw);
if (cmds)
g_free(cmds);
cmds = NULL;
lw = NULL;
}
static void
keydef_open(G_GNUC_UNUSED mpdclient_t *c)
{
if (cmds == NULL) {
command_definition_t *current_cmds = get_command_definitions();
size_t cmds_size;
command_list_length = 0;
while (current_cmds[command_list_length].name)
command_list_length++;
cmds_size = (command_list_length+1) * sizeof(command_definition_t);
cmds = g_malloc0(cmds_size);
memcpy(cmds, current_cmds, cmds_size);
command_list_length += STATIC_ITEMS;
}
subcmd = -1;
list_window_check_selected(lw, LIST_LENGTH());
}
static void
keydef_close(void)
{
if (cmds && !keybindings_changed()) {
g_free(cmds);
cmds = NULL;
} else
screen_status_printf(_("Note: Did you forget to \'Apply\' your changes?"));
}
static const char *
keydef_title(char *str, size_t size)
{
if (subcmd < 0)
return _("Edit key bindings");
g_snprintf(str, size, _("Edit keys for %s"), cmds[subcmd].name);
return str;
}
static void
keydef_paint(void)
{
list_window_paint(lw, list_callback, NULL);
}
static bool
keydef_cmd(G_GNUC_UNUSED mpdclient_t *c, command_t cmd)
{
int length = LIST_LENGTH();
if (subcmd >= 0)
length = subcmd_length;
if (list_window_cmd(lw, length, cmd)) {
keydef_repaint();
return true;
}
switch(cmd) {
case CMD_PLAY:
if (subcmd < 0) {
if (lw->selected == LIST_ITEM_APPLY())
apply_keys();
else if (lw->selected == LIST_ITEM_SAVE()) {
apply_keys();
save_keys();
} else {
subcmd = lw->selected;
lw->selected=0;
check_subcmd_length();
keydef_repaint();
}
} else {
if (lw->selected == 0) { /* up */
lw->selected = subcmd;
subcmd = -1;
keydef_repaint();
} else
assign_new_key(screen.status_window.w,
subcmd,
lw->selected - STATIC_SUB_ITEMS);
}
return true;
case CMD_DELETE:
if (subcmd >= 0 && lw->selected >= STATIC_SUB_ITEMS)
delete_key(subcmd, lw->selected - STATIC_SUB_ITEMS);
return true;
break;
case CMD_SAVE_PLAYLIST:
apply_keys();
save_keys();
break;
case CMD_LIST_FIND:
case CMD_LIST_RFIND:
case CMD_LIST_FIND_NEXT:
case CMD_LIST_RFIND_NEXT:
screen_find(lw, length,
cmd, list_callback, NULL);
keydef_repaint();
return true;
default:
break;
}
return false;
}
const struct screen_functions screen_keydef = {
.init = keydef_init,
.exit = keydef_exit,
.open = keydef_open,
.close = keydef_close,
.resize = keydef_resize,
.paint = keydef_paint,
.cmd = keydef_cmd,
.get_title = keydef_title,
};
|