diff options
Diffstat (limited to 'calendar/gui/e-week-view-event-item.h')
-rw-r--r-- | calendar/gui/e-week-view-event-item.h | 121 |
1 files changed, 67 insertions, 54 deletions
diff --git a/calendar/gui/e-week-view-event-item.h b/calendar/gui/e-week-view-event-item.h index 20cace0132..ff32eec83d 100644 --- a/calendar/gui/e-week-view-event-item.h +++ b/calendar/gui/e-week-view-event-item.h @@ -1,34 +1,25 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ - -/* - * Author : - * Damon Chaplin <damon@ximian.com> - * - * Copyright 1999, Ximian, Inc. - * Copyright 2001, Ximian, Inc. +/* * - * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public - * License as published by the Free Software Foundation. + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) version 3. * * 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. + * 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 the program; if not, see <http://www.gnu.org/licenses/> + * + * + * Authors: + * Damon Chaplin <damon@ximian.com> + * + * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) * - * 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 _E_WEEK_VIEW_EVENT_ITEM_H_ -#define _E_WEEK_VIEW_EVENT_ITEM_H_ - -#include "e-week-view.h" - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ /* * EWeekViewEventItem - displays the background, times and icons for an event @@ -36,35 +27,57 @@ extern "C" { * edit the text. */ -#define E_WEEK_VIEW_EVENT_ITEM(obj) (GTK_CHECK_CAST((obj), \ - e_week_view_event_item_get_type (), EWeekViewEventItem)) -#define E_WEEK_VIEW_EVENT_ITEM_CLASS(k) (GTK_CHECK_CLASS_CAST ((k),\ - e_week_view_event_item_get_type ())) -#define E_IS_WEEK_VIEW_EVENT_ITEM(o) (GTK_CHECK_TYPE((o), \ - e_week_view_event_item_get_type ())) +#ifndef E_WEEK_VIEW_EVENT_ITEM_H +#define E_WEEK_VIEW_EVENT_ITEM_H -typedef struct { - GnomeCanvasItem canvas_item; - - /* The event index in the EWeekView events array. */ - gint event_num; - - /* The span index within the event. */ - gint span_num; -} EWeekViewEventItem; +#include "e-week-view.h" -typedef struct { +/* Standard GObject macros */ +#define E_TYPE_WEEK_VIEW_EVENT_ITEM \ + (e_week_view_event_item_get_type ()) +#define E_WEEK_VIEW_EVENT_ITEM(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST \ + ((obj), E_TYPE_WEEK_VIEW_EVENT_ITEM, EWeekViewEventItem)) +#define E_WEEK_VIEW_EVENT_ITEM_CLASS(cls) \ + (G_TYPE_CHECK_CLASS_CAST \ + ((cls), E_TYPE_WEEK_VIEW_EVENT_ITEM, EWeekViewEventItemClass)) +#define E_IS_WEEK_VIEW_EVENT_ITEM(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE \ + ((obj), E_TYPE_WEEK_VIEW_EVENT_ITEM)) +#define E_IS_WEEK_VIEW_EVENT_ITEM_CLASS(cls) \ + (G_TYPE_CHECK_CLASS_TYPE \ + ((cls), E_TYPE_WEEK_VIEW_EVENT_ITEM)) +#define E_WEEK_VIEW_EVENT_ITEM_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS \ + ((obj), E_TYPE_WEEK_VIEW_EVENT_ITEM, EWeekViewEventItemClass)) + +G_BEGIN_DECLS + +typedef struct _EWeekViewEventItem EWeekViewEventItem; +typedef struct _EWeekViewEventItemClass EWeekViewEventItemClass; +typedef struct _EWeekViewEventItemPrivate EWeekViewEventItemPrivate; + +struct _EWeekViewEventItem { + GnomeCanvasItem parent; + EWeekViewEventItemPrivate *priv; +}; + +struct _EWeekViewEventItemClass { GnomeCanvasItemClass parent_class; - -} EWeekViewEventItemClass; - - -GtkType e_week_view_event_item_get_type (void); - - - -#ifdef __cplusplus -} -#endif /* __cplusplus */ - -#endif /* _E_WEEK_VIEW_EVENT_ITEM_H_ */ +}; + +GType e_week_view_event_item_get_type (void); +gint e_week_view_event_item_get_event_num + (EWeekViewEventItem *event_item); +void e_week_view_event_item_set_event_num + (EWeekViewEventItem *event_item, + gint event_num); +gint e_week_view_event_item_get_span_num + (EWeekViewEventItem *event_item); +void e_week_view_event_item_set_span_num + (EWeekViewEventItem *event_item, + gint span_num); + +G_END_DECLS + +#endif /* E_WEEK_VIEW_EVENT_ITEM_H */ |