]> Pileus Git - ~andy/gtk/blob - gtk/gtkstock.c
Add a comment about unused bits.
[~andy/gtk] / gtk / gtkstock.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 2000 Red Hat, Inc. 
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include <config.h>
28 #include <string.h>
29
30 #include "gtkstock.h"
31 #include "gtkiconfactory.h"
32 #include "gtkintl.h"
33 #include <gdk/gdkkeysyms.h>
34
35 static GHashTable *stock_hash = NULL;
36 static void init_stock_hash (void);
37
38 /* We use an unused modifier bit to mark stock items which
39  * must be freed when they are removed from the hash table.
40  */
41 #define NON_STATIC_MASK (1 << 29)
42
43 static void
44 real_add (const GtkStockItem *items,
45           guint               n_items,
46           gboolean            copy)
47 {
48   int i;
49
50   init_stock_hash ();
51
52   if (n_items == 0)
53     return;
54
55   i = 0;
56   while (i < n_items)
57     {
58       gpointer old_key, old_value;
59       const GtkStockItem *item = &items[i];
60
61       if (item->modifier & NON_STATIC_MASK)
62         {
63           g_warning ("Bit 29 set in stock accelerator.\n");
64           copy = TRUE;
65         }
66
67       if (copy)
68         {
69           item = gtk_stock_item_copy (item);
70           ((GtkStockItem *)item)->modifier |= NON_STATIC_MASK;
71         }
72
73       if (g_hash_table_lookup_extended (stock_hash, item->stock_id,
74                                         &old_key, &old_value))
75         {
76           g_hash_table_remove (stock_hash, old_key);
77           if (((GtkStockItem *)old_value)->modifier & NON_STATIC_MASK)
78             gtk_stock_item_free (old_value);
79         }
80       
81       g_hash_table_insert (stock_hash,
82                            (gchar*)item->stock_id, (GtkStockItem*)item);
83
84       ++i;
85     }
86 }
87
88 /**
89  * gtk_stock_add:
90  * @items: a #GtkStockItem or array of items
91  * @n_items: number of #GtkStockItem in @items
92  *
93  * Registers each of the stock items in @items. If an item already
94  * exists with the same stock ID as one of the @items, the old item
95  * gets replaced. The stock items are copied, so GTK+ does not hold
96  * any pointer into @items and @items can be freed. Use
97  * gtk_stock_add_static() if @items is persistent and GTK+ need not
98  * copy the array.
99  * 
100  **/
101 void
102 gtk_stock_add (const GtkStockItem *items,
103                guint               n_items)
104 {
105   g_return_if_fail (items != NULL);
106
107   real_add (items, n_items, TRUE);
108 }
109
110 /**
111  * gtk_stock_add_static:
112  * @items: a #GtkStockItem or array of #GtkStockItem
113  * @n_items: number of items
114  *
115  * Same as gtk_stock_add(), but doesn't copy @items, so
116  * @items must persist until application exit.
117  * 
118  **/
119 void
120 gtk_stock_add_static (const GtkStockItem *items,
121                       guint               n_items)
122 {
123   g_return_if_fail (items != NULL);
124
125   real_add (items, n_items, FALSE);
126 }
127
128 /**
129  * gtk_stock_lookup:
130  * @stock_id: a stock item name
131  * @item: stock item to initialize with values
132  * 
133  * Fills @item with the registered values for @stock_id, returning %TRUE
134  * if @stock_id was known.
135  * 
136  * 
137  * Return value: %TRUE if @item was initialized
138  **/
139 gboolean
140 gtk_stock_lookup (const gchar  *stock_id,
141                   GtkStockItem *item)
142 {
143   const GtkStockItem *found;
144
145   g_return_val_if_fail (stock_id != NULL, FALSE);
146   g_return_val_if_fail (item != NULL, FALSE);
147
148   init_stock_hash ();
149
150   found = g_hash_table_lookup (stock_hash, stock_id);
151
152   if (found)
153     {
154       *item = *found;
155       item->modifier &= ~NON_STATIC_MASK;
156       if (item->label)
157         item->label = dgettext (item->translation_domain, item->label);
158     }
159
160   return found != NULL;
161 }
162
163 static void
164 listify_foreach (gpointer key, gpointer value, gpointer data)
165 {
166   GSList **list = data;
167
168   *list = g_slist_prepend (*list, key);
169 }
170
171 static GSList *
172 g_hash_table_get_keys (GHashTable *table)
173 {
174   GSList *list = NULL;
175
176   g_hash_table_foreach (table, listify_foreach, &list);
177
178   return list;
179 }
180
181 /**
182  * gtk_stock_list_ids:
183  * 
184  * Retrieves a list of all known stock IDs added to a #GtkIconFactory
185  * or registered with gtk_stock_add(). The list must be freed with g_slist_free(),
186  * and each string in the list must be freed with g_free().
187  * 
188  * Return value: a list of known stock IDs
189  **/
190 GSList*
191 gtk_stock_list_ids (void)
192 {
193   GSList *ids;
194   GSList *icon_ids;
195   GSList *retval;
196   GSList *tmp_list;
197   const gchar *last_id;
198   
199   init_stock_hash ();
200
201   ids = g_hash_table_get_keys (stock_hash);
202   icon_ids = _gtk_icon_factory_list_ids ();
203   ids = g_slist_concat (ids, icon_ids);
204
205   ids = g_slist_sort (ids, (GCompareFunc)strcmp);
206
207   last_id = NULL;
208   retval = NULL;
209   tmp_list = ids;
210   while (tmp_list != NULL)
211     {
212       GSList *next;
213
214       next = g_slist_next (tmp_list);
215
216       if (last_id && strcmp (tmp_list->data, last_id) == 0)
217         {
218           /* duplicate, ignore */
219         }
220       else
221         {
222           retval = g_slist_prepend (retval, g_strdup (tmp_list->data));
223           last_id = tmp_list->data;
224         }
225
226       g_slist_free_1 (tmp_list);
227       
228       tmp_list = next;
229     }
230
231   return retval;
232 }
233
234 /**
235  * gtk_stock_item_copy:
236  * @item: a #GtkStockItem
237  * 
238  * Copies a stock item, mostly useful for language bindings and not in applications.
239  * 
240  * Return value: a new #GtkStockItem
241  **/
242 GtkStockItem *
243 gtk_stock_item_copy (const GtkStockItem *item)
244 {
245   GtkStockItem *copy;
246
247   g_return_val_if_fail (item != NULL, NULL);
248
249   copy = g_new (GtkStockItem, 1);
250
251   *copy = *item;
252
253   copy->stock_id = g_strdup (item->stock_id);
254   copy->label = g_strdup (item->label);
255   copy->translation_domain = g_strdup (item->translation_domain);
256
257   return copy;
258 }
259
260 /**
261  * gtk_stock_item_free:
262  * @item: a #GtkStockItem
263  *
264  * Frees a stock item allocated on the heap, such as one returned by
265  * gtk_stock_item_copy(). Also frees the fields inside the stock item,
266  * if they are not %NULL.
267  * 
268  **/
269 void
270 gtk_stock_item_free (GtkStockItem *item)
271 {
272   g_return_if_fail (item != NULL);
273
274   g_free ((gchar*)item->stock_id);
275   g_free ((gchar*)item->label);
276   g_free ((gchar*)item->translation_domain);
277
278   g_free (item);
279 }
280
281 static const GtkStockItem builtin_items [] =
282 {
283   /* KEEP IN SYNC with gtkiconfactory.c stock icons, when appropriate */ 
284  
285   { GTK_STOCK_DIALOG_INFO, N_("Information"), 0, 0, GETTEXT_PACKAGE },
286   { GTK_STOCK_DIALOG_WARNING, N_("Warning"), 0, 0, GETTEXT_PACKAGE },
287   { GTK_STOCK_DIALOG_ERROR, N_("Error"), 0, 0, GETTEXT_PACKAGE },
288   { GTK_STOCK_DIALOG_QUESTION, N_("Question"), 0, 0, GETTEXT_PACKAGE },
289
290   /*  FIXME these need accelerators when appropriate, and
291    * need the mnemonics to be rationalized
292    */
293   { GTK_STOCK_ADD, N_("_Add"), 0, 0, GETTEXT_PACKAGE },
294   { GTK_STOCK_APPLY, N_("_Apply"), 0, 0, GETTEXT_PACKAGE },
295   { GTK_STOCK_BOLD, N_("_Bold"), 0, 0, GETTEXT_PACKAGE },
296   { GTK_STOCK_CANCEL, N_("_Cancel"), 0, 0, GETTEXT_PACKAGE },
297   { GTK_STOCK_CDROM, N_("_CD-Rom"), 0, 0, GETTEXT_PACKAGE },
298   { GTK_STOCK_CLEAR, N_("_Clear"), 0, 0, GETTEXT_PACKAGE },
299   { GTK_STOCK_CLOSE, N_("_Close"), GDK_CONTROL_MASK, 'w', GETTEXT_PACKAGE },
300   { GTK_STOCK_CONVERT, N_("_Convert"), 0, 0, GETTEXT_PACKAGE },
301   { GTK_STOCK_COPY, N_("_Copy"), GDK_CONTROL_MASK, 'c', GETTEXT_PACKAGE },
302   { GTK_STOCK_CUT, N_("Cu_t"), GDK_CONTROL_MASK, 'x', GETTEXT_PACKAGE },
303   { GTK_STOCK_DELETE, N_("_Delete"), 0, 0, GETTEXT_PACKAGE },
304   { GTK_STOCK_EXECUTE, N_("_Execute"), 0, 0, GETTEXT_PACKAGE },
305   { GTK_STOCK_FIND, N_("_Find"), GDK_CONTROL_MASK, 'f', GETTEXT_PACKAGE },
306   { GTK_STOCK_FIND_AND_REPLACE, N_("Find and _Replace"), GDK_CONTROL_MASK, 'r', GETTEXT_PACKAGE },
307   { GTK_STOCK_FLOPPY, N_("_Floppy"), 0, 0, GETTEXT_PACKAGE },
308   { GTK_STOCK_GOTO_BOTTOM, N_("_Bottom"), 0, 0, GETTEXT_PACKAGE },
309   { GTK_STOCK_GOTO_FIRST, N_("_First"), 0, 0, GETTEXT_PACKAGE },
310   { GTK_STOCK_GOTO_LAST, N_("_Last"), 0, 0, GETTEXT_PACKAGE },
311   { GTK_STOCK_GOTO_TOP, N_("_Top"), 0, 0, GETTEXT_PACKAGE },
312   { GTK_STOCK_GO_BACK, N_("_Back"), 0, 0, GETTEXT_PACKAGE },
313   { GTK_STOCK_GO_DOWN, N_("_Down"), 0, 0, GETTEXT_PACKAGE },
314   { GTK_STOCK_GO_FORWARD, N_("_Forward"), 0, 0, GETTEXT_PACKAGE },
315   { GTK_STOCK_GO_UP, N_("_Up"), 0, 0, GETTEXT_PACKAGE },
316   { GTK_STOCK_HARDDISK, N_("_Harddisk"), 0, 0, GETTEXT_PACKAGE },
317   { GTK_STOCK_HELP, N_("_Help"), GDK_CONTROL_MASK, 'h', GETTEXT_PACKAGE },
318   { GTK_STOCK_HOME, N_("_Home"), 0, 0, GETTEXT_PACKAGE },
319   { GTK_STOCK_INDENT, N_("Increase Indent"), 0, 0, GETTEXT_PACKAGE },
320   { GTK_STOCK_UNINDENT, N_("Decrease Indent"), 0, 0, GETTEXT_PACKAGE },
321   { GTK_STOCK_INDEX, N_("_Index"), 0, 0, GETTEXT_PACKAGE },
322   { GTK_STOCK_ITALIC, N_("_Italic"), 0, 0, GETTEXT_PACKAGE },
323   { GTK_STOCK_JUMP_TO, N_("_Jump to"), 0, 0, GETTEXT_PACKAGE },
324   { GTK_STOCK_JUSTIFY_CENTER, N_("_Center"), 0, 0, GETTEXT_PACKAGE },
325   { GTK_STOCK_JUSTIFY_FILL, N_("_Fill"), 0, 0, GETTEXT_PACKAGE },
326   { GTK_STOCK_JUSTIFY_LEFT, N_("_Left"), 0, 0, GETTEXT_PACKAGE },
327   { GTK_STOCK_JUSTIFY_RIGHT, N_("_Right"), 0, 0, GETTEXT_PACKAGE },
328   { GTK_STOCK_NETWORK, N_("_Network"), 0, 0, GETTEXT_PACKAGE },
329   { GTK_STOCK_NEW, N_("_New"), GDK_CONTROL_MASK, 'n', GETTEXT_PACKAGE },
330   { GTK_STOCK_NO, N_("_No"), 0, 0, GETTEXT_PACKAGE },
331   { GTK_STOCK_OK, N_("_OK"), 0, 0, GETTEXT_PACKAGE },
332   { GTK_STOCK_OPEN, N_("_Open"), GDK_CONTROL_MASK, 'o', GETTEXT_PACKAGE },
333   { GTK_STOCK_PASTE, N_("_Paste"), GDK_CONTROL_MASK, 'v', GETTEXT_PACKAGE },
334   { GTK_STOCK_PREFERENCES, N_("_Preferences"), 0, 0, GETTEXT_PACKAGE },
335   { GTK_STOCK_PRINT, N_("_Print"), 0, 0, GETTEXT_PACKAGE },
336   { GTK_STOCK_PRINT_PREVIEW, N_("Print Pre_view"), 0, 0, GETTEXT_PACKAGE },
337   { GTK_STOCK_PROPERTIES, N_("_Properties"), 0, 0, GETTEXT_PACKAGE },
338   { GTK_STOCK_QUIT, N_("_Quit"), GDK_CONTROL_MASK, 'q', GETTEXT_PACKAGE },
339   { GTK_STOCK_REDO, N_("_Redo"), 0, 0, GETTEXT_PACKAGE },
340   { GTK_STOCK_REFRESH, N_("_Refresh"), 0, 0, GETTEXT_PACKAGE },
341   { GTK_STOCK_REMOVE, N_("_Remove"), 0, 0, GETTEXT_PACKAGE },
342   { GTK_STOCK_REVERT_TO_SAVED, N_("_Revert"), 0, 0, GETTEXT_PACKAGE },
343   { GTK_STOCK_SAVE, N_("_Save"), GDK_CONTROL_MASK, 's', GETTEXT_PACKAGE },
344   { GTK_STOCK_SAVE_AS, N_("Save _As"), 0, 0, GETTEXT_PACKAGE },
345   { GTK_STOCK_SELECT_COLOR, N_("_Color"), 0, 0, GETTEXT_PACKAGE },
346   { GTK_STOCK_SELECT_FONT, N_("_Font"), 0, 0, GETTEXT_PACKAGE },
347   { GTK_STOCK_SORT_ASCENDING, N_("_Ascending"), 0, 0, GETTEXT_PACKAGE },
348   { GTK_STOCK_SORT_DESCENDING, N_("_Descending"), 0, 0, GETTEXT_PACKAGE },
349   { GTK_STOCK_SPELL_CHECK, N_("_Spell Check"), 0, 0, GETTEXT_PACKAGE },
350   { GTK_STOCK_STOP, N_("_Stop"), 0, 0, GETTEXT_PACKAGE },
351   { GTK_STOCK_STRIKETHROUGH, N_("_Strikethrough"), 0, 0, GETTEXT_PACKAGE },
352   { GTK_STOCK_UNDELETE, N_("_Undelete"), 0, 0, GETTEXT_PACKAGE },
353   { GTK_STOCK_UNDERLINE, N_("_Underline"), 0, 0, GETTEXT_PACKAGE },
354   { GTK_STOCK_UNDO, N_("_Undo"), 0, 0, GETTEXT_PACKAGE },
355   { GTK_STOCK_YES, N_("_Yes"), 0, 0, GETTEXT_PACKAGE },
356   { GTK_STOCK_ZOOM_100, N_("_Normal Size"), 0, 0, GETTEXT_PACKAGE },
357   { GTK_STOCK_ZOOM_FIT, N_("Best _Fit"), 0, 0, GETTEXT_PACKAGE },
358   { GTK_STOCK_ZOOM_IN, N_("Zoom _In"), 0, 0, GETTEXT_PACKAGE },
359   { GTK_STOCK_ZOOM_OUT, N_("Zoom _Out"), 0, 0, GETTEXT_PACKAGE }
360 };
361
362 static void
363 init_stock_hash (void)
364 {
365   if (stock_hash == NULL)
366     {
367       stock_hash = g_hash_table_new (g_str_hash, g_str_equal);
368
369       gtk_stock_add_static (builtin_items, G_N_ELEMENTS (builtin_items));
370     }
371 }