2008-07-25 [colin] 3.5.0cvs33
[claws.git] / src / gtk / menu.h
index 8e3170355ba5a5b9b35194512b8163dc1c50b09c..512895e9f042c171b2185c64b51098181f2e463f 100644 (file)
@@ -1,10 +1,10 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2003 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2007 Hiroyuki Yamamoto
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
+ * the Free Software Foundation; either version 3 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
@@ -13,8 +13,8 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * 
  */
 
 #ifndef __MENU_H__
 #include <gtk/gtkmenushell.h>
 #include <gtk/gtkoptionmenu.h>
 
-#define MENU_VAL_ID "Sylpheed::Menu::ValueID"
+#define MENU_VAL_ID "Claws::Menu::ValueID"
+#define MENU_VAL_DATA "Claws::Menu::ValueDATA"
 
-#define MENUITEM_ADD(menu, menuitem, label, data) \
-{ \
-       menuitem = gtk_menu_item_new_with_label(label); \
-       gtk_widget_show(menuitem); \
-       gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); \
-       if (data) \
-               g_object_set_data(G_OBJECT(menuitem), \
-                                 MENU_VAL_ID, \
-                                 GINT_TO_POINTER(data)); \
+#define MENUITEM_ADD(menu, menuitem, label, data)               \
+{                                                               \
+       if (label)                                               \
+               menuitem = gtk_menu_item_new_with_label(label);  \
+       else {                                                   \
+               menuitem = gtk_menu_item_new();                  \
+               gtk_widget_set_sensitive(menuitem, FALSE);       \
+       }                                                        \
+       gtk_widget_show(menuitem);                               \
+       gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);   \
+       if (data)                                                \
+               g_object_set_data(G_OBJECT(menuitem),            \
+                                 MENU_VAL_ID,                   \
+                                 GINT_TO_POINTER(data));        \
+}
+
+#define MENUITEM_ADDUI(path, name, action, type)                \
+       gtk_ui_manager_add_ui(gtkut_ui_manager(),                \
+                       gtk_ui_manager_new_merge_id(gui_manager),\
+                       path, name, action, type, FALSE);
+
+#define MENUITEM_ADDUI_ID(path, name, action, type,id)          \
+       id = gtk_ui_manager_new_merge_id(gtkut_ui_manager());    \
+       gtk_ui_manager_add_ui(gtkut_ui_manager(),                \
+                       id,                                      \
+                       path, name, action, type, FALSE);
+
+#define MENUITEM_REMUI(action_group,name,id) {                 \
+       GtkAction *action = gtk_action_group_get_action(action_group, name); \
+       if (action) gtk_action_group_remove_action(action_group, action);       \
+       if (id) gtk_ui_manager_remove_ui(gtkut_ui_manager(), id);       \
 }
 
 #define menu_set_insensitive_all(menu_shell) \
@@ -53,29 +76,17 @@ GtkWidget *menu_create_items        (GtkItemFactoryEntry    *entries,
                                 const gchar            *path,
                                 GtkItemFactory        **factory,
                                 gpointer                data);
-GtkWidget *popupmenu_create    (GtkWidget *window,
-                                GtkItemFactoryEntry *entries,
-                                guint n_entries,
-                                const gchar *path,
-                                gpointer data);
 gchar *menu_translate          (const gchar *path, gpointer data);
 
-GString *menu_factory_get_rc   (const gchar            *path);
-void menu_factory_clear_rc     (const gchar            *rc_str);
-void menu_factory_copy_rc      (const gchar            *src_path,
-                                const gchar            *dest_path);
-
 void menu_set_sensitive                (GtkItemFactory         *ifactory,
                                 const gchar            *path,
                                 gboolean                sensitive);
-void menu_set_sensitive_all    (GtkMenuShell           *menu_shell,
-                                gboolean                sensitive);
 
-void menu_set_toggle           (GtkItemFactory         *ifactory,
-                                const gchar            *path,
-                                gboolean                active);
-void menu_toggle_toggle                (GtkItemFactory         *ifactory,
-                                const gchar            *path);
+void cm_menu_set_sensitive(gchar *menu, gboolean sensitive);
+
+void menu_set_active           (GtkItemFactory         *ifactory,
+                                const gchar            *path,
+                                gboolean                is_active);
 void menu_button_position      (GtkMenu                *menu,
                                 gint                   *x,
                                 gint                   *y,
@@ -85,10 +96,7 @@ void menu_button_position    (GtkMenu                *menu,
 gint menu_find_option_menu_index(GtkOptionMenu         *optmenu,
                                 gpointer                data,
                                 GCompareFunc            func);
-
+void menu_set_sensitive_all(GtkMenuShell *menu_shell, gboolean sensitive);
 void menu_connect_identical_items(void);
 
-void menu_select_by_data       (GtkMenu                *menu,
-                                gpointer                data);
-
 #endif /* __MENU_H__ */