X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=src%2Fscreen.c;h=c555e324fdc0c803242641aeef35f64a539a5159;hb=f896842729cc916a17d828484821c85ae4140317;hp=926ed505c0ddb34f7d98db81afd05269d64a85e9;hpb=a591ba290c9aafd719e8cef8e5447921e07468b1;p=lackey diff --git a/src/screen.c b/src/screen.c index 926ed50..c555e32 100644 --- a/src/screen.c +++ b/src/screen.c @@ -1,32 +1,56 @@ +/* + * Copyright (C) 2012 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 + * 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 . + */ + +#define _XOPEN_SOURCE_EXTENDED + #include #include -#include "main.h" + +#include "util.h" +#include "date.h" +#include "event.h" #include "screen.h" /* Types */ typedef struct { - char *name; - void (*init)(void); - void (*draw)(void); - int (*run)(int,mmask_t,int,int); - int keys[8]; + char *name; + void (*init)(WINDOW*); + void (*size)(int,int); + void (*draw)(void); + int (*run)(int,mmask_t,int,int); + int keys[8]; + WINDOW *win; } view_t; /* Data */ view_t views[] = { - { "Day", day_init, day_draw, day_run, {KEY_F(1), '1', 'd', } }, - { "Week", week_init, week_draw, week_run, {KEY_F(2), '2', 'w', } }, - { "Month", month_init, month_draw, month_run, {KEY_F(3), '3', 'm', } }, - { "Year", year_init, year_draw, year_run, {KEY_F(4), '4', 'y', } }, - { "|", NULL, NULL, NULL, { } }, - { "Todo", todo_init, todo_draw, todo_run, {KEY_F(5), '5', 't', } }, - { "Notes", notes_init, notes_draw, notes_run, {KEY_F(6), '6', 'n', } }, - { "|", NULL, NULL, NULL, { } }, - { "Settings", settings_init, settings_draw, settings_run, {KEY_F(7), '7', 's', } }, - { "Help", help_init, help_draw, help_run, {KEY_F(8), '8', 'h', '?'} }, + { "Day", day_init, day_size, day_draw, day_run, {KEY_F(1), '1', } }, + { "Week", week_init, week_size, week_draw, week_run, {KEY_F(2), '2', } }, + { "Month", month_init, month_size, month_draw, month_run, {KEY_F(3), '3', } }, + { "Year", year_init, year_size, year_draw, year_run, {KEY_F(4), '4', } }, + { "|", NULL, NULL, NULL, NULL, { } }, + { "Events", events_init, events_size, events_draw, events_run, {KEY_F(5), '5', } }, + { "Todo", todo_init, todo_size, todo_draw, todo_run, {KEY_F(6), '6', } }, + { "|", NULL, NULL, NULL, NULL, { } }, + { "Settings", settings_init, settings_size, settings_draw, settings_run, {KEY_F(7), '7', } }, + { "Help", help_init, help_size, help_draw, help_run, {KEY_F(8), '8', '?'} }, }; -int active = 0; +int active = 5; /* Local functions */ void draw_header(void) @@ -36,24 +60,100 @@ void draw_header(void) for (int i = 0; i < N_ELEMENTS(views); i++) { if (i == active) attron(A_BOLD); - printw(" %s", views[i].name); + printw("%s ", views[i].name); if (i == active) attroff(A_BOLD); } attroff(COLOR_PAIR(COLOR_TITLE)); mvhline(1, 0, ACS_HLINE, COLS); + refresh(); } +/* Helper functions */ +void event_box(WINDOW *win, event_t *event, int y, int x, int h, int w) +{ + int l = 0; + int s = y < 0 ? -y-1 : 0; + + int color = event->cat == NULL ? 0 : + !strcmp(event->cat, "class") ? COLOR_CLASS : + !strcmp(event->cat, "ec") ? COLOR_EC : + !strcmp(event->cat, "work") ? COLOR_WORK : COLOR_OTHER ; + + if (color) wattron(win, COLOR_PAIR(color)); + + if (h >= 2) mvwhline_set(win, y, x+1, WACS_T_HLINE, w-2); + if (h <= 1) mvwadd_wch(win, y, x, WACS_BULLET); + if (h >= 2) mvwadd_wch(win, y, x, WACS_T_ULCORNER); + if (h >= 2) mvwadd_wch(win, y, x+w-1, WACS_T_URCORNER); + if (h >= 3) mvwvline_set(win, y+1+s, x, WACS_T_VLINE, h-2-s); + if (h >= 3) mvwvline_set(win, y+1+s, x+w-1, WACS_T_VLINE, h-2-s); + if (h >= 2) mvwadd_wch(win, y+h-1, x, WACS_T_LLCORNER); + if (h >= 2) mvwadd_wch(win, y+h-1, x+w-1, WACS_T_LRCORNER); + if (h >= 2) mvwhline_set(win, y+h-1, x+1, WACS_T_HLINE, w-2); + + if (color) wattroff(win, COLOR_PAIR(color)); + + if (lname) mvwprintw(win, y+l++, x+1, "%.*s", w-2, event->name); + if (lloc) mvwprintw(win, y+l++, x+1, "@ %.*s", w-4, event->loc); + if (ldesc) mvwprintw(win, y+l++, x+1, "%.*s", w-2, event->desc); +} + +void event_line(WINDOW *win, event_t *event, int y, int x, int w, int full) +{ + int color = event->cat == NULL ? 0 : + !strcmp(event->cat, "class") ? COLOR_CLASS : + !strcmp(event->cat, "ec") ? COLOR_EC : + !strcmp(event->cat, "work") ? COLOR_WORK : COLOR_OTHER ; + + if (color) wattron(win, COLOR_PAIR(color)); + mvwaddch(win, y, x++, ACS_BLOCK); + if (color) wattroff(win, COLOR_PAIR(color)); + + if (full) { + mvwprintw(win, y, x, " %02d:%02d - ", event->start.hour, event->start.min); + x += 9; + } + if (event->name) { + const char *label = event->name ?: event->desc; + mvwprintw(win, y, x, "%-*.*s", w-1, w-1, label); + x += MIN(strlen(label), w-1); + } + if (full && event->loc) { + mvwprintw(win, y, x, " @ %s", event->loc); + } +} + + /* Screen init */ void screen_init(void) { + for (int i = 0; i < N_ELEMENTS(views); i++) { + if (views[i].init) { + views[i].win = newwin(LINES-2, COLS, 2, 0); + views[i].init(views[i].win); + } + } +} + +/* Screen draw */ +void screen_resize(void) +{ + for (int i = 0; i < N_ELEMENTS(views); i++) { + if (views[i].win) + wresize(views[i].win, LINES-2, COLS); + if (views[i].size) + views[i].size(LINES-2, COLS); + } } /* Screen draw */ void screen_draw(void) { draw_header(); + werase(views[active].win); views[active].draw(); + wrefresh(views[active].win); } /* Screen set */ @@ -74,7 +174,7 @@ int screen_run(int key, mmask_t btn, int row, int col) int start = 1; for (int i = 0; i < N_ELEMENTS(views); i++) { int end = start + strlen(views[i].name) - 1; - if (start <= col && col <= end) + if (start <= col && col <= end && views[i].draw) return screen_set(i); start = end + 2; }