blob: 8a04ee24ae2c383780a0452f96acec60a0c186c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* -*- 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 */
|