aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-calendar-view.h
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@novell.com>2005-11-23 16:19:00 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2005-11-23 16:19:00 +0800
commita722e3281e5404a902eefe0f20005f59b5b2d813 (patch)
treec589fa71f218ee0c0e17f86bf066f2866ca1ee41 /calendar/gui/e-calendar-view.h
parent80f4fd336fed8066ba8db8dd398c5023b0ff4ff7 (diff)
downloadgsoc2013-evolution-a722e3281e5404a902eefe0f20005f59b5b2d813.tar
gsoc2013-evolution-a722e3281e5404a902eefe0f20005f59b5b2d813.tar.gz
gsoc2013-evolution-a722e3281e5404a902eefe0f20005f59b5b2d813.tar.bz2
gsoc2013-evolution-a722e3281e5404a902eefe0f20005f59b5b2d813.tar.lz
gsoc2013-evolution-a722e3281e5404a902eefe0f20005f59b5b2d813.tar.xz
gsoc2013-evolution-a722e3281e5404a902eefe0f20005f59b5b2d813.tar.zst
gsoc2013-evolution-a722e3281e5404a902eefe0f20005f59b5b2d813.zip
Added a function to get tooltip tooltip widget
2005-11-23 Srinivasa Ragavan <sragavan@novell.com> * gui/e-calendar-view.c (tooltip_grab), (get_label), (e_calendar_view_get_tooltips): Added a function to get tooltip tooltip widget * gui/e-calendar-view.h: * gui/e-day-view.c (e_day_view_add_event), (e_day_view_reshape_long_event), (e_day_view_reshape_day_event), (e_day_view_on_text_item_event): Added tooltip for day/work week view. * gui/e-week-view.c (e_week_view_add_event), (tooltip_event_cb), (e_week_view_reshape_event_span), (e_week_view_on_text_item_event): Added tooltip for week/month view. * gui/e-week-view.h: * gui/misc.c (get_position_in_array), (calculate_time): Added a function for converting time to string. * gui/misc.h: svn path=/trunk/; revision=30648
Diffstat (limited to 'calendar/gui/e-calendar-view.h')
-rw-r--r--calendar/gui/e-calendar-view.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/calendar/gui/e-calendar-view.h b/calendar/gui/e-calendar-view.h
index 17778e3a2b..8e2d67c477 100644
--- a/calendar/gui/e-calendar-view.h
+++ b/calendar/gui/e-calendar-view.h
@@ -66,7 +66,11 @@ typedef enum {
time_t end; \
guint16 start_minute; \
guint16 end_minute; \
- guint different_timezone : 1;
+ guint different_timezone : 1; \
+ GtkWidget *tooltip; \
+ gint timeout; \
+ GdkColor *color; \
+ gint x,y;
typedef struct {
E_CALENDAR_VIEW_EVENT_FIELDS
@@ -154,7 +158,7 @@ void e_calendar_view_modify_and_send (ECalComponent *comp,
GtkWindow *toplevel,
gboolean new);
-
+gboolean e_calendar_view_get_tooltips (ECalendarViewEvent *pevent);
G_END_DECLS
#endif