diff options
Diffstat (limited to 'calendar/view-utils.h')
-rw-r--r-- | calendar/view-utils.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/calendar/view-utils.h b/calendar/view-utils.h index ef00dbf848..f351b4885d 100644 --- a/calendar/view-utils.h +++ b/calendar/view-utils.h @@ -24,6 +24,14 @@ void view_utils_draw_events (GtkWidget *widget, GdkWindow *window, GdkGC *gc, Gd void view_utils_draw_textured_frame (GtkWidget *widget, GdkWindow *window, GdkRectangle *rect, GtkShadowType shadow); -extern int am_pm_flag; + +struct menu_item { + char *text; + GtkSignalFunc callback; + gpointer data; + int sensitive; +}; + +void popup_menu (struct menu_item *items, int nitems, guint32 time); #endif |