1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
/* datebook.h
* A module of J-Pilot http://jpilot.org
*
* Copyright (C) 1999-2001 by Judd Montgomery
*
* 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; version 2 of the License.
*
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __DATEBOOK_H__
#define __DATEBOOK_H__
#include <stdio.h>
#include <pi-datebook.h>
#include "utils.h"
#ifdef USE_DB3
#define DB3_FLOAT 1
#define DB3_FLOAT_COMPLETE 2
#define DB3_FLOAT_HAS_NOTE 16
#endif
int datebook_print(int type);
int datebook_import(GtkWidget *window);
int datebook_cleanup();
int pc_datebook_write(struct Appointment *a, PCRecType rt, unsigned char attrib);
void free_AppointmentList(AppointmentList **al);
/*
* If Null is passed in for date, then all appointments will be returned
*/
int get_days_appointments(AppointmentList **al_out, struct tm *date);
/*
* If Null is passed in for date, then all appointments will be returned
* modified, deleted and private, 0 for no, 1 for yes, 2 for use prefs
*/
int get_days_appointments2(AppointmentList **appointment_list, struct tm *now,
int modified, int deleted, int privates);
/* This funtion removes appointments from the list that obviously will not
* occur in this month */
int weed_datebook_list(AppointmentList **al, int mon, int year, int *mask);
/* Year is years since 1900 */
/* Mon is 0-11 */
/* Day is 1-31 */
/* */
int datebook_add_exception(struct Appointment *a, int year, int mon, int day);
int get_datebook_app_info(struct AppointmentAppInfo *ai);
int datebook_copy_appointment(struct Appointment *a1,
struct Appointment **a2);
/* returns a bit mask where bit 1 day one, etc. and it is set if an */
/* appointment occurs on that day, 0 if not. */
int appointment_on_day_list(int mon, int year, int *mask);
/*
* returns 1 if an appointment does occur/re-occur on dat
* else returns 0
*/
unsigned int isApptOnDate(struct Appointment *a, struct tm *date);
int dateToSecs(struct tm *tm1);
int dateToDays(struct tm *tm1);
int compareTimesToDay(struct tm *tm1, struct tm *tm2);
#ifdef USE_DB3
/* Returns a bitmask
* 0 if not a floating OR
* bitmask:
* 1 if float,
* 2 if completed float
* 16 if float has a note
*/
int db3_is_float(struct Appointment *a, int *category);
#endif
int datebook_import(GtkWidget *window);
int datebook_export(GtkWidget *window);
#endif
|