2001-04-16 Christopher James Lahey <clahey@ximian.com> * configure.in: Changed some comments here. * gal/Makefile.am (libgal_la_LIBADD): Added widgets/e-categories-master-list-array.lo and widgets/e-categories-master-list.lo. * gal/widgets/Makefile.am (libwidgets_la_SOURCES): Added widgets/e-categories-master-list-array.c and widgets/e-categories-master-list.c. (libwidgetsinclude_HEADERS): Added widgets/e-categories-master-list-array.h and widgets/e-categories-master-list.h. * gal/widgets/e-categories-master-list-array.c, gal/widgets/e-categories-master-list-array.h, gal/widgets/e-categories-master-list.c, gal/widgets/e-categories-master-list.h: Added ECategoriesMasterList and a simple local implementation of it. * gal/widgets/e-categories.c, gal/widgets/e-categories.h: Privatized this. Switched to using ECategoriesMasterList. (table_right_click): Added a right click menu to add and remove things to and from the global category list. * gal/widgets/e-gui-utils.c, gal/widgets/e-gui-utils.h: Fixed some comments and formatting. * gal/widgets/e-popup-menu.h (E_POPUP_SEPARATOR, E_POPUP_TERMINATOR): Added these #defines. svn path=/trunk/; revision=9392
30 lines
906 B
C
30 lines
906 B
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
#ifndef GAL_GUI_UTILS_H
|
|
#define GAL_GUI_UTILS_H
|
|
|
|
#include <gtk/gtkmenu.h>
|
|
#include <gtk/gtkwindow.h>
|
|
|
|
#include <libgnomeui/gnome-messagebox.h>
|
|
|
|
BEGIN_GNOME_DECLS
|
|
|
|
void e_popup_menu (GtkMenu *menu,
|
|
GdkEvent *event);
|
|
void e_auto_kill_popup_menu_on_hide (GtkMenu *menu);
|
|
void e_notice (GtkWindow *window,
|
|
const char *type,
|
|
const char *format,
|
|
...);
|
|
void e_container_foreach_leaf (GtkContainer *container,
|
|
GtkCallback callback,
|
|
gpointer closure);
|
|
void e_container_focus_nth_entry (GtkContainer *container,
|
|
int n);
|
|
gint e_container_change_tab_order (GtkContainer *container,
|
|
GList *widgets);
|
|
|
|
END_GNOME_DECLS
|
|
|
|
#endif /* GAL_GUI_UTILS_H */
|