1998-04-22 Federico Mena Quintero <federico@nuclecu.unam.mx> * 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 <federico@nuclecu.unam.mx> * 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
26 lines
418 B
C
26 lines
418 B
C
/* Popup menu utilities for gncal
|
|
*
|
|
* Copyright (C) 1998 The Free Software Foundation
|
|
*
|
|
* Author: Federico Mena <quartic@gimp.org>
|
|
*/
|
|
|
|
#ifndef POPUP_MENU_H
|
|
#define POPUP_MENU_H
|
|
|
|
#include <gdk/gdktypes.h>
|
|
#include <gtk/gtksignal.h>
|
|
|
|
|
|
struct menu_item {
|
|
char *text;
|
|
GtkSignalFunc callback;
|
|
gpointer data;
|
|
int sensitive;
|
|
};
|
|
|
|
void popup_menu (struct menu_item *items, int nitems, GdkEventButton *event);
|
|
|
|
|
|
#endif
|