root / src / menu.h @ 1
History | View | Annotate | Download (2.7 kB)
| 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 MENU_VAL_ID "Sylpheed::Menu::ValueID" |
| 31 | |
| 32 | #define MENUITEM_ADD(menu, menuitem, label, data) \
|
| 33 | { \
|
| 34 | if (label) \
|
| 35 | menuitem = gtk_menu_item_new_with_label(label); \ |
| 36 | else { \
|
| 37 | menuitem = gtk_menu_item_new(); \ |
| 38 | gtk_widget_set_sensitive(menuitem, FALSE); \ |
| 39 | } \ |
| 40 | gtk_widget_show(menuitem); \ |
| 41 | gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); \ |
| 42 | if (data) \
|
| 43 | g_object_set_data(G_OBJECT(menuitem), \ |
| 44 | MENU_VAL_ID, \ |
| 45 | GINT_TO_POINTER(data)); \ |
| 46 | } |
| 47 | |
| 48 | #define menu_set_insensitive_all(menu_shell) \
|
| 49 | menu_set_sensitive_all(menu_shell, FALSE); |
| 50 | |
| 51 | GtkWidget *menubar_create (GtkWidget *window, |
| 52 | GtkItemFactoryEntry *entries, |
| 53 | guint n_entries, |
| 54 | const gchar *path,
|
| 55 | gpointer data); |
| 56 | GtkWidget *menu_create_items (GtkItemFactoryEntry *entries, |
| 57 | guint n_entries, |
| 58 | const gchar *path,
|
| 59 | GtkItemFactory **factory, |
| 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_active (GtkItemFactory *ifactory,
|
| 74 | const gchar *path,
|
| 75 | gboolean is_active); |
| 76 | |
| 77 | void menu_button_position (GtkMenu *menu,
|
| 78 | gint *x, |
| 79 | gint *y, |
| 80 | gboolean *push_in, |
| 81 | gpointer user_data); |
| 82 | |
| 83 | gint menu_find_option_menu_index(GtkOptionMenu *optmenu, |
| 84 | gpointer data, |
| 85 | GCompareFunc func); |
| 86 | |
| 87 | gint menu_get_option_menu_active_index |
| 88 | (GtkOptionMenu *optmenu); |
| 89 | |
| 90 | #endif /* __MENU_H__ */ |