aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/summary_dlg.h
AgeCommit message (Collapse)AuthorFilesLines
2000-04-01No work need be done when a summary dialog box is destroyed, or when theGuy Harris1-2/+1
window manager tries to delete it, so no callback is needed for the "destroy" or "delete_event" signals (grabs are, at least in GTK+ 1.2.7, removed when a widget is destroyed, and there's no need for the destroy callback to destroy the widget itself; the delete event handler *could*, for example, pop up a dialog box saying "Do you really want to close this?", and allow the user to back out of the operation, but there's no unsaved work that would be lost by closing the window, so there's no point in having a delete event handler that does that). svn path=/trunk/; revision=1771
1999-12-10Move GTK code out of summary.c and into gtk/summary_dlg.cGilbert Ramirez1-0/+32
summary.c now provides a struct of info (see summary.h) Changed the name of the summary dialogue callback (hence the change in menu.c), and added a close button to the dialogue. Moved #include <gtk/gtk.h> out of print.c and into prefs.h where it was needed for GdkColor. svn path=/trunk/; revision=1273