]> Pileus Git - lackey/blob - src/main.c
Set default escape key delay
[lackey] / src / main.c
1 /*
2  * Copyright (C) 2012 Andy Spencer <andy753421@gmail.com>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #define _XOPEN_SOURCE
19
20 #include <stdlib.h>
21 #include <signal.h>
22 #include <locale.h>
23 #include <ncurses.h>
24
25 #include "util.h"
26 #include "conf.h"
27 #include "date.h"
28 #include "cal.h"
29 #include "view.h"
30
31 /* Config parser */
32 static void on_config(const char *group, const char *name, const char *key, const char *value)
33 {
34         view_config(group, name, key, value);
35         cal_config(group, name, key, value);
36 }
37
38 /* Control-C handler, so we don't hose the therminal */
39 static void on_sigint(int signum)
40 {
41         endwin();
42         exit(0);
43 }
44
45 /* Main */
46 int main(int argc, char **argv)
47 {
48         /* Misc setup */
49         signal(SIGINT, on_sigint);
50
51         /* Set default escape timeout */
52         if (!getenv("ESCDELAY"))
53                 putenv("ESCDELAY=25");
54
55         /* Setup Curses */
56         setlocale(LC_ALL, "");
57         initscr();
58         cbreak();
59         noecho();
60         keypad(stdscr, TRUE);
61         start_color();
62         curs_set(false);
63         use_default_colors();
64         mousemask(ALL_MOUSE_EVENTS, NULL);
65
66         init_pair(COLOR_TITLE, COLOR_GREEN,   -1);
67         init_pair(COLOR_ERROR, COLOR_RED,     -1);
68
69         init_pair(COLOR_NEW,   COLOR_RED,     -1);
70         init_pair(COLOR_WIP,   COLOR_YELLOW,  -1);
71         init_pair(COLOR_DONE,  COLOR_GREEN,   -1);
72
73         init_pair(COLOR_CLASS, COLOR_BLUE,    -1);
74         init_pair(COLOR_EC,    COLOR_GREEN,   -1);
75         init_pair(COLOR_WORK,  COLOR_MAGENTA, -1);
76         init_pair(COLOR_OTHER, COLOR_RED,     -1);
77
78         /* Configuration */
79         conf_setup(argc, argv, ".lackeyrc", on_config);
80
81         /* Initialize */
82         util_init();
83         conf_init();
84         date_init();
85         cal_init();
86         view_init();
87
88         /* Draw initial view */
89         view_draw();
90
91         /* Run */
92         while (1) {
93                 MEVENT btn;
94                 conf_sync();
95                 int chr = getch();
96                 if (chr == 'q')
97                         break;
98                 if (chr == KEY_MOUSE)
99                         if (getmouse(&btn) != OK)
100                                 continue;
101                 switch (chr) {
102                         case ERR:
103                                 continue;
104                         case KEY_RESIZE:
105                                 endwin();
106                                 refresh();
107                                 view_resize();
108                                 view_draw();
109                                 continue;
110                         case '\14': // Ctrl-L
111                                 clear();
112                         case '\7':  // Ctrl-G
113                                 view_resize();
114                                 view_draw();
115                                 continue;
116                 }
117                 if (view_run(chr, btn.bstate, btn.y, btn.x))
118                         continue;
119                 debug("main: Unhandled key - Dec %3d,  Hex %02x,  Oct %03o,  Chr <%c>",
120                                 chr, chr, chr, chr);
121         }
122
123         /* Cleanup, see also on_sigint, error */
124         endwin();
125         return 0;
126 }