]> git.deb.at Git - pkg/abook.git/blob - ui.c
Imported Debian patch 0.5.3-2
[pkg/abook.git] / ui.c
1
2 /*
3  * $Id: ui.c,v 1.31 2004/04/19 17:08:00 jheinonen Exp $
4  *
5  * by JH <jheinonen@users.sourceforge.net>
6  *
7  * Copyright (C) Jaakko Heinonen
8  */
9
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13 #include <unistd.h>
14 #include <fcntl.h>
15 #include <signal.h>
16 #include <ctype.h>
17 #include "abook.h"
18 #include "ui.h"
19 #include "edit.h"
20 #include "database.h"
21 #include "list.h"
22 #include "misc.h"
23 #include "options.h"
24 #include "filter.h"
25 #ifdef HAVE_CONFIG_H
26 #       include "config.h"
27 #endif
28 #ifdef HAVE_TERMIOS_H
29 #       include <termios.h>
30 #else
31 #       ifdef HAVE_LINUX_TERMIOS_H
32 #               include <linux/termios.h>
33 #       endif
34 #endif
35 #ifdef HAVE_SYS_IOCTL_H
36 #       include <sys/ioctl.h>
37 #endif
38
39 #include "abook_rl.h"
40
41 /*
42  * external variables
43  */
44
45 extern int items, curitem;
46 extern char *datafile;
47
48 extern int alternative_datafile;
49
50 /*
51  * internal variables
52  */
53
54 bool ui_initialized = FALSE;
55
56 bool should_resize = FALSE;
57 bool can_resize = FALSE;
58
59 WINDOW *top = NULL, *bottom = NULL;
60
61
62 static void
63 init_windows()
64 {
65         top = newwin(LIST_TOP - 1, COLS, 0, 0);
66
67         bottom = newwin(LINES - LIST_BOTTOM, COLS, LIST_BOTTOM, 0);
68 }
69
70 static void
71 free_windows()
72 {
73         delwin(top);
74         delwin(bottom);
75 }
76
77
78 #ifdef SIGWINCH
79 static void
80 resize_abook()
81 {
82 #ifdef TIOCGWINSZ
83         struct winsize winsz;
84
85         ioctl (0, TIOCGWINSZ, &winsz);
86 #ifdef DEBUG
87         if(winsz.ws_col >= MIN_COLS && winsz.ws_row >= MIN_LINES) {
88                 fprintf(stderr, "Warning: COLS=%d, LINES=%d\n", winsz.ws_col, winsz.ws_row);
89         }
90 #endif
91                 
92         if(winsz.ws_col >= MIN_COLS && winsz.ws_row >= MIN_LINES) {
93 #ifdef HAVE_RESIZETERM
94                 resizeterm(winsz.ws_row, winsz.ws_col);
95 #else
96                 COLS = winsz.ws_col;
97                 LINES = winsz.ws_row;
98 #endif
99         }
100
101         should_resize = FALSE;
102         close_list(); /* we need to recreate windows */
103         init_list();
104         free_windows();
105         init_windows();
106         refresh_screen();
107         refresh();
108 #endif /* TIOCGWINSZ */
109 }
110
111
112 static void
113 win_changed(int i)
114 {
115         if( can_resize )
116                 resize_abook();
117         else
118                 should_resize = TRUE;   
119 }
120 #endif /* SIGWINCH */
121
122
123 int
124 is_ui_initialized()
125 {
126         return ui_initialized;
127 }
128
129 void
130 ui_init_curses()
131 {
132         if(!is_ui_initialized())
133                 initscr();
134         cbreak();
135         noecho();
136         nonl();
137         intrflush(stdscr, FALSE);
138         keypad(stdscr, TRUE);
139 }
140
141 int
142 init_ui()
143 {
144         ui_init_curses();
145 #ifdef DEBUG
146         fprintf(stderr, "init_abook():\n");
147         fprintf(stderr, "  COLS = %d, LINES = %d\n", COLS, LINES);
148 #endif
149         if( LINES < MIN_LINES || COLS < MIN_COLS ) {
150                 clear(); refresh(); endwin();
151                 fprintf(stderr, "Your terminal size is %dx%d\n", COLS, LINES);
152                 fprintf(stderr, "Terminal is too small. Minium terminal size "
153                                 "for abook is "
154                                 "%dx%d\n", MIN_COLS, MIN_LINES);
155                 return 1;
156         }
157
158 #ifdef SIGWINCH
159         signal(SIGWINCH, win_changed);
160 #endif
161
162         init_list();
163         init_windows();
164
165         ui_initialized = TRUE;
166
167         return 0;
168 }
169
170 void
171 close_ui()
172 {
173         close_list();
174         free_windows();
175         clear();
176         refresh();
177         endwin();
178
179         ui_initialized = FALSE;
180 }
181
182
183 void
184 headerline(char *str)
185 {
186         werase(top);
187
188         mvwhline(top, 1, 0, UI_HLINE_CHAR, COLS);
189
190         mvwprintw(top, 0, 0, "%s | %s", PACKAGE " " VERSION, str);
191
192         refresh();
193         wrefresh(top);
194 }
195
196
197 void
198 refresh_screen()
199 {
200 #ifdef SIGWINCH
201         if( should_resize ) {
202                 resize_abook();
203                 return;
204         }
205 #endif
206         clear();
207
208         refresh_statusline();
209         headerline(MAIN_HELPLINE);
210         list_headerline();
211
212         refresh_list();
213 }
214
215
216 int
217 statusline_msg(char *msg)
218 {
219         int c;
220         
221         clear_statusline();
222         statusline_addstr(msg);
223         c = getch();
224 #ifdef DEBUG
225         fprintf(stderr, "statusline_msg(\"%s\")\n", msg);
226 #endif
227         clear_statusline();
228
229         return c;
230 }
231
232 void
233 statusline_addstr(char *str)
234 {
235         mvwaddstr(bottom, 1, 0, str);
236         refresh();
237         wrefresh(bottom);
238 }
239
240 char *
241 ui_readline(char *prompt, char *s, int limit, bool use_completion)
242 {
243         int y, x;
244         char *ret;
245
246         mvwaddstr(bottom, 1, 0, prompt);
247
248         getyx(bottom, y, x);
249
250         ret = abook_readline(bottom, y, x, s, limit, use_completion);
251
252         if(ret)
253                 strtrim(ret);
254
255         return ret;
256 }
257
258 int
259 statusline_ask_boolean(char *msg, int def)
260 {
261         int ret;
262         char *msg2 = strconcat(msg,  def ? " (Y/n)?" : " (y/N)?", NULL);
263
264         statusline_addstr(msg2);
265
266         free(msg2);
267
268         switch( tolower(getch()) ) {
269                 case 'n':
270                         ret = FALSE;
271                         break;
272                 case 'y':
273                         ret = TRUE;
274                         break;
275                 default:
276                         ret = def;
277                         break;
278         }
279
280         clear_statusline();
281
282         return ret;
283 }
284
285
286 void
287 refresh_statusline()
288 {
289         werase(bottom);
290
291         mvwhline(bottom, 0, 0, UI_HLINE_CHAR, COLS);
292
293         refresh();
294         wrefresh(bottom);
295 }
296
297
298 char *
299 ask_filename(char *prompt)
300 {
301         char *buf = NULL;
302
303         clear_statusline();
304
305         buf = ui_readline(prompt, NULL, -1, 1);
306
307         return buf;
308 }
309
310 void
311 clear_statusline()
312 {
313         wmove(bottom, 1, 0);
314         wclrtoeol(bottom);
315         wrefresh(bottom);
316         refresh();
317 }
318
319 /*
320  * help
321  */
322
323 #include "help.h"
324
325 void
326 display_help(int help)
327 {
328         int i;
329         char **tbl;
330         WINDOW *helpw;
331
332         switch(help) {
333                 case HELP_MAIN:
334                         tbl = mainhelp;
335                         break;
336                 case HELP_EDITOR:
337                         tbl = editorhelp;
338                         break;
339                 default:return;
340         }
341
342         helpw = newwin(LINES - 5, COLS - 6, 2, 3);
343         erase();
344         headerline("help");
345
346         for( i = 0; tbl[i] != NULL; i++) {
347                 waddstr(helpw, tbl[i]);
348                 if( ( !( (i+1) % (LINES-8) ) ) ||
349                         (tbl[i+1] == NULL) ) {
350                         refresh();
351                         wrefresh(helpw);
352                         refresh_statusline();
353                         if(statusline_msg("Press any key to continue...")
354                                         == 'q')
355                                 break;
356                         wclear(helpw);
357                 }
358         }
359
360         clear_statusline();
361         delwin(helpw);
362 }
363
364 /*
365  * end of help
366  */
367
368 extern char *selected;
369 extern int curitem;
370
371 void
372 get_commands()
373 {
374         int ch;
375
376         for(;;) {
377                 can_resize = TRUE; /* it's safe to resize now */
378                 hide_cursor();
379                 if( should_resize )
380                         refresh_screen();
381                 ch = getch();
382                 show_cursor();
383                 can_resize = FALSE; /* it's not safe to resize anymore */
384                 switch( ch ) {
385                         case 'q': return;
386                         case 'Q': quit_abook(QUIT_DONTSAVE);    break;
387                         case 'P': print_stderr(selected_items() ?
388                                                   -1 : list_current_item());
389                                   return;
390                         case '?':
391                                   display_help(HELP_MAIN);
392                                   refresh_screen();
393                                   break;
394                         case 'a': add_item();           break;
395                         case '\r': edit_item(-1);       break;
396                         case KEY_DC:
397                         case 'd':
398                         case 'r': ui_remove_items();    break;
399                         case 'D': duplicate_item();     break;
400                         case 12: refresh_screen();      break;
401
402                         case 'k':
403                         case KEY_UP: scroll_up();       break;
404                         case 'j':
405                         case KEY_DOWN: scroll_down();   break;
406                         case 'K':
407                         case KEY_PPAGE: page_up();      break;
408                         case 'J':
409                         case KEY_NPAGE: page_down();    break;
410
411                         case 'g':
412                         case KEY_HOME: goto_home();     break;
413                         case 'G':
414                         case KEY_END: goto_end();       break;
415
416                         case 'w': save_database();
417                                   break;
418                         case 'l': ui_read_database();   break;
419                         case 'i': import_database();    break;
420                         case 'e': export_database();    break;
421                         case 'C': ui_clear_database();  break;
422
423                         case 'o': ui_open_datafile();   break;
424
425                         case 's': sort_by_field(NAME);  break;
426                         case 'S': sort_surname();       break;
427                         case 'F': sort_by_field(-1);    break;
428
429                         case '/': ui_find(0);           break;
430                         case '\\': ui_find(1);          break;
431
432                         case ' ': if(curitem >= 0) {
433                                    selected[curitem] = !selected[curitem];
434                                    ui_print_number_of_items();
435                                    refresh_list();
436                                   }
437                                 break;
438                         case '+': select_all();
439                                   refresh_list();
440                                 break;
441                         case '-': select_none();
442                                   refresh_list();
443                                 break;
444                         case '*': invert_selection();
445                                   refresh_list();
446                                  break;
447                         case 'A': move_curitem(MOVE_ITEM_UP);
448                                 break;
449                         case 'Z': move_curitem(MOVE_ITEM_DOWN);
450                                 break;
451
452                         case 'm': launch_mutt(selected_items() ?
453                                                   -1 : list_current_item());
454                                   refresh_screen();
455                                   break;
456
457                         case 'p': ui_print_database(); break;
458
459                         case 'u': launch_wwwbrowser(list_current_item());
460                                   refresh_screen();
461                                   break;
462                 }
463         }
464 }
465
466
467 void
468 ui_remove_items()
469 {
470         if(list_is_empty())
471                 return;
472
473         if(statusline_ask_boolean("Remove selected item(s)", TRUE))
474                 remove_selected_items();
475
476         clear_statusline();     
477         refresh_list();
478 }
479
480 void
481 ui_clear_database()
482 {
483         if(statusline_ask_boolean("Clear WHOLE database", FALSE)) {
484                 close_database();
485                 refresh_list();
486         }
487 }
488
489 void
490 ui_find(int next)
491 {
492         int item = -1;
493         static char findstr[MAX_FIELD_LEN];
494         int search_fields[] = {NAME, EMAIL, NICK, -1};
495
496         clear_statusline();
497
498         if(next) {
499                 if( !*findstr )
500                         return;
501         } else {
502                 char *s;
503                 s = ui_readline("/", findstr, MAX_FIELD_LEN - 1, 0);
504                 strncpy(findstr, s, MAX_FIELD_LEN);
505                 refresh_screen();
506         }
507
508         if( (item = find_item(findstr, curitem + !!next, search_fields)) < 0 &&
509                         (item = find_item(findstr, 0, search_fields)) >= 0)
510                 statusline_addstr("Search hit bottom, continuing at top");
511
512         if(item >= 0) {
513                 curitem = item;
514                 refresh_list();
515         }
516 }
517
518
519 void
520 ui_print_number_of_items()
521 {
522         char *str = mkstr("     " "|%3d/%3d", selected_items(), items);
523
524         mvaddstr(0, COLS-strlen(str), str);
525
526         free(str);
527 }
528
529 void
530 ui_read_database()
531 {
532         if(items > 0)
533                 if(!statusline_ask_boolean("Your current data will be lost - "
534                                 "Press 'y' to continue", FALSE))
535                         return;
536
537         load_database(datafile);
538         refresh_list();
539 }
540
541
542 void
543 ui_print_database()
544 {
545         FILE *handle;
546         char *command = opt_get_str(STR_PRINT_COMMAND);
547         int mode;
548
549         if( list_is_empty() )
550                 return;
551
552         statusline_addstr("Print All/Selected/Cancel (a/s/C)?");
553
554         switch( tolower(getch()) ) {
555                 case 'a':
556                         mode = ENUM_ALL;
557                         break;
558                 case 's':
559                         if( !selected_items() ) {
560                                 statusline_msg("No selected items");
561                                 return;
562                         }
563                         mode = ENUM_SELECTED;
564                         break;
565                 default:
566                         clear_statusline();
567                         return;
568         }
569
570         clear_statusline();
571
572         if( ! *command || (handle = popen(command, "w")) == NULL)
573                 return;
574
575         fexport("text", handle, mode);
576         
577         pclose(handle);
578 }
579
580
581 void
582 ui_open_datafile()
583 {
584         char *filename;
585
586         filename = ask_filename("File to open: ");
587
588         if( !filename || ! *filename) {
589                 free(filename);
590                 refresh_screen();
591                 return;
592         }
593
594         if( opt_get_bool(BOOL_AUTOSAVE) )
595                 save_database();
596         else if(statusline_ask_boolean("Save current database", FALSE))
597                 save_database();
598
599         close_database();
600
601         load_database(filename);
602
603         if( items == 0 ) {
604                 statusline_msg("Sorry, that specified file appears not to be a valid abook addressbook");
605                 load_database(datafile);
606         } else {
607                 free(datafile);
608                 datafile = strdup(filename);
609         }
610
611         refresh_screen();
612         free(filename);
613
614         alternative_datafile = TRUE;
615 }