]> Pileus Git - lackey/blobdiff - src/main.c
Make month view interactive
[lackey] / src / main.c
index 5de195da34a006558770a10cc66a8d9be5e22b41..20bea55e766185ee350f0ab0e1982231b4ab5b74 100644 (file)
@@ -1,12 +1,35 @@
-#define _POSIX_C_SOURCE 1
+/*
+ * Copyright (C) 2012 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/>.
+ */
+
 #include <stdarg.h>
 #include <stdlib.h>
 #include <signal.h>
+#include <time.h>
+#include <locale.h>
 #include <ncurses.h>
 
 #include "main.h"
 #include "screen.h"
 
+/* Debugging */
+year_t  YEAR  = 2012;
+month_t MONTH = 8;
+day_t   DAY   = 29;
+
 /* Static data */
 static FILE *debug_fd = NULL;
 
@@ -14,18 +37,9 @@ static FILE *debug_fd = NULL;
 static void on_sigint(int signum)
 {
        endwin();
-       debug("got sigint\n");
        exit(0);
 }
 
-/* Window change */
-static void on_sigwinch(int signum)
-{
-       endwin();
-       refresh();
-       screen_draw();
-}
-
 /* Debugging functions */
 int debug(char *fmt, ...)
 {
@@ -54,18 +68,18 @@ int debug(char *fmt, ...)
 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");
+       signal(SIGINT, on_sigint);
+       debug_fd = fopen("/tmp/lackey.log", "w+");
+
+       /* Time setup */
+       time_t sec = time(NULL);
+       struct tm *tm = localtime(&sec);
+       YEAR  = tm->tm_year+1900;
+       MONTH = tm->tm_mon;
+       DAY   = tm->tm_mday-1;
 
        /* Curses setup */
+       setlocale(LC_ALL, "");
        initscr();
        cbreak();
        noecho();
@@ -76,33 +90,39 @@ int main(int argc, char **argv)
        init_pair(COLOR_TITLE, COLOR_GREEN, COLOR_BLACK);
        init_pair(COLOR_ERROR, COLOR_RED,   COLOR_BLACK);
        screen_init();
+       screen_draw();
 
        /* Run */
        while (1) {
                MEVENT btn;
                int chr = getch();
+               if (chr == 'q')
+                       break;
                if (chr == KEY_MOUSE)
                        if (getmouse(&btn) != OK)
                                continue;
-               if (chr == 'q')
-                       break;
-               if (KEY_MOUSE)
-                       //debug("mouse xyz=%d,%d,%d id=%hd state=%lx\n",
-                       //      btn.x, btn.y, btn.z, btn.id, btn.bstate);
                switch (chr) {
-                       case 'L':
+                       case ERR:
+                               continue;
+                       case KEY_RESIZE:
+                               endwin();
+                               refresh();
+                               screen_resize();
+                               screen_draw();
+                               continue;
+                       case '\14':
                                clear();
-                       case 'l':
+                       case '\7':
                                screen_draw();
-                               break;
-                       default:
-                               screen_run(chr, btn.bstate, btn.y, btn.x);
-                               break;
+                               continue;
                }
+               if (screen_run(chr, btn.bstate, btn.y, btn.x))
+                       continue;
+               //debug("Unhandled key: Dec %3d,  Hex %02x,  Oct %03o,  Chr <%c>\n",
+               //              chr, chr, chr, chr);
        }
 
        /* Cleanup, see also on_sigint */
        endwin();
-       debug("cleanup");
        return 0;
 }