/* * 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 . */ #include #include "util.h" #include "date.h" #include "cal.h" /* Test data */ static cal_t cal = { .name = "dummy", .desc = "dummy calendar", .data = NULL, }; static event_t event = { .cal = &cal, .start = {2012, OCT, 0, 12, 0}, .end = {2012, OCT, 0, 13, 0}, .name = "dummy event", .desc = "this event is random and does not exist", }; static todo_t todo = { .cal = &cal, .name = "dummy todo", .desc = "this todo is random and does not exist", .due = {2012, OCT, 0, 13, 0}, .status = 50, }; static event_t events[8]; static todo_t todos[6]; /* Event functions */ event_t *dummy_events(cal_t *cal, year_t year, month_t month, day_t day, int days) { for (int i = 0; i < N_ELEMENTS(events); i++) { date_t *s = &events[i].start; date_t *e = &events[i].end; events[i] = event; add_days(&s->year, &s->month, &s->day, 7*i); add_days(&e->year, &e->month, &e->day, 7*i); if (i+1 < N_ELEMENTS(events)) events[i].next = &events[i+1]; } return &events[0]; } /* Todo functions */ todo_t *dummy_todos(cal_t *cal, year_t year, month_t month, day_t day, int days) { for (int i = 0; i < N_ELEMENTS(todos); i++) { todos[i] = todo; todos[i].status = i*20; if (i+1 < N_ELEMENTS(todos)) todos[i].next = &todos[i+1]; } return &todos[0]; }