From 017a40b429a28c7b69abee005262794dde049e15 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Thu, 23 Apr 1998 00:26:37 +0000 Subject: Made it use popup_menu(). 1998-04-22 Federico Mena Quintero * gncal-full-day.c: Made it use popup_menu(). * popup-menu.c: New file with utility functions for creating popup menus. Maybe such a thing would be useful in libgnomeui, a la gnome-app-helper? * Makefile.am (gnomecal_SOURCES): Added popup-menu.[ch] to the sources. 1998-04-21 Federico Mena Quintero * gncal-todo.c: New widget for editing TODO lists. This will be worked on a lot. * Makefile.am (gnomecal_SOURCES): Added gncal-todo.[ch] to the sources. * gncal-day-panel.c: Make it use the new TODO widget. svn path=/trunk/; revision=189 --- calendar/popup-menu.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 calendar/popup-menu.h (limited to 'calendar/popup-menu.h') diff --git a/calendar/popup-menu.h b/calendar/popup-menu.h new file mode 100644 index 0000000000..a4590dbb98 --- /dev/null +++ b/calendar/popup-menu.h @@ -0,0 +1,25 @@ +/* Popup menu utilities for gncal + * + * Copyright (C) 1998 The Free Software Foundation + * + * Author: Federico Mena + */ + +#ifndef POPUP_MENU_H +#define POPUP_MENU_H + +#include +#include + + +struct menu_item { + char *text; + GtkSignalFunc callback; + gpointer data; + int sensitive; +}; + +void popup_menu (struct menu_item *items, int nitems, GdkEventButton *event); + + +#endif -- cgit v1.2.3