2004-08-27 [paul] 0.9.12cvs83
[claws.git] / src / gtk / menu.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2004 Hiroyuki Yamamoto
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __MENU_H__
21 #define __MENU_H__
22
23 #include <glib.h>
24 #include <gtk/gtkwidget.h>
25 #include <gtk/gtkitemfactory.h>
26 #include <gtk/gtkmenu.h>
27 #include <gtk/gtkmenushell.h>
28 #include <gtk/gtkoptionmenu.h>
29
30 #define MENUITEM_ADD(menu, menuitem, label, data)                \
31 {                                                                \
32         if (label)                                               \
33                 menuitem = gtk_menu_item_new_with_label(label);  \
34         else {                                                   \
35                 menuitem = gtk_menu_item_new();                  \
36                 gtk_widget_set_sensitive(menuitem, FALSE);       \
37         }                                                        \
38         gtk_widget_show(menuitem);                               \
39         gtk_menu_append(GTK_MENU(menu), menuitem);               \
40         if (data)                                                \
41                 gtk_object_set_user_data(GTK_OBJECT(menuitem),   \
42                                          GINT_TO_POINTER(data)); \
43 }
44
45 #define menu_set_insensitive_all(menu_shell) \
46         menu_set_sensitive_all(menu_shell, FALSE);
47
48 GtkWidget *menubar_create       (GtkWidget              *window,
49                                  GtkItemFactoryEntry    *entries,
50                                  guint                   n_entries,
51                                  const gchar            *path,
52                                  gpointer                data);
53 GtkWidget *menu_create_items    (GtkItemFactoryEntry    *entries,
54                                  guint                   n_entries,
55                                  const gchar            *path,
56                                  GtkItemFactory        **factory,
57                                  gpointer                data);
58 GtkWidget *popupmenu_create     (GtkWidget *window,
59                                  GtkItemFactoryEntry *entries,
60                                  guint n_entries,
61                                  const gchar *path,
62                                  gpointer data);
63 gchar *menu_translate           (const gchar *path, gpointer data);
64
65 GString *menu_factory_get_rc    (const gchar            *path);
66 void menu_factory_clear_rc      (const gchar            *rc_str);
67 void menu_factory_copy_rc       (const gchar            *src_path,
68                                  const gchar            *dest_path);
69
70 void menu_set_sensitive         (GtkItemFactory         *ifactory,
71                                  const gchar            *path,
72                                  gboolean                sensitive);
73 void menu_set_sensitive_all     (GtkMenuShell           *menu_shell,
74                                  gboolean                sensitive);
75
76 void menu_set_active            (GtkItemFactory         *ifactory,
77                                  const gchar            *path,
78                                  gboolean                is_active);
79 void menu_button_position       (GtkMenu                *menu,
80                                  gint                   *x,
81                                  gint                   *y,
82                                  gpointer                user_data);
83
84 gint menu_find_option_menu_index(GtkOptionMenu          *optmenu,
85                                  gpointer                data,
86                                  GCompareFunc            func);
87
88 void menu_connect_identical_items(void);
89
90 void menu_select_by_data        (GtkMenu                *menu,
91                                  gpointer                data);
92
93 #endif /* __MENU_H__ */