/* Evolution calendar - iCalendar file backend for tasks * * Copyright (C) 2000 Ximian, Inc. * Copyright (C) 2000 Ximian, Inc. * * Authors: Federico Mena-Quintero * Rodrigo Moya * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU Lesser General Public * License as published by the Free Software Foundation. * * 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifdef HAVE_CONFIG_H #include #endif #include "e-cal-backend-file-todos.h" /* Private part of the ECalBackendFileTodos structure */ struct _ECalBackendFileTodosPrivate { guint reserved; }; static void e_cal_backend_file_todos_class_init (ECalBackendFileTodosClass *class); static void e_cal_backend_file_todos_init (ECalBackendFileTodos *cbfile, ECalBackendFileTodosClass *class); static void e_cal_backend_file_todos_dispose (GObject *object); static void e_cal_backend_file_todos_finalize (GObject *object); static ECalBackendFileClass *parent_class; /** * e_cal_backend_file_todos_get_type: * @void: * * Registers the #ECalBackendFileTodos class if necessary, and returns the type ID * associated to it. * * Return value: The type ID of the #ECalBackendFileTodos class. **/ GType e_cal_backend_file_todos_get_type (void) { static GType e_cal_backend_file_todos_type = 0; if (!e_cal_backend_file_todos_type) { static GTypeInfo info = { sizeof (ECalBackendFileTodosClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) e_cal_backend_file_todos_class_init, NULL, NULL, sizeof (ECalBackendFileTodos), 0, (GInstanceInitFunc) e_cal_backend_file_todos_init }; e_cal_backend_file_todos_type = g_type_register_static (E_TYPE_CAL_BACKEND_FILE, "ECalBackendFileTodos", &info, 0); } return e_cal_backend_file_todos_type; } /* Class initialization function for the file backend */ static void e_cal_backend_file_todos_class_init (ECalBackendFileTodosClass *klass) { GObjectClass *object_class; ECalBackendClass *backend_class; object_class = G_OBJECT_CLASS (klass); backend_class = E_CAL_BACKEND_CLASS (klass); parent_class = g_type_class_peek_parent (klass); object_class->dispose = e_cal_backend_file_todos_dispose; object_class->finalize = e_cal_backend_file_todos_finalize; // backend_class->get_uri = e_cal_backend_file_todos_get_uri; } /* Object initialization function for the file backend */ static void e_cal_backend_file_todos_init (ECalBackendFileTodos *cbfile, ECalBackendFileTodosClass *class) { ECalBackendFileTodosPrivate *priv; priv = g_new0 (ECalBackendFileTodosPrivate, 1); cbfile->priv = priv; e_cal_backend_file_set_file_name (E_CAL_BACKEND_FILE (cbfile), "tasks.ics"); } /* Dispose handler for the file backend */ static void e_cal_backend_file_todos_dispose (GObject *object) { ECalBackendFileTodos *cbfile; ECalBackendFileTodosPrivate *priv; cbfile = E_CAL_BACKEND_FILE_TODOS (object); priv = cbfile->priv; if (G_OBJECT_CLASS (parent_class)->dispose) (* G_OBJECT_CLASS (parent_class)->dispose) (object); } /* Finalize handler for the file backend */ static void e_cal_backend_file_todos_finalize (GObject *object) { ECalBackendFileTodos *cbfile; ECalBackendFileTodosPrivate *priv; g_return_if_fail (object != NULL); g_return_if_fail (E_IS_CAL_BACKEND_FILE_TODOS (object)); cbfile = E_CAL_BACKEND_FILE_TODOS (object); priv = cbfile->priv; if (G_OBJECT_CLASS (parent_class)->finalize) (* G_OBJECT_CLASS (parent_class)->finalize) (object); }