X-Git-Url: http://pileus.org/git/?p=lackey;a=blobdiff_plain;f=src%2Fmain.c;h=f957575f7ffd13fb6c4f7c2fbd951feedf72be32;hp=3a20fe87feaa9ae6fa00efd4c68dd8a9bf0ccd93;hb=a10db2328b82791a75bf7d8a97273e6402e62f17;hpb=daded0f3fb930e7758e1009683c0cdb46eada3f6 diff --git a/src/main.c b/src/main.c index 3a20fe8..f957575 100644 --- a/src/main.c +++ b/src/main.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012 Andy Spencer + * Copyright (C) 2012-2013 Andy Spencer * * 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 @@ -17,18 +17,25 @@ #include #include -#include -#include +#include "args.h" #include "util.h" +#include "conf.h" #include "date.h" #include "cal.h" #include "view.h" +/* Config parser */ +static void on_config(const char *group, const char *name, const char *key, const char *value) +{ + view_config(group, name, key, value); + cal_config(group, name, key, value); +} + /* Control-C handler, so we don't hose the therminal */ static void on_sigint(int signum) { - endwin(); + view_exit(); exit(0); } @@ -38,69 +45,21 @@ int main(int argc, char **argv) /* Misc setup */ signal(SIGINT, on_sigint); - /* Setup Curses */ - setlocale(LC_ALL, ""); - initscr(); - cbreak(); - noecho(); - keypad(stdscr, TRUE); - start_color(); - curs_set(false); - use_default_colors(); - mousemask(ALL_MOUSE_EVENTS, NULL); - - init_pair(COLOR_TITLE, COLOR_GREEN, -1); - init_pair(COLOR_ERROR, COLOR_RED, -1); - - init_pair(COLOR_NEW, COLOR_RED, -1); - init_pair(COLOR_WIP, COLOR_YELLOW, -1); - init_pair(COLOR_DONE, COLOR_GREEN, -1); - - init_pair(COLOR_CLASS, COLOR_BLUE, -1); - init_pair(COLOR_EC, COLOR_GREEN, -1); - init_pair(COLOR_WORK, COLOR_MAGENTA, -1); - init_pair(COLOR_OTHER, COLOR_RED, -1); + /* Configuration */ + args_setup(argc, argv); + conf_setup(".lackeyrc", on_config); /* Initialize */ + args_init(); util_init(); + conf_init(); date_init(); cal_init(); - view_init(); - /* Draw initial view */ - view_draw(); - - /* Run */ - while (1) { - MEVENT btn; - int chr = getch(); - if (chr == 'q') - break; - if (chr == KEY_MOUSE) - if (getmouse(&btn) != OK) - continue; - switch (chr) { - case ERR: - continue; - case KEY_RESIZE: - endwin(); - refresh(); - view_resize(); - view_draw(); - continue; - case '\14': - clear(); - case '\7': - view_draw(); - continue; - } - if (view_run(chr, btn.bstate, btn.y, btn.x)) - continue; - debug("main: Unhandled key - Dec %3d, Hex %02x, Oct %03o, Chr <%c>\n", - chr, chr, chr, chr); - } + /* Run view main */ + view_init(); + view_main(); + view_exit(); - /* Cleanup, see also on_sigint */ - endwin(); return 0; }