inital gtk2 patch
[claws.git] / src / gtk / menu.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2003 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 MENU_VAL_ID "Sylpheed::Menu::ValueID"
31
32 #define MENUITEM_ADD(menu, menuitem, label, data) \
33 { \
34         menuitem = gtk_menu_item_new_with_label(label); \
35         gtk_widget_show(menuitem); \
36         gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); \
37         if (data) \
38                 g_object_set_data(G_OBJECT(menuitem), \
39                                   MENU_VAL_ID, \
40                                   GINT_TO_POINTER(data)); \
41 }
42
43 #define menu_set_insensitive_all(menu_shell) \
44         menu_set_sensitive_all(menu_shell, FALSE);
45
46 GtkWidget *menubar_create       (GtkWidget              *window,
47                                  GtkItemFactoryEntry    *entries,
48                                  guint                   n_entries,
49                                  const gchar            *path,
50                                  gpointer                data);
51 GtkWidget *menu_create_items    (GtkItemFactoryEntry    *entries,
52                                  guint                   n_entries,
53                                  const gchar            *path,
54                                  GtkItemFactory        **factory,
55                                  gpointer                data);
56 GtkWidget *popupmenu_create(GtkWidget *window,
57                                  GtkItemFactoryEntry *entries,
58                              guint n_entries,
59                                  const gchar *path,
60                                  gpointer data);
61
62 GString *menu_factory_get_rc    (const gchar            *path);
63 void menu_factory_clear_rc      (const gchar            *rc_str);
64 void menu_factory_copy_rc       (const gchar            *src_path,
65                                  const gchar            *dest_path);
66
67 void menu_set_sensitive         (GtkItemFactory         *ifactory,
68                                  const gchar            *path,
69                                  gboolean                sensitive);
70 void menu_set_sensitive_all     (GtkMenuShell           *menu_shell,
71                                  gboolean                sensitive);
72
73 void menu_set_toggle            (GtkItemFactory         *ifactory,
74                                  const gchar            *path,
75                                  gboolean                active);
76 void menu_toggle_toggle         (GtkItemFactory         *ifactory,
77                                  const gchar            *path);
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 void menu_connect_identical_items(void);
89
90 void menu_select_by_data        (GtkMenu                *menu,
91                                  gpointer                data);
92
93 #endif /* __MENU_H__ */