From c51ef797a707f4e2c6f9688d4378f2b0e9898a66 Mon Sep 17 00:00:00 2001 From: Perberos Date: Thu, 1 Dec 2011 22:56:10 -0300 Subject: moving from https://github.com/perberos/mate-desktop-environment --- mate-panel/panel-stock-icons.c | 141 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) create mode 100644 mate-panel/panel-stock-icons.c (limited to 'mate-panel/panel-stock-icons.c') diff --git a/mate-panel/panel-stock-icons.c b/mate-panel/panel-stock-icons.c new file mode 100644 index 00000000..f7621a77 --- /dev/null +++ b/mate-panel/panel-stock-icons.c @@ -0,0 +1,141 @@ +/* + * panel-stock-icons.c panel stock icons registration + * + * Copyright (C) 2002 Sun Microsystems, Inc. + * + * 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 (at your option) any later version. + * + * 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 + * 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. + * + * Authors: + * Mark McLoughlin + */ + +#include "config.h" + +#include "panel-stock-icons.h" + +#include +#include + +#include "panel-icon-names.h" + +static GtkIconSize panel_menu_icon_size = 0; +static GtkIconSize panel_menu_bar_icon_size = 0; + +GtkIconSize +panel_menu_icon_get_size (void) +{ + return panel_menu_icon_size; +} + +GtkIconSize +panel_menu_bar_icon_get_size (void) +{ + return panel_menu_bar_icon_size; +} + +typedef struct { + char *stock_id; + char *icon; +} PanelStockIcon; + +static PanelStockIcon stock_icons [] = { + { PANEL_STOCK_FORCE_QUIT, PANEL_ICON_FORCE_QUIT } +}; + +static void +panel_init_stock_icons (GtkIconFactory *factory) +{ + GtkIconSource *source; + int i; + + + source = gtk_icon_source_new (); + + for (i = 0; i < G_N_ELEMENTS (stock_icons); i++) { + GtkIconSet *set; + + gtk_icon_source_set_icon_name (source, stock_icons [i].icon); + + set = gtk_icon_set_new (); + gtk_icon_set_add_source (set, source); + + gtk_icon_factory_add (factory, stock_icons [i].stock_id, set); + gtk_icon_set_unref (set); + } + + gtk_icon_source_free (source); + +} + +typedef struct { + char *stock_id; + char *stock_icon_id; + char *label; +} PanelStockItem; + +static PanelStockItem stock_items [] = { + { PANEL_STOCK_EXECUTE, GTK_STOCK_EXECUTE, N_("_Run") }, + { PANEL_STOCK_FORCE_QUIT, PANEL_STOCK_FORCE_QUIT, N_("_Force quit") }, + { PANEL_STOCK_CLEAR, GTK_STOCK_CLEAR, N_("C_lear") }, + { PANEL_STOCK_DONT_DELETE, GTK_STOCK_CANCEL, N_("D_on't Delete") } +}; + +static void +panel_init_stock_items (GtkIconFactory *factory) +{ + GtkStockItem *items; + int i; + + items = g_new (GtkStockItem, G_N_ELEMENTS (stock_items)); + + for (i = 0; i < G_N_ELEMENTS (stock_items); i++) { + GtkIconSet *icon_set; + + items [i].stock_id = g_strdup (stock_items [i].stock_id); + items [i].label = g_strdup (stock_items [i].label); + items [i].modifier = 0; + items [i].keyval = 0; + items [i].translation_domain = g_strdup (GETTEXT_PACKAGE); + + /* FIXME: does this take into account the theme? */ + icon_set = gtk_icon_factory_lookup_default (stock_items [i].stock_icon_id); + gtk_icon_factory_add (factory, stock_items [i].stock_id, icon_set); + } + + gtk_stock_add_static (items, G_N_ELEMENTS (stock_items)); +} + +void +panel_init_stock_icons_and_items (void) +{ + GtkIconFactory *factory; + + panel_menu_icon_size = gtk_icon_size_register ("panel-menu", + PANEL_DEFAULT_MENU_ICON_SIZE, + PANEL_DEFAULT_MENU_ICON_SIZE); + + panel_menu_bar_icon_size = gtk_icon_size_register ("panel-foobar", + PANEL_DEFAULT_MENU_BAR_ICON_SIZE, + PANEL_DEFAULT_MENU_BAR_ICON_SIZE); + + factory = gtk_icon_factory_new (); + gtk_icon_factory_add_default (factory); + + panel_init_stock_icons (factory); + panel_init_stock_items (factory); + + g_object_unref (factory); +} -- cgit v1.2.1