]> Pileus Git - lackey/blobdiff - src/main.c
Convert YEAR/MONTH/DAY to Selection struct
[lackey] / src / main.c
index 41e1c81c180cf62c047d7bf87a93df0a6856f3b4..fdcfbd8dd637ed0bce733eb58b4d4f06d0e5505e 100644 (file)
-#define _POSIX_C_SOURCE 1
-#include <stdarg.h>
+/*
+ * Copyright (C) 2012-2013 Andy Spencer <andy753421@gmail.com>
+ *
+ * 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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#define _XOPEN_SOURCE
+
 #include <stdlib.h>
 #include <signal.h>
+#include <locale.h>
 #include <ncurses.h>
 
-#include "main.h"
-#include "screen.h"
-
-/* Global data */
-int win_rows = 0;
-int win_cols = 0;
+#include "util.h"
+#include "conf.h"
+#include "date.h"
+#include "cal.h"
+#include "view.h"
 
-/* Static data */
-static WINDOW *win = NULL;
-static FILE *debug_fd = NULL;
+/* 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();
-       debug("got sigint\n");
        exit(0);
 }
 
-/* Window change */
-static void update(void)
-{
-       getmaxyx(win, win_rows, win_cols);
-       win_rows++;
-       win_cols++;
-       screen_draw();
-}
-
-/* Window change */
-static void on_sigwinch(int signum)
-{
-       endwin();
-       refresh();
-       update();
-}
-
-/* Debugging functions */
-int debug(char *fmt, ...)
-{
-       int rval;
-       va_list ap;
-       va_start(ap, fmt);
-       vfprintf(debug_fd, "debug: ", ap);
-       rval = vfprintf(debug_fd, fmt, ap);
-       va_end(ap);
-       return rval;
-}
-
 /* Main */
 int main(int argc, char **argv)
 {
        /* Misc setup */
-       debug_fd = fopen("acal.log", "w+");
-       struct sigaction act;
-       sigemptyset(&act.sa_mask);
-       act.sa_flags   = 0;
-       act.sa_handler = on_sigint;
-       if (sigaction(SIGINT, &act, NULL) < 0)
-               debug("sigint error\n");
-       act.sa_handler = on_sigwinch;
-       if (sigaction(SIGWINCH, &act, NULL) < 0)
-               debug("sigwinch error\n");
-
-       /* Curses setup */
-       win = initscr();
+       signal(SIGINT, on_sigint);
+
+       /* Set default escape timeout */
+       if (!getenv("ESCDELAY"))
+               putenv("ESCDELAY=25");
+
+       /* Setup Curses */
+       setlocale(LC_ALL, "");
+       initscr();
        cbreak();
        noecho();
+       keypad(stdscr, TRUE);
        start_color();
        curs_set(false);
-       screen_init();
+       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 */
+       conf_setup(argc, argv, ".lackeyrc", on_config);
+
+       /* Initialize */
+       util_init();
+       conf_init();
+       date_init();
+       cal_init();
+       view_init();
+
+       /* Draw initial view */
+       view_draw();
 
        /* Run */
        while (1) {
+               MEVENT btn;
+               conf_sync();
                int chr = getch();
                if (chr == 'q')
                        break;
+               if (chr == KEY_MOUSE)
+                       if (getmouse(&btn) != OK)
+                               continue;
                switch (chr) {
-                       case 'L':
+                       case ERR:
+                               continue;
+                       case KEY_RESIZE:
+                               endwin();
+                               refresh();
+                               view_resize();
+                               view_draw();
+                               continue;
+                       case '\14': // Ctrl-L
                                clear();
-                       case 'l':
-                               update();
-                               break;
-                       default:
-                               screen_run(chr);
-                               break;
+                       case '\7':  // Ctrl-G
+                               view_resize();
+                               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>",
+                               chr, chr, chr, chr);
        }
 
-       /* Cleanup, see also on_sigint */
+       /* Cleanup, see also on_sigint, error */
        endwin();
-       debug("cleanup");
        return 0;
 }