~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to plug-ins/imagemap/imap_stock.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *
4
4
 * Generates clickable image maps.
5
5
 *
6
 
 * Copyright (C) 1998-2004 Maurits Rijk  m.rijk@chello.nl
 
6
 * Copyright (C) 1998-2005 Maurits Rijk  m.rijk@chello.nl
7
7
 *
8
8
 * This program is free software; you can redistribute it and/or modify
9
9
 * it under the terms of the GNU General Public License as published by
29
29
 
30
30
#include "images/imap-stock-pixbufs.h"
31
31
 
32
 
#include "libgimp/stdplugins-intl.h"
33
 
 
34
32
static GtkIconFactory *imap_icon_factory = NULL;
35
33
 
36
34
static GtkStockItem imap_stock_items[] =
37
35
{
38
 
  { IMAP_STOCK_ARROW,           NULL, 0, 0, NULL },
39
36
  { IMAP_STOCK_CIRCLE,          NULL, 0, 0, NULL },
40
37
  { IMAP_STOCK_COORD,           NULL, 0, 0, NULL },
41
38
  { IMAP_STOCK_DIMENSION,       NULL, 0, 0, NULL },
42
39
  { IMAP_STOCK_JAVA,            NULL, 0, 0, NULL },
43
 
  { IMAP_STOCK_LINK,            NULL, 0, 0, NULL },
44
 
  { IMAP_STOCK_MAP_INFO,
45
 
    N_("Edit Map Info..."), 0, 0, GETTEXT_PACKAGE "-std-plug-ins" },
46
40
  { IMAP_STOCK_POLYGON,         NULL, 0, 0, NULL },
47
41
  { IMAP_STOCK_RECTANGLE,       NULL, 0, 0, NULL },
48
42
  { IMAP_STOCK_TO_BACK,         NULL, 0, 0, NULL },
81
75
{
82
76
   imap_icon_factory = gtk_icon_factory_new ();
83
77
 
84
 
   add_stock_icon (IMAP_STOCK_ARROW,     stock_arrow);
85
78
   add_stock_icon (IMAP_STOCK_CIRCLE,    stock_circle);
86
79
   add_stock_icon (IMAP_STOCK_COORD,     stock_coord);
87
80
   add_stock_icon (IMAP_STOCK_DIMENSION, stock_dimension);
88
81
   add_stock_icon (IMAP_STOCK_JAVA,      stock_java);
89
 
   add_stock_icon (IMAP_STOCK_LINK,      stock_link);
90
 
   add_stock_icon (IMAP_STOCK_MAP_INFO,  stock_map_info);
91
82
   add_stock_icon (IMAP_STOCK_POLYGON,   stock_polygon);
92
83
   add_stock_icon (IMAP_STOCK_RECTANGLE, stock_rectangle);
93
84
   add_stock_icon (IMAP_STOCK_TO_BACK,   stock_to_back);