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

« back to all changes in this revision

Viewing changes to plug-ins/gfig/gfig-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:
48
48
  { GFIG_STOCK_MOVE_OBJECT,   N_("Move an object"),      0, 0, NULL },
49
49
  { GFIG_STOCK_MOVE_POINT,    N_("Move a single point"), 0, 0, NULL },
50
50
  { GFIG_STOCK_POLYGON,       N_("Create reg polygon"),  0, 0, NULL },
 
51
  { GFIG_STOCK_RECTANGLE,     N_("Create rectangle"),    0, 0, NULL },
51
52
  { GFIG_STOCK_SELECT_OBJECT, N_("Select an object"),    0, 0, NULL },
52
53
  { GFIG_STOCK_SHOW_ALL,      N_("Show all objects"),    0, 0, NULL },
53
54
  { GFIG_STOCK_SPIRAL,        N_("Create spiral"),       0, 0, NULL },
54
55
  { GFIG_STOCK_STAR,          N_("Create star"),         0, 0, NULL }
55
56
};
56
57
 
57
 
 
58
58
static void
59
59
add_stock_icon (const gchar  *stock_id,
60
60
                GtkIconSize   size,
104
104
  add_stock_icon (GFIG_STOCK_MOVE_OBJECT,   GTK_ICON_SIZE_BUTTON, stock_move_object);
105
105
  add_stock_icon (GFIG_STOCK_MOVE_POINT,    GTK_ICON_SIZE_BUTTON, stock_move_point);
106
106
  add_stock_icon (GFIG_STOCK_POLYGON,       GTK_ICON_SIZE_BUTTON, stock_polygon);
 
107
  add_stock_icon (GFIG_STOCK_RECTANGLE,     GTK_ICON_SIZE_BUTTON, stock_rectangle);
107
108
  add_stock_icon (GFIG_STOCK_SELECT_OBJECT, GTK_ICON_SIZE_BUTTON, stock_select_object);
108
109
  add_stock_icon (GFIG_STOCK_SHOW_ALL,      GTK_ICON_SIZE_BUTTON, stock_show_all);
109
110
  add_stock_icon (GFIG_STOCK_SPIRAL,        GTK_ICON_SIZE_BUTTON, stock_spiral);
110
111
  add_stock_icon (GFIG_STOCK_STAR,          GTK_ICON_SIZE_BUTTON, stock_star);
111
112
 
112
 
  add_stock_icon (GFIG_STOCK_LOGO,          GTK_ICON_SIZE_DIALOG, stock_logo);
113
 
 
114
113
  gtk_icon_factory_add_default (gfig_icon_factory);
115
114
 
116
115
  gtk_stock_add_static (gfig_stock_items, G_N_ELEMENTS (gfig_stock_items));