36363f8001332f81042c1feeb3fb257630310e2a
[platform/upstream/glib.git] / gio / gemblemedicon.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2
3 /* GIO - GLib Input, Output and Streaming Library
4  * 
5  * Copyright (C) 2006-2007 Red Hat, Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General
18  * Public License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
20  * Boston, MA 02111-1307, USA.
21  *
22  * Author: Matthias Clasen <mclasen@redhat.com>
23  *         Clemens N. Buss <cebuzz@gmail.com>
24  */
25
26 #include <config.h>
27
28 #include <string.h>
29
30 #include "gemblemedicon.h"
31 #include "glibintl.h"
32 #include "gioerror.h"
33
34 #include "gioalias.h"
35
36 /**
37  * SECTION:gemblemedicon
38  * @short_description: Icon with emblems
39  * @include: gio/gio.h
40  * @see_also: #GIcon, #GLoadableIcon, #GThemedIcon, #GEmblem
41  *
42  * #GEmblemedIcon is an implementation of #GIcon that supports
43  * adding an emblem to an icon. Adding multiple emblems to an
44  * icon is ensured via g_emblemed_icon_add_emblem(). 
45  *
46  * Note that #GEmblemedIcon allows no control over the position
47  * of the emblems. See also #GEmblem for more information.
48  **/
49
50 static void g_emblemed_icon_icon_iface_init (GIconIface *iface);
51
52 struct _GEmblemedIcon
53 {
54   GObject parent_instance;
55
56   GIcon *icon;
57   GList *emblems;
58 };
59
60 struct _GEmblemedIconClass
61 {
62   GObjectClass parent_class;
63 };
64
65 G_DEFINE_TYPE_WITH_CODE (GEmblemedIcon, g_emblemed_icon, G_TYPE_OBJECT,
66                          G_IMPLEMENT_INTERFACE (G_TYPE_ICON,
67                          g_emblemed_icon_icon_iface_init))
68
69
70 static void
71 g_emblemed_icon_finalize (GObject *object)
72 {
73   GEmblemedIcon *emblemed;
74
75   emblemed = G_EMBLEMED_ICON (object);
76
77   g_object_unref (emblemed->icon);
78   g_list_foreach (emblemed->emblems, (GFunc) g_object_unref, NULL);
79
80   (*G_OBJECT_CLASS (g_emblemed_icon_parent_class)->finalize) (object);
81 }
82
83 static void
84 g_emblemed_icon_class_init (GEmblemedIconClass *klass)
85 {
86   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
87   gobject_class->finalize = g_emblemed_icon_finalize;
88 }
89
90 static void
91 g_emblemed_icon_init (GEmblemedIcon *emblemed)
92 {
93 }
94
95 /**
96  * g_emblemed_icon_new:
97  * @icon: a #GIcon
98  * @emblem: a #GEmblem
99  *
100  * Creates a new emblemed icon for @icon with the emblem @emblem.
101  *
102  * Returns: a new #GIcon
103  *
104  * Since: 2.18
105  **/
106 GIcon *
107 g_emblemed_icon_new (GIcon   *icon,
108                      GEmblem *emblem)
109 {
110   GEmblemedIcon *emblemed;
111   
112   g_return_val_if_fail (G_IS_ICON (icon), NULL);
113   g_return_val_if_fail (!G_IS_EMBLEM (icon), NULL);
114   g_return_val_if_fail (G_IS_EMBLEM (emblem), NULL);
115
116   emblemed = G_EMBLEMED_ICON (g_object_new (G_TYPE_EMBLEMED_ICON, NULL));
117   emblemed->icon = g_object_ref (icon);
118   
119   g_emblemed_icon_add_emblem (emblemed, emblem);
120
121   return G_ICON (emblemed);
122 }
123
124
125 /**
126  * g_emblemed_icon_get_icon:
127  * @emblemed: a #GEmblemedIcon
128  *
129  * Gets the main icon for @emblemed.
130  *
131  * Returns: a #GIcon that is owned by @emblemed
132  *
133  * Since: 2.18
134  **/
135 GIcon *
136 g_emblemed_icon_get_icon (GEmblemedIcon *emblemed)
137 {
138   g_return_val_if_fail (G_IS_EMBLEMED_ICON (emblemed), NULL);
139
140   return emblemed->icon;
141 }
142
143 /**
144  * g_emblemed_icon_get_emblems:
145  * @emblemed: a #GEmblemedIcon
146  *
147  * Gets the list of emblems for the @icon.
148  *
149  * Returns: a #GList of #GEmblem <!-- -->s that is owned by @emblemed
150  *
151  * Since: 2.18
152  **/
153
154 GList *
155 g_emblemed_icon_get_emblems (GEmblemedIcon *emblemed)
156 {
157   g_return_val_if_fail (G_IS_EMBLEMED_ICON (emblemed), NULL);
158
159   return emblemed->emblems;
160 }
161
162
163 /**
164  * g_emblemed_icon_add_emblem:
165  * @emblemed: a #GEmblemedIcon
166  * @emblem: a #GEmblem
167  *
168  * Adds @emblem to the #GList of #GEmblem <!-- -->s.
169  *
170  * Since: 2.18
171  **/
172 void 
173 g_emblemed_icon_add_emblem (GEmblemedIcon *emblemed,
174                             GEmblem       *emblem)
175 {
176   g_return_if_fail (G_IS_EMBLEMED_ICON (emblemed));
177   g_return_if_fail (G_IS_EMBLEM (emblem));
178
179   g_object_ref (emblem);
180   emblemed->emblems = g_list_append (emblemed->emblems, emblem);
181 }
182
183 static guint
184 g_emblemed_icon_hash (GIcon *icon)
185 {
186   GEmblemedIcon *emblemed = G_EMBLEMED_ICON (icon);
187   GList *list;
188   guint hash = g_icon_hash (emblemed->icon);
189
190   for (list = emblemed->emblems; list != NULL; list = list->next)
191     hash ^= g_icon_hash (G_ICON (list->data));
192
193   return hash;
194 }
195
196 static gint
197 g_emblem_comp (GEmblem *a,
198                GEmblem *b)
199 {
200   guint hash_a = g_icon_hash (G_ICON (a));
201   guint hash_b = g_icon_hash (G_ICON (b));
202
203   if(hash_a < hash_b)
204     return -1;
205
206   if(hash_a == hash_b)
207     return 0;
208
209   return 1;
210 }
211
212 static gboolean
213 g_emblemed_icon_equal (GIcon *icon1,
214                        GIcon *icon2)
215 {
216   GEmblemedIcon *emblemed1 = G_EMBLEMED_ICON (icon1);
217   GEmblemedIcon *emblemed2 = G_EMBLEMED_ICON (icon2);
218   GList *list1, *list2;
219
220   if (!g_icon_equal (emblemed1->icon, emblemed2->icon))
221     return FALSE;
222
223   list1 = emblemed1->emblems;
224   list2 = emblemed2->emblems;
225
226   list1 = g_list_sort (list1, (GCompareFunc) g_emblem_comp);
227   list2 = g_list_sort (list2, (GCompareFunc) g_emblem_comp);
228
229   while (list1 && list2)
230   {
231     if (!g_icon_equal (G_ICON (list1->data), G_ICON (list2->data)))
232         return FALSE;
233     
234     list1 = list1->next;
235     list2 = list2->next;
236   }
237   
238   return list1 == NULL && list2 == NULL;
239 }
240
241 static gboolean
242 g_emblemed_icon_to_tokens (GIcon *icon,
243                            GPtrArray *tokens,
244                            gint  *out_version)
245 {
246   GEmblemedIcon *emblemed_icon = G_EMBLEMED_ICON (icon);
247   GList *l;
248   char *s;
249
250   /* GEmblemedIcons are encoded as
251    *
252    *   <encoded_icon> [<encoded_emblem_icon>]*
253    */
254
255   g_return_val_if_fail (out_version != NULL, FALSE);
256
257   *out_version = 0;
258
259   s = g_icon_to_string (emblemed_icon->icon);
260   if (s == NULL)
261     return FALSE;
262
263   g_ptr_array_add (tokens, s);
264
265   for (l = emblemed_icon->emblems; l != NULL; l = l->next)
266     {
267       GIcon *emblem_icon = G_ICON (l->data);
268
269       s = g_icon_to_string (emblem_icon);
270       if (s == NULL)
271         return FALSE;
272       
273       g_ptr_array_add (tokens, s);
274     }
275
276   return TRUE;
277 }
278
279 static GIcon *
280 g_emblemed_icon_from_tokens (gchar  **tokens,
281                              gint     num_tokens,
282                              gint     version,
283                              GError **error)
284 {
285   GEmblemedIcon *emblemed_icon;
286   char *s;
287   int n;
288
289   emblemed_icon = NULL;
290
291   if (version != 0)
292     {
293       g_set_error (error,
294                    G_IO_ERROR,
295                    G_IO_ERROR_INVALID_ARGUMENT,
296                    _("Can't handle version %d of GEmblemedIcon encoding"),
297                    version);
298       goto fail;
299     }
300
301   if (num_tokens < 1)
302     {
303       g_set_error (error,
304                    G_IO_ERROR,
305                    G_IO_ERROR_INVALID_ARGUMENT,
306                    _("Malformed number of tokens (%d) in GEmblemedIcon encoding"),
307                    num_tokens);
308       goto fail;
309     }
310
311   emblemed_icon = g_object_new (G_TYPE_EMBLEMED_ICON, NULL);
312   emblemed_icon->icon = g_icon_new_for_string (tokens[0], error);
313   if (emblemed_icon->icon == NULL)
314     goto fail;
315
316   for (n = 1; n < num_tokens; n++)
317     {
318       GIcon *emblem;
319
320       emblem = g_icon_new_for_string (tokens[n], error);
321       if (emblem == NULL)
322         goto fail;
323
324       if (!G_IS_EMBLEM (emblem))
325         {
326           g_set_error_literal (error,
327                                G_IO_ERROR,
328                                G_IO_ERROR_INVALID_ARGUMENT,
329                                _("Expected a GEmblem for GEmblemedIcon"));
330           g_object_unref (emblem);
331           goto fail;
332         }
333
334       emblemed_icon->emblems = g_list_append (emblemed_icon->emblems, emblem);
335     }
336
337   return G_ICON (emblemed_icon);
338
339  fail:
340   if (emblemed_icon != NULL)
341     g_object_unref (emblemed_icon);
342   return NULL;
343 }
344
345 static void
346 g_emblemed_icon_icon_iface_init (GIconIface *iface)
347 {
348   iface->hash = g_emblemed_icon_hash;
349   iface->equal = g_emblemed_icon_equal;
350   iface->to_tokens = g_emblemed_icon_to_tokens;
351   iface->from_tokens = g_emblemed_icon_from_tokens;
352 }
353
354 #define __G_EMBLEMED_ICON_C__
355 #include "gioaliasdef.c"