From 51fe60cd69cd77fd63dbdd20b3e5fcc6bb650c8a Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sat, 14 Nov 2009 00:20:35 -0500 Subject: =?UTF-8?q?Bug=C2=A0600714=20-=20No=20label=20colors=20in=20popup?= =?UTF-8?q?=20menu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mail/e-mail-label-action.c | 155 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 155 insertions(+) create mode 100644 mail/e-mail-label-action.c (limited to 'mail/e-mail-label-action.c') diff --git a/mail/e-mail-label-action.c b/mail/e-mail-label-action.c new file mode 100644 index 0000000000..2647564223 --- /dev/null +++ b/mail/e-mail-label-action.c @@ -0,0 +1,155 @@ +/* + * e-mail-label-action.c + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) version 3. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with the program; if not, see + * + * + * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) + * + */ + +#include "e-mail-label-action.h" + +#include "e-util/e-binding.h" + +#define E_MAIL_LABEL_ACTION_GET_PRIVATE(obj) \ + (G_TYPE_INSTANCE_GET_PRIVATE \ + ((obj), E_TYPE_MAIL_LABEL_ACTION, EMailLabelActionPrivate)) + +struct _EMailLabelActionPrivate { + gint placeholder; +}; + +static gpointer parent_class; + +static void +mail_label_action_menu_item_realize_cb (GtkWidget *menu_item) +{ + GtkAction *action; + GtkActivatable *activatable; + GtkWidget *container; + GtkWidget *widget; + const gchar *stock_id; + + activatable = GTK_ACTIVATABLE (menu_item); + action = gtk_activatable_get_related_action (activatable); + g_return_if_fail (E_IS_MAIL_LABEL_ACTION (action)); + + /* Prevent GtkMenuItem's sync_action_properties() method from + * destroying our hack. Instead we use EBindings to keep the + * label and image in sync with the action. */ + gtk_activatable_set_use_action_appearance (activatable, FALSE); + + /* Remove the menu item's child widget. */ + widget = gtk_bin_get_child (GTK_BIN (menu_item)); + gtk_widget_destroy (widget); + + /* Now add our own child widget. */ + + widget = gtk_hbox_new (FALSE, 3); + gtk_container_add (GTK_CONTAINER (menu_item), widget); + gtk_widget_show (widget); + + container = widget; + + /*stock_id = gtk_action_get_stock_id (action); + widget = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_MENU);*/ + widget = gtk_action_create_icon (action, GTK_ICON_SIZE_MENU); + gtk_box_pack_start (GTK_BOX (container), widget, FALSE, FALSE, 0); + gtk_widget_show (widget); + + /* XXX GtkImage calls it "stock", not "stock-id". */ + /*e_mutual_binding_new (action, "stock-id", widget, "stock");*/ + + widget = gtk_label_new (NULL); + gtk_label_set_use_underline (GTK_LABEL (widget), TRUE); + gtk_misc_set_alignment (GTK_MISC (widget), 0.0, 0.5); + gtk_box_pack_start (GTK_BOX (container), widget, TRUE, TRUE, 0); + gtk_widget_show (widget); + + e_mutual_binding_new (action, "label", widget, "label"); +} + +static GtkWidget * +mail_label_action_create_menu_item (GtkAction *action) +{ + GtkWidget *menu_item; + + menu_item = gtk_check_menu_item_new (); + + g_signal_connect ( + menu_item, "realize", + G_CALLBACK (mail_label_action_menu_item_realize_cb), NULL); + + return menu_item; +} + +static void +mail_label_action_class_init (EMailLabelActionClass *class) +{ + GtkActionClass *action_class; + + parent_class = g_type_class_peek_parent (class); + g_type_class_add_private (class, sizeof (EMailLabelActionPrivate)); + + action_class = GTK_ACTION_CLASS (class); + action_class->create_menu_item = mail_label_action_create_menu_item; +} + +static void +mail_label_action_init (EMailLabelAction *action) +{ + action->priv = E_MAIL_LABEL_ACTION_GET_PRIVATE (action); +} + +GType +e_mail_label_action_get_type (void) +{ + static GType type = 0; + + if (G_UNLIKELY (type == 0)) { + static const GTypeInfo type_info = { + sizeof (EMailLabelActionClass), + (GBaseInitFunc) NULL, + (GBaseFinalizeFunc) NULL, + (GClassInitFunc) mail_label_action_class_init, + (GClassFinalizeFunc) NULL, + NULL, /* class_data */ + sizeof (EMailLabelAction), + 0, /* n_preallocs */ + (GInstanceInitFunc) mail_label_action_init, + NULL /* value_table */ + }; + + type = g_type_register_static ( + GTK_TYPE_TOGGLE_ACTION, + "EMailLabelAction", &type_info, 0); + } + + return type; +} + +EMailLabelAction * +e_mail_label_action_new (const gchar *name, + const gchar *label, + const gchar *tooltip, + const gchar *stock_id) +{ + g_return_val_if_fail (name != NULL, NULL); + + return g_object_new ( + E_TYPE_MAIL_LABEL_ACTION, + "name", name, "label", label, + "tooltip", tooltip, "stock-id", stock_id, NULL); +} -- cgit v1.2.3