2007-09-27 [colin] 3.0.1cvs35
[claws.git] / src / gtk / menu.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2007 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 3 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, see <http://www.gnu.org/licenses/>.
17  * 
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 MENU_VAL_ID "Claws::Menu::ValueID"
31 #define MENU_VAL_DATA "Claws::Menu::ValueDATA"
32
33 #define MENUITEM_ADD(menu, menuitem, label, data)                \
34 {                                                                \
35         if (label)                                               \
36                 menuitem = gtk_menu_item_new_with_label(label);  \
37         else {                                                   \
38                 menuitem = gtk_menu_item_new();                  \
39                 gtk_widget_set_sensitive(menuitem, FALSE);       \
40         }                                                        \
41         gtk_widget_show(menuitem);                               \
42         gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);   \
43         if (data)                                                \
44                 g_object_set_data(G_OBJECT(menuitem),            \
45                                   MENU_VAL_ID,                   \
46                                   GINT_TO_POINTER(data));        \
47 }
48
49 #define menu_set_insensitive_all(menu_shell) \
50         menu_set_sensitive_all(menu_shell, FALSE);
51
52 GtkWidget *menubar_create       (GtkWidget              *window,
53                                  GtkItemFactoryEntry    *entries,
54                                  guint                   n_entries,
55                                  const gchar            *path,
56                                  gpointer                data);
57 GtkWidget *menu_create_items    (GtkItemFactoryEntry    *entries,
58                                  guint                   n_entries,
59                                  const gchar            *path,
60                                  GtkItemFactory        **factory,
61                                  gpointer                data);
62 GtkWidget *popupmenu_create     (GtkWidget *window,
63                                  GtkItemFactoryEntry *entries,
64                                  guint n_entries,
65                                  const gchar *path,
66                                  gpointer data);
67 gchar *menu_translate           (const gchar *path, gpointer data);
68
69 void menu_set_sensitive         (GtkItemFactory         *ifactory,
70                                  const gchar            *path,
71                                  gboolean                sensitive);
72 void menu_set_sensitive_all     (GtkMenuShell           *menu_shell,
73                                  gboolean                sensitive);
74
75 void menu_set_active            (GtkItemFactory         *ifactory,
76                                  const gchar            *path,
77                                  gboolean                is_active);
78 void menu_button_position       (GtkMenu                *menu,
79                                  gint                   *x,
80                                  gint                   *y,
81                                  gboolean               *push_in,
82                                  gpointer                user_data);
83
84 gint menu_find_option_menu_index(GtkOptionMenu          *optmenu,
85                                  gpointer                data,
86                                  GCompareFunc            func);
87
88 gpointer menu_get_option_menu_active_user_data
89                                 (GtkOptionMenu          *optmenu);
90 void menu_connect_identical_items(void);
91
92 void menu_select_by_data        (GtkMenu                *menu,
93                                  gpointer                data);
94
95 #endif /* __MENU_H__ */