e2630970337b3bbea6c84abc24a954c07ff51c17
[hildon] / hildon / hildon-banner.c
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2005, 2006, 2007 Nokia Corporation, all rights reserved.
5  *
6  * Contact: Rodrigo Novo <rodrigo.novo@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 /**
26  * SECTION:hildon-banner 
27  * @short_description: A widget used to display timed notifications. 
28  *
29  * #HildonBanner is a small, pop-up window that can be used to display
30  * a short, timed notification or information to the user. It can
31  * communicate that a task has been finished or that the application
32  * state has changed.
33  *
34  * Hildon provides convenient funtions to create and show banners. To
35  * create and show information banners you can use
36  * hildon_banner_show_information(), hildon_banner_show_informationf()
37  * or hildon_banner_show_information_with_markup().
38  *
39  * If the application window has set the _HILDON_DO_NOT_DISTURB flag (using
40  * hildon_gtk_window_set_do_not_disturb() for example), the banner will not
41  * be shown. If you need to override this flag for important information,
42  * you can use the method hildon_banner_show_information_override_dnd().
43  * Please, take into account that this is only for important information.
44  *
45  *
46  * Two more kinds of banners are maintained for backward compatibility
47  * but are no longer recommended in Hildon 2.2. These are the animated
48  * banner (created with hildon_banner_show_animation()) and the
49  * progress banner (created with hildon_banner_show_progress()). See
50  * hildon_gtk_window_set_progress_indicator() for the preferred way of
51  * showing progress notifications in Hildon 2.2.
52  *
53  * Information banners dissapear automatically after a certain
54  * period. This is stored in the #HildonBanner:timeout property (in
55  * miliseconds), and can be changed using hildon_banner_set_timeout().
56  *
57  * Note that #HildonBanner<!-- -->s should only be used to display
58  * non-critical pieces of information.
59  */
60
61 #ifdef                                          HAVE_CONFIG_H
62 #include                                        <config.h>
63 #endif
64
65 #include                                        <string.h>
66 #include                                        <X11/Xatom.h>
67 #include                                        <gdk/gdkx.h>
68
69 #undef                                          HILDON_DISABLE_DEPRECATED
70
71 #include                                        "hildon-banner.h"
72 #include                                        "hildon-banner-private.h"
73 #include                                        "hildon-defines.h"
74 #include                                        "hildon-gtk.h"
75
76 /* position relative to the screen */
77
78 #define                                         HILDON_BANNER_WINDOW_X 0
79
80 #define                                         HILDON_BANNER_WINDOW_Y HILDON_WINDOW_TITLEBAR_HEIGHT
81
82 /* max widths */
83
84 #define                                         HILDON_BANNER_LABEL_MAX_TIMED \
85                                                 (gdk_screen_width() - ((HILDON_MARGIN_TRIPLE) * 2))
86
87 #define                                         HILDON_BANNER_LABEL_MAX_PROGRESS 375 /*265*/
88
89 /* default timeout */
90
91 #define                                         HILDON_BANNER_DEFAULT_TIMEOUT 3000
92
93 /* default icons */
94
95 #define                                         HILDON_BANNER_DEFAULT_PROGRESS_ANIMATION "indicator_update"
96
97 /* animation related stuff */
98
99 #define                                         HILDON_BANNER_ANIMATION_FRAMERATE ((float)1000/150)
100
101 #define                                         HILDON_BANNER_ANIMATION_TMPL "indicator_update%d"
102
103 #define                                         HILDON_BANNER_ANIMATION_NFRAMES 8
104
105 enum 
106 {
107     PROP_0,
108     PROP_PARENT_WINDOW, 
109     PROP_IS_TIMED,
110     PROP_TIMEOUT
111 };
112
113 static GtkWidget*                               global_timed_banner = NULL;
114
115 static GQuark 
116 hildon_banner_timed_quark                       (void);
117
118 static void 
119 hildon_banner_bind_style                        (HildonBanner *self,
120                                                  const gchar *name);
121
122 static gboolean 
123 hildon_banner_timeout                           (gpointer data);
124
125 static gboolean 
126 hildon_banner_clear_timeout                     (HildonBanner *self);
127
128 static void 
129 hildon_banner_ensure_timeout                    (HildonBanner *self);
130
131 static void 
132 hildon_banner_set_property                      (GObject *object,
133                                                  guint prop_id,
134                                                  const GValue *value,
135                                                  GParamSpec *pspec);
136     
137 static void 
138 hildon_banner_get_property                      (GObject *object,
139                                                  guint prop_id,
140                                                  GValue *value,
141                                                  GParamSpec *pspec);
142
143 static void
144 hildon_banner_destroy                           (GtkObject *object);
145         
146 static GObject*
147 hildon_banner_real_get_instance                 (GObject *window, 
148                                                  gboolean timed);
149
150 static GObject* 
151 hildon_banner_constructor                       (GType type,
152                                                  guint n_construct_params,
153                                                  GObjectConstructParam *construct_params);
154
155 static void
156 hildon_banner_finalize                          (GObject *object);
157
158 static gboolean
159 hildon_banner_button_press_event                (GtkWidget* widget,
160                                                  GdkEventButton* event);
161
162 static gboolean 
163 hildon_banner_map_event                         (GtkWidget *widget, 
164                                                  GdkEventAny *event);
165 static void
166 hildon_banner_reset_wrap_state                  (HildonBanner *banner);
167
168 static void 
169 force_to_wrap_truncated                         (HildonBanner *banner);
170
171 static void
172 hildon_banner_check_position                    (GtkWidget *widget);
173
174 static void
175 hildon_banner_realize                           (GtkWidget *widget);
176
177 static void 
178 hildon_banner_class_init                        (HildonBannerClass *klass);
179
180 static void 
181 hildon_banner_init                              (HildonBanner *self);
182
183 static void
184 hildon_banner_ensure_child                      (HildonBanner *self, 
185                                                  GtkWidget *user_widget,
186                                                  guint pos,
187                                                  GType type,
188                                                  const gchar *first_property, 
189                                                  ...);
190
191 static HildonBanner*
192 hildon_banner_get_instance_for_widget           (GtkWidget *widget, 
193                                                  gboolean timed);
194
195 static void
196 hildon_banner_set_override_flag                 (HildonBanner *banner);
197
198 static GtkWidget*
199 hildon_banner_real_show_information             (GtkWidget *widget,
200                                                  const gchar *text,
201                                                  gboolean override_dnd);
202
203
204 G_DEFINE_TYPE (HildonBanner, hildon_banner, GTK_TYPE_WINDOW)
205
206 static GQuark 
207 hildon_banner_timed_quark                       (void)
208 {
209     static GQuark quark = 0;
210
211     if (G_UNLIKELY(quark == 0))
212         quark = g_quark_from_static_string ("hildon-banner-timed");
213
214     return quark;
215 }
216
217 /* Set the widget and label name to make the correct rc-style attached into them */
218 static void 
219 hildon_banner_bind_style                  (HildonBanner *self,
220                                            const gchar *name_sufix)
221 {
222     HildonBannerPrivate *priv = HILDON_BANNER_GET_PRIVATE (self);
223     gchar *name;
224
225     g_assert (priv);
226
227     name = g_strconcat ("HildonBannerLabel-", name_sufix, NULL);
228     gtk_widget_set_name (priv->label, name);
229     g_free (name);
230
231     name = g_strconcat ("HildonBanner-", name_sufix, NULL);
232     gtk_widget_set_name (GTK_WIDGET (self), name);
233     g_free (name);
234 }
235
236 /* In timeout function we automatically destroy timed banners */
237 static gboolean
238 simulate_close (GtkWidget* widget)
239 {
240     gboolean result = FALSE;
241
242     /* If the banner is currently visible (it normally should), 
243        we simulate clicking the close button of the window.
244        This allows applications to reuse the banner by prevent
245        closing it etc */
246     if (GTK_WIDGET_DRAWABLE (widget))
247     {
248         GdkEvent *event = gdk_event_new (GDK_DELETE);
249         event->any.window = g_object_ref (widget->window);
250         event->any.send_event = FALSE;
251         result = gtk_widget_event (widget, event);
252         gdk_event_free (event);
253     }
254
255     return result;
256 }
257
258 static gboolean 
259 hildon_banner_timeout                           (gpointer data)
260 {
261     GtkWidget *widget;
262     gboolean continue_timeout = FALSE;
263
264     GDK_THREADS_ENTER ();
265
266     g_assert (HILDON_IS_BANNER (data));
267
268     widget = GTK_WIDGET (data);
269     g_object_ref (widget);
270
271     continue_timeout = simulate_close (widget);
272
273     if (! continue_timeout) {
274         HildonBannerPrivate *priv = HILDON_BANNER_GET_PRIVATE (data);
275         priv->timeout_id = 0;
276         gtk_widget_destroy (widget);
277     }
278
279     g_object_unref (widget);
280
281     GDK_THREADS_LEAVE ();
282
283     return continue_timeout;
284 }
285
286 static gboolean 
287 hildon_banner_clear_timeout                     (HildonBanner *self)
288 {
289     HildonBannerPrivate *priv = HILDON_BANNER_GET_PRIVATE (self);
290     g_assert (priv);
291
292     if (priv->timeout_id != 0) {
293         g_source_remove (priv->timeout_id);
294         priv->timeout_id = 0;
295         return TRUE;
296     }
297
298     return FALSE;
299 }
300
301 static void 
302 hildon_banner_ensure_timeout                    (HildonBanner *self)
303 {
304     HildonBannerPrivate *priv = HILDON_BANNER_GET_PRIVATE (self);
305     g_assert (priv);
306
307     if (priv->timeout_id == 0 && priv->is_timed && priv->timeout > 0)
308         priv->timeout_id = g_timeout_add (priv->timeout, 
309                 hildon_banner_timeout, self);
310 }
311
312 static void 
313 hildon_banner_set_property                      (GObject *object,
314                                                  guint prop_id,
315                                                  const GValue *value,
316                                                  GParamSpec *pspec)
317 {
318     GtkWidget *window;
319     HildonBannerPrivate *priv = HILDON_BANNER_GET_PRIVATE (object);
320     g_assert (priv);
321
322     switch (prop_id) {
323
324         case PROP_TIMEOUT:
325              priv->timeout = g_value_get_uint (value);
326              break;
327  
328         case PROP_IS_TIMED:
329             priv->is_timed = g_value_get_boolean (value);
330             break;
331
332         case PROP_PARENT_WINDOW:
333             window = g_value_get_object (value);         
334             if (priv->parent) {
335                 g_object_remove_weak_pointer(G_OBJECT (priv->parent), (gpointer) &priv->parent);
336             }
337
338             gtk_window_set_transient_for (GTK_WINDOW (object), (GtkWindow *) window);
339             priv->parent = (GtkWindow *) window;
340
341             if (window) {
342                 gtk_window_set_destroy_with_parent (GTK_WINDOW (object), TRUE);
343                 g_object_add_weak_pointer(G_OBJECT (window), (gpointer) &priv->parent);
344             }
345
346             break;
347
348         default:
349             G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
350             break;
351     }
352 }
353
354 static void 
355 hildon_banner_get_property                      (GObject *object,
356                                                  guint prop_id,
357                                                  GValue *value,
358                                                  GParamSpec *pspec)
359 {
360     HildonBannerPrivate *priv = HILDON_BANNER_GET_PRIVATE (object);
361     g_assert (priv);
362
363     switch (prop_id)
364     {
365         case PROP_TIMEOUT:
366              g_value_set_uint (value, priv->timeout);
367              break;
368  
369         case PROP_IS_TIMED:
370             g_value_set_boolean (value, priv->is_timed);
371             break;
372
373         case PROP_PARENT_WINDOW:
374             g_value_set_object (value, gtk_window_get_transient_for (GTK_WINDOW (object)));
375             break;
376
377         default:
378             G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
379             break;
380     }
381 }
382
383 static void
384 hildon_banner_destroy                           (GtkObject *object)
385 {
386     HildonBannerPrivate *priv = HILDON_BANNER_GET_PRIVATE (object);
387     g_assert (priv);
388
389     HildonBanner *self;
390     GObject *parent_window = (GObject *) priv->parent;
391
392     g_assert (HILDON_IS_BANNER (object));
393     self = HILDON_BANNER (object);
394
395     /* Drop possible global pointer. That can hold reference to us */
396     if ((gpointer) object == (gpointer) global_timed_banner) {
397         global_timed_banner = NULL;
398         g_object_unref (object);
399     }
400
401     /* Remove the data from parent window for timed banners. Those hold reference */
402     if (priv->is_timed && parent_window != NULL) {
403         g_object_set_qdata (parent_window, hildon_banner_timed_quark (), NULL);
404     }
405
406     if (!priv->is_timed && priv->parent) {
407         hildon_gtk_window_set_progress_indicator (priv->parent, 0);
408     }
409
410     (void) hildon_banner_clear_timeout (self);
411
412     if (GTK_OBJECT_CLASS (hildon_banner_parent_class)->destroy)
413         GTK_OBJECT_CLASS (hildon_banner_parent_class)->destroy (object);
414 }
415
416 /* Search a previous banner instance */
417 static GObject*
418 hildon_banner_real_get_instance                 (GObject *window, 
419                                                  gboolean timed)
420 {
421     if (timed) {
422         /* If we have a parent window, the previous instance is stored there */
423         if (window) {
424             return g_object_get_qdata(window, hildon_banner_timed_quark ());
425         }
426
427         /* System notification instance is stored into global pointer */
428         return (GObject *) global_timed_banner;
429     }
430
431     /* Non-timed banners are normal (non-singleton) objects */
432     return NULL;
433 }
434
435 /* By overriding constructor we force timed banners to be
436    singletons for each window */
437 static GObject* 
438 hildon_banner_constructor                       (GType type,
439                                                  guint n_construct_params,
440                                                  GObjectConstructParam *construct_params)
441 {
442     GObject *banner, *window = NULL;
443     gboolean timed = FALSE;
444     guint i;
445
446     /* Search banner type information from parameters in order
447        to locate the possible previous banner instance. */
448     for (i = 0; i < n_construct_params; i++)
449     {
450         if (strcmp(construct_params[i].pspec->name, "parent-window") == 0)
451             window = g_value_get_object (construct_params[i].value);       
452         else if (strcmp(construct_params[i].pspec->name, "is-timed") == 0)
453             timed = g_value_get_boolean (construct_params[i].value);
454     }
455
456     /* Try to get a previous instance if such exists */
457     banner = hildon_banner_real_get_instance (window, timed);
458     if (! banner)
459     {
460         /* We have to create a new banner */
461         banner = G_OBJECT_CLASS (hildon_banner_parent_class)->constructor (type, n_construct_params, construct_params);
462
463         /* Store the newly created singleton instance either into parent 
464            window data or into global variables. */
465         if (timed) {
466             if (window) {
467                 g_object_set_qdata_full (G_OBJECT (window), hildon_banner_timed_quark (), 
468                         g_object_ref (banner), g_object_unref); 
469             } else {
470                 g_assert (global_timed_banner == NULL);
471                 global_timed_banner = g_object_ref (banner);
472             }
473         }
474     }
475     else {
476         /* FIXME: This is a hack! We have to manually freeze
477            notifications. This is normally done by g_object_init, but we
478            are not going to call that. g_object_newv will otherwise give
479            a critical like this:
480
481            GLIB CRITICAL ** GLib-GObject - g_object_notify_queue_thaw: 
482            assertion `nqueue->freeze_count > 0' failed */
483
484         g_object_freeze_notify (banner);
485         hildon_banner_reset_wrap_state (HILDON_BANNER (banner));
486     }
487
488     /* We restart possible timeouts for each new timed banner request */
489     if (timed && hildon_banner_clear_timeout (HILDON_BANNER (banner)))
490         hildon_banner_ensure_timeout (HILDON_BANNER(banner));
491
492     return banner;
493 }
494
495 static void
496 hildon_banner_finalize                          (GObject *object)
497 {
498     HildonBannerPrivate *priv = HILDON_BANNER_GET_PRIVATE (object);
499
500     if (priv->parent) {
501         g_object_remove_weak_pointer(G_OBJECT (priv->parent), (gpointer) &priv->parent);
502     }
503
504     G_OBJECT_CLASS (hildon_banner_parent_class)->finalize (object);
505 }
506
507 static gboolean
508 hildon_banner_button_press_event                (GtkWidget* widget,
509                                                  GdkEventButton* event)
510 {
511     gboolean result = simulate_close (widget);
512
513     if (!result) {
514         /* signal emission not stopped - basically behave like
515          * gtk_main_do_event() for a delete event, but just hide the
516          * banner instead of destroying it, as it is already meant to
517          * be destroyed by hildon_banner_timeout() (if it's timed) or
518          * the application (if it's not). */
519         gtk_widget_hide (widget);
520     }
521
522     return result;
523 }
524
525 #if defined(MAEMO_GTK)
526 static void
527 hildon_banner_map                               (GtkWidget *widget)
528 {
529     if (GTK_WIDGET_CLASS (hildon_banner_parent_class)->map) {
530         /* Make the banner temporary _before_ mapping it, to avoid closing
531          * other temporary windows */
532         gtk_window_set_is_temporary (GTK_WINDOW (widget), TRUE);
533
534         GTK_WIDGET_CLASS (hildon_banner_parent_class)->map (widget);
535
536         /* Make the banner non-temporary _after_ mapping it, to avoid
537          * being closed by other non-temporary windows */
538         gtk_window_set_is_temporary (GTK_WINDOW (widget), FALSE);
539
540         hildon_banner_check_position (widget);
541     }
542 }
543 #endif
544
545 /* We start the timer for timed notifications after the window appears on screen */
546 static gboolean 
547 hildon_banner_map_event                         (GtkWidget *widget, 
548                                                  GdkEventAny *event)
549 {
550     gboolean result = FALSE;
551
552     if (GTK_WIDGET_CLASS (hildon_banner_parent_class)->map_event)
553         result = GTK_WIDGET_CLASS (hildon_banner_parent_class)->map_event (widget, event);
554
555     hildon_banner_ensure_timeout (HILDON_BANNER(widget));
556
557     return result;
558 }  
559
560 static void
561 hildon_banner_reset_wrap_state (HildonBanner *banner)
562 {
563     PangoLayout *layout;
564     HildonBannerPrivate *priv;
565
566     priv = HILDON_BANNER_GET_PRIVATE (banner);
567     g_assert (priv);
568
569     layout = gtk_label_get_layout (GTK_LABEL (priv->label));
570
571     pango_layout_set_width (layout, -1);
572     priv->has_been_wrapped = FALSE;
573     priv->has_been_truncated = FALSE;
574
575     gtk_widget_set_size_request (priv->label, -1, -1);
576     gtk_widget_set_size_request (GTK_WIDGET (banner), -1, -1);
577 }
578
579 /* force to wrap truncated label by setting explicit size request
580  * see N#27000 and G#329646 */
581 static void 
582 force_to_wrap_truncated                         (HildonBanner *banner)
583 {
584     GtkLabel *label;
585     PangoLayout *layout;
586     int width_text, width_max;
587     int width = -1;
588     int height = -1;
589     PangoRectangle logical;
590     GtkRequisition requisition;
591     HildonBannerPrivate *priv = HILDON_BANNER_GET_PRIVATE (banner);
592
593     g_return_if_fail (priv);
594
595     label = GTK_LABEL (priv->label);
596
597     layout = gtk_label_get_layout (label);
598
599     pango_layout_get_extents (layout, NULL, &logical);
600     width_text = PANGO_PIXELS (logical.width);
601
602     width_max = priv->is_timed ? HILDON_BANNER_LABEL_MAX_TIMED
603         : HILDON_BANNER_LABEL_MAX_PROGRESS;
604
605     /* If the width of the label is going to exceed the maximum allowed
606      * width, enforce the maximum allowed width now.
607      */
608     if (priv->has_been_wrapped
609         || width_text >= width_max
610         || pango_layout_is_wrapped (layout)) {
611         /* Force wrapping by setting the maximum size */
612         width = width_max;
613
614         priv->has_been_wrapped = TRUE;
615     }
616
617     /* Make the label update its layout; and update our layout pointer
618      * because the layout will be cleared and refreshed.
619      */
620     gtk_widget_set_size_request (GTK_WIDGET (label), width, height);
621     gtk_widget_size_request (GTK_WIDGET (label), &requisition);
622
623     layout = gtk_label_get_layout (label);
624
625     /* If the layout has now been wrapped and exceeds 3 lines, we truncate
626      * the rest of the label according to spec.
627      */
628     if (priv->has_been_truncated
629         || (pango_layout_is_wrapped (layout)
630             && pango_layout_get_line_count (layout) > 3)) {
631         int lines;
632
633         pango_layout_get_extents (layout, NULL, &logical);
634         lines = pango_layout_get_line_count (layout);
635
636         /* This calculation assumes that the same font is used
637          * throughout the banner -- this is usually the case on maemo
638          *
639          * FIXME: Pango >= 1.20 has pango_layout_set_height().
640          */
641         height = (PANGO_PIXELS (logical.height) * 3) / lines + 1;
642         priv->has_been_truncated = TRUE;
643     }
644
645     /* Set the new width/height if applicable */
646     gtk_widget_set_size_request (GTK_WIDGET (label), width, height);
647 }
648
649
650 static void
651 hildon_banner_check_position                    (GtkWidget *widget)
652 {
653     gint x, y;
654     GtkRequisition req;
655
656     gtk_widget_set_size_request (widget, gdk_screen_width (), -1);
657
658     force_to_wrap_truncated (HILDON_BANNER(widget)); /* see N#27000 and G#329646 */
659
660     gtk_widget_size_request (widget, &req);
661
662     if (req.width == 0)
663     {
664         return;
665     }
666
667     x = HILDON_BANNER_WINDOW_X;
668
669     y = HILDON_BANNER_WINDOW_Y;
670
671     gtk_window_move (GTK_WINDOW (widget), x, y);
672 }
673
674 static void
675 screen_size_changed                            (GdkScreen *screen,
676                                                 GtkWindow *banner)
677
678 {
679     gtk_window_reshow_with_initial_size (banner);
680 }
681
682 static void
683 hildon_banner_realize                           (GtkWidget *widget)
684 {
685     GdkWindow *gdkwin;
686     GdkScreen *screen;
687     GdkAtom atom;
688     guint32 portrait = 1;
689     const gchar *notification_type = "_HILDON_NOTIFICATION_TYPE_BANNER";
690     HildonBannerPrivate *priv = HILDON_BANNER_GET_PRIVATE (widget);
691     g_assert (priv);
692
693     /* We let the parent to init widget->window before we need it */
694     if (GTK_WIDGET_CLASS (hildon_banner_parent_class)->realize)
695         GTK_WIDGET_CLASS (hildon_banner_parent_class)->realize (widget);
696
697     /* We use special hint to turn the banner into information notification. */
698     gdk_window_set_type_hint (widget->window, GDK_WINDOW_TYPE_HINT_NOTIFICATION);
699     gtk_window_set_transient_for (GTK_WINDOW (widget), (GtkWindow *) priv->parent);
700
701     hildon_banner_check_position (widget);
702
703     gdkwin = widget->window;
704
705     /* Set the _HILDON_NOTIFICATION_TYPE property so Matchbox places the window correctly */
706     atom = gdk_atom_intern ("_HILDON_NOTIFICATION_TYPE", FALSE);
707     gdk_property_change (gdkwin, atom, gdk_x11_xatom_to_atom (XA_STRING), 8, GDK_PROP_MODE_REPLACE,
708                          (gpointer) notification_type, strlen (notification_type));
709
710     /* HildonBanner supports portrait mode */
711     atom = gdk_atom_intern ("_HILDON_PORTRAIT_MODE_SUPPORT", FALSE);
712     gdk_property_change (gdkwin, atom, gdk_x11_xatom_to_atom (XA_CARDINAL), 32,
713                          GDK_PROP_MODE_REPLACE, (gpointer) &portrait, 1);
714
715     /* Manage override flag */
716     if ((priv->require_override_dnd)&&(!priv->overrides_dnd)) {
717       hildon_banner_set_override_flag (HILDON_BANNER (widget));
718         priv->overrides_dnd = TRUE;
719     }
720
721     screen = gtk_widget_get_screen (widget);
722     g_signal_connect (screen, "size-changed", G_CALLBACK (screen_size_changed), widget);
723 }
724
725 static void
726 hildon_banner_unrealize                         (GtkWidget *widget)
727 {
728     GdkScreen *screen = gtk_widget_get_screen (widget);
729     g_signal_handlers_disconnect_by_func (screen, G_CALLBACK (screen_size_changed), widget);
730
731     GTK_WIDGET_CLASS (hildon_banner_parent_class)->unrealize (widget);
732 }
733
734 static void 
735 hildon_banner_class_init                        (HildonBannerClass *klass)
736 {
737     GObjectClass *object_class;
738     GtkWidgetClass *widget_class;
739
740     object_class = G_OBJECT_CLASS (klass);
741     widget_class = GTK_WIDGET_CLASS (klass);
742
743     /* Append private structure to class. This is more elegant than
744        on g_new based approach */
745     g_type_class_add_private (klass, sizeof (HildonBannerPrivate));
746
747     /* Override virtual methods */
748     object_class->constructor = hildon_banner_constructor;
749     object_class->finalize = hildon_banner_finalize;
750     object_class->set_property = hildon_banner_set_property;
751     object_class->get_property = hildon_banner_get_property;
752     GTK_OBJECT_CLASS (klass)->destroy = hildon_banner_destroy;
753     widget_class->map_event = hildon_banner_map_event;
754     widget_class->realize = hildon_banner_realize;
755     widget_class->unrealize = hildon_banner_unrealize;
756     widget_class->button_press_event = hildon_banner_button_press_event;
757 #if defined(MAEMO_GTK)
758     widget_class->map = hildon_banner_map;
759 #endif
760
761     /* Install properties.
762        We need construct properties for singleton purposes */
763
764     /**
765      * HildonBanner:parent-window:
766      *
767      * The window for which the banner will be singleton. 
768      *                      
769      */
770     g_object_class_install_property (object_class, PROP_PARENT_WINDOW,
771             g_param_spec_object ("parent-window",
772                 "Parent window",
773                 "The window for which the banner will be singleton",
774                 GTK_TYPE_WINDOW, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
775
776     /**
777      * HildonBanner:is-timed:
778      *
779      * Whether the banner is timed and goes away automatically.
780      *                      
781      */
782     g_object_class_install_property (object_class, PROP_IS_TIMED,
783             g_param_spec_boolean ("is-timed",
784                 "Is timed",
785                 "Whether or not the notification goes away automatically "
786                 "after the specified time has passed",
787                 FALSE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
788
789     /**
790      * HildonBanner:timeout:
791      *
792      * The time before making the banner banner go away. This needs 
793      * to be adjusted before the banner is mapped to the screen.
794      *                      
795      */
796     g_object_class_install_property (object_class, PROP_TIMEOUT,
797             g_param_spec_uint ("timeout",
798                 "Timeout",
799                 "The time before making the banner banner go away",
800                 0,
801                 10000,
802                 HILDON_BANNER_DEFAULT_TIMEOUT,
803                 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
804 }
805
806 static void 
807 hildon_banner_init                              (HildonBanner *self)
808 {
809     HildonBannerPrivate *priv = HILDON_BANNER_GET_PRIVATE (self);
810     g_assert (priv);
811
812     priv->parent = NULL;
813     priv->overrides_dnd = FALSE;
814     priv->require_override_dnd = FALSE;
815
816     /* Initialize the common layout inside banner */
817     priv->alignment = gtk_alignment_new (0.5, 0.5, 0, 0);
818     priv->layout = gtk_hbox_new (FALSE, HILDON_MARGIN_DEFAULT);
819
820     priv->label = g_object_new (GTK_TYPE_LABEL, NULL);
821     gtk_label_set_line_wrap (GTK_LABEL (priv->label), TRUE);
822     gtk_label_set_line_wrap_mode (GTK_LABEL (priv->label), PANGO_WRAP_WORD_CHAR);
823
824     gtk_container_set_border_width (GTK_CONTAINER (priv->layout), HILDON_MARGIN_DEFAULT);
825     gtk_container_add (GTK_CONTAINER (self), priv->alignment);
826     gtk_container_add (GTK_CONTAINER (priv->alignment), priv->layout);
827     gtk_box_pack_start (GTK_BOX (priv->layout), priv->label, FALSE, FALSE, 0);
828
829     gtk_window_set_accept_focus (GTK_WINDOW (self), FALSE);
830
831     hildon_banner_reset_wrap_state (self);
832
833     gtk_widget_add_events (GTK_WIDGET (self), GDK_BUTTON_PRESS_MASK);
834 }
835
836 /* Makes sure that icon/progress item contains the desired type
837    of item. If possible, tries to avoid creating a new widget but
838    reuses the existing one */
839 static void
840 hildon_banner_ensure_child                      (HildonBanner *self, 
841                                                  GtkWidget *user_widget,
842                                                  guint pos,
843                                                  GType type,
844                                                  const gchar *first_property, 
845                                                  ...)
846 {
847     GtkWidget *widget;
848     va_list args;
849     HildonBannerPrivate *priv = HILDON_BANNER_GET_PRIVATE (self);
850
851     g_assert (priv);
852
853     widget = priv->main_item;
854     va_start (args, first_property);
855
856     /* Reuse existing widget if possible */
857     if (! user_widget && G_TYPE_CHECK_INSTANCE_TYPE (widget, type))
858     {
859         g_object_set_valist (G_OBJECT (widget), first_property, args);
860     }
861     else
862     {
863         /* We have to abandon old content widget */
864         if (widget)
865             gtk_container_remove (GTK_CONTAINER (priv->layout), widget);
866         
867         /* Use user provided widget or create a new one */
868         priv->main_item = widget = user_widget ? 
869             user_widget : GTK_WIDGET (g_object_new_valist(type, first_property, args));
870         gtk_box_pack_start (GTK_BOX (priv->layout), widget, FALSE, FALSE, 0);
871     }
872
873     /* We make sure that the widget exists in desired position. Different
874        banners place this child widget to different places */
875     gtk_box_reorder_child (GTK_BOX (priv->layout), widget, pos);
876     va_end (args);
877 }
878
879 /* Creates a new banner instance or uses an existing one */
880 static HildonBanner*
881 hildon_banner_get_instance_for_widget           (GtkWidget *widget, 
882                                                  gboolean timed)
883 {
884     GtkWidget *window;
885
886     window = widget ? gtk_widget_get_ancestor (widget, GTK_TYPE_WINDOW) : NULL;
887     return g_object_new (HILDON_TYPE_BANNER, "parent-window", window, "is-timed", timed, NULL);
888 }
889
890 static GtkWidget *
891 hildon_banner_create_animation (void)
892 {
893     GtkWidget *image;
894     GdkPixbufSimpleAnim *anim;
895     GdkPixbuf *frame;
896     GtkIconTheme *theme;
897     GError *error = NULL;
898     gchar *icon_name;
899     gint i;
900
901     anim = gdk_pixbuf_simple_anim_new (HILDON_ICON_PIXEL_SIZE_STYLUS,
902                                        HILDON_ICON_PIXEL_SIZE_STYLUS,
903                                        HILDON_BANNER_ANIMATION_FRAMERATE);
904     gdk_pixbuf_simple_anim_set_loop (anim, TRUE);
905     theme = gtk_icon_theme_get_default ();
906
907     for (i = 1; i <= HILDON_BANNER_ANIMATION_NFRAMES; i++) {
908         icon_name = g_strdup_printf (HILDON_BANNER_ANIMATION_TMPL, i);
909         frame = gtk_icon_theme_load_icon (theme, icon_name, HILDON_ICON_PIXEL_SIZE_STYLUS,
910                                           0, &error);
911
912         if (error) {
913             g_warning ("Icon theme lookup for icon `%s' failed: %s",
914                        icon_name, error->message);
915             g_error_free (error);
916             error = NULL;
917         } else {
918                 gdk_pixbuf_simple_anim_add_frame (anim, frame);
919         }
920
921         g_object_unref (frame);
922         g_free (icon_name);
923     }
924
925     image = gtk_image_new_from_animation (GDK_PIXBUF_ANIMATION (anim));
926     g_object_unref (anim);
927
928     return image;
929 }
930
931 /**
932  * hildon_banner_show_information:
933  * @widget: the #GtkWidget that is the owner of the banner
934  * @icon_name: since Hildon 2.2 this parameter is not used anymore and
935  * any value that you pass will be ignored
936  * @text: Text to display
937  *
938  * This function creates and displays an information banner that
939  * automatically goes away after certain time period. For each window
940  * in your application there can only be one timed banner, so if you
941  * spawn a new banner before the earlier one has timed out, the
942  * previous one will be replaced.
943  *
944  * Returns: The newly created banner
945  *
946  */
947 GtkWidget*
948 hildon_banner_show_information                  (GtkWidget *widget, 
949                                                  const gchar *icon_name,
950                                                  const gchar *text)
951 {
952     return hildon_banner_real_show_information (widget, text, FALSE);
953 }
954
955 /**
956  * hildon_banner_show_information_override_dnd:
957  * @widget: the #GtkWidget that is the owner of the banner
958  * @text: Text to display
959  *
960  * Equivalent to hildon_banner_show_information() but it overrides the do not
961  * disturb flag, in the special cases that could be needed. It is required
962  * because this method calls internally gtk_widget_show before returns the banner,
963  * but the do not disturb flag is checked on the mapping of the widget
964  *
965  *
966  * Returns: The newly created banner
967  *
968  * Since: 2.2
969  *
970  */
971 GtkWidget*
972 hildon_banner_show_information_override_dnd     (GtkWidget *widget,
973                                                  const gchar *text)
974 {
975     return hildon_banner_real_show_information (widget, text, TRUE);
976 }
977
978 static void
979 hildon_banner_set_override_flag                 (HildonBanner *banner)
980 {
981     guint32 state = 1;
982
983     gdk_property_change (GTK_WIDGET (banner)->window,
984                          gdk_atom_intern_static_string ("_HILDON_DO_NOT_DISTURB_OVERRIDE"),
985                          gdk_x11_xatom_to_atom (XA_INTEGER),
986                          32,
987                          GDK_PROP_MODE_REPLACE,
988                          (const guchar*) &state,
989                          1);
990 }
991
992
993 static GtkWidget*
994 hildon_banner_real_show_information             (GtkWidget *widget,
995                                                  const gchar *text,
996                                                  gboolean override_dnd)
997 {
998     HildonBanner *banner;
999     HildonBannerPrivate *priv = NULL;
1000
1001     g_return_val_if_fail (text != NULL, NULL);
1002
1003     /* Prepare banner */
1004     banner = hildon_banner_get_instance_for_widget (widget, TRUE);
1005     priv = HILDON_BANNER_GET_PRIVATE (banner);
1006
1007     hildon_banner_set_text (banner, text);
1008     hildon_banner_bind_style (banner, "information");
1009
1010     if (override_dnd) {
1011       /* so on the realize it will set the property */
1012       priv->require_override_dnd = TRUE;
1013     }
1014
1015     /* Show the banner, since caller cannot do that */
1016     gtk_widget_show_all (GTK_WIDGET (banner));
1017
1018     return GTK_WIDGET (banner);
1019 }
1020
1021 /**
1022  * hildon_banner_show_informationf:
1023  * @widget: the #GtkWidget that is the owner of the banner
1024  * @icon_name: since Hildon 2.2 this parameter is not used anymore and
1025  * any value that you pass will be ignored
1026  * @format: a printf-like format string
1027  * @Varargs: arguments for the format string
1028  *
1029  * A helper function for #hildon_banner_show_information with
1030  * string formatting.
1031  *
1032  * Returns: the newly created banner
1033  */
1034 GtkWidget* 
1035 hildon_banner_show_informationf                 (GtkWidget *widget, 
1036                                                  const gchar *icon_name,
1037                                                  const gchar *format, 
1038                                                  ...)
1039 {
1040     g_return_val_if_fail (format != NULL, NULL);
1041
1042     gchar *message;
1043     va_list args;
1044     GtkWidget *banner;
1045
1046     va_start (args, format);
1047     message = g_strdup_vprintf (format, args);
1048     va_end (args);
1049
1050     banner = hildon_banner_show_information (widget, icon_name, message);
1051
1052     g_free (message);
1053
1054     return banner;
1055 }
1056
1057 /**
1058  * hildon_banner_show_information_with_markup:
1059  * @widget: the #GtkWidget that wants to display banner
1060  * @icon_name: since Hildon 2.2 this parameter is not used anymore and
1061  * any value that you pass will be ignored
1062  * @markup: a markup string to display (see <link linkend="PangoMarkupFormat">Pango markup format</link>)
1063  *
1064  * This function creates and displays an information banner that
1065  * automatically goes away after certain time period. For each window
1066  * in your application there can only be one timed banner, so if you
1067  * spawn a new banner before the earlier one has timed out, the
1068  * previous one will be replaced.
1069  *
1070  * Returns: the newly created banner
1071  *
1072  */
1073 GtkWidget*
1074 hildon_banner_show_information_with_markup      (GtkWidget *widget, 
1075                                                  const gchar *icon_name, 
1076                                                  const gchar *markup)
1077 {
1078     HildonBanner *banner;
1079
1080     g_return_val_if_fail (icon_name == NULL || icon_name[0] != 0, NULL);
1081     g_return_val_if_fail (markup != NULL, NULL);
1082
1083     /* Prepare banner */
1084     banner = hildon_banner_get_instance_for_widget (widget, TRUE);
1085
1086     hildon_banner_set_markup (banner, markup);
1087     hildon_banner_bind_style (banner, "information");
1088
1089     /* Show the banner, since caller cannot do that */
1090     gtk_widget_show_all (GTK_WIDGET (banner));
1091
1092     return (GtkWidget *) banner;
1093 }
1094
1095 /**
1096  * hildon_banner_show_animation:
1097  * @widget: the #GtkWidget that wants to display banner
1098  * @animation_name: since Hildon 2.2 this parameter is not used
1099  *                  anymore and any value that you pass will be
1100  *                  ignored
1101  * @text: the text to display.
1102  *
1103  * Shows an animated progress notification. It's recommended not to try
1104  * to show more than one progress notification at a time, since
1105  * they will appear on top of each other. You can use progress
1106  * notifications with timed banners. In this case the banners are
1107  * located so that you can somehow see both.
1108  *
1109  * Please note that banners are destroyed automatically once the
1110  * window they are attached to is closed. The pointer that you receive
1111  * with this function does not contain additional references, so it
1112  * can become invalid without warning (this is true for all toplevel
1113  * windows in gtk). To make sure that the banner does not disappear
1114  * automatically, you can separately ref the return value (this
1115  * doesn't prevent the banner from disappearing, just the object from
1116  * being finalized). In this case you have to call both
1117  * gtk_widget_destroy() followed by g_object_unref() (in this order).
1118  *
1119  * Returns: a #HildonBanner widget. You must call gtk_widget_destroy()
1120  *          once you are done with the banner.
1121  *
1122  * Deprecated: Hildon 2.2: use
1123  * hildon_gtk_window_set_progress_indicator() instead.
1124  */
1125 GtkWidget*
1126 hildon_banner_show_animation                    (GtkWidget *widget, 
1127                                                  const gchar *animation_name, 
1128                                                  const gchar *text)
1129 {
1130     HildonBanner *banner;
1131     GtkWidget *image_widget;
1132
1133     g_return_val_if_fail (text != NULL, NULL);
1134
1135     image_widget = hildon_banner_create_animation ();
1136
1137     /* Prepare banner */
1138     banner = hildon_banner_get_instance_for_widget (widget, FALSE);
1139     hildon_banner_ensure_child (banner, image_widget, 0,
1140             GTK_TYPE_IMAGE, "yalign", 0.0, NULL);
1141
1142     hildon_banner_set_text (banner, text);
1143     hildon_banner_bind_style (banner, "animation");
1144
1145     /* And show it */
1146     gtk_widget_show_all (GTK_WIDGET (banner));
1147
1148     return (GtkWidget *) banner;
1149 }
1150
1151 /**
1152  * hildon_banner_show_progress:
1153  * @widget: the #GtkWidget that wants to display banner
1154  * @bar: since Hildon 2.2 this parameter is not used anymore and
1155  * any value that you pass will be ignored
1156  * @text: text to display.
1157  *
1158  * Shows progress notification. See #hildon_banner_show_animation
1159  * for more information.
1160  * 
1161  * Returns: a #HildonBanner widget. You must call #gtk_widget_destroy
1162  *          once you are done with the banner.
1163  *
1164  * Deprecated: Hildon 2.2: use hildon_gtk_window_set_progress_indicator() instead.
1165  */
1166 GtkWidget*
1167 hildon_banner_show_progress                     (GtkWidget *widget, 
1168                                                  GtkProgressBar *bar, 
1169                                                  const gchar *text)
1170 {
1171     HildonBanner *banner;
1172     HildonBannerPrivate *priv;
1173
1174     g_return_val_if_fail (text != NULL, NULL);
1175
1176     /* Prepare banner */
1177     banner = hildon_banner_get_instance_for_widget (widget, FALSE);
1178     priv = HILDON_BANNER_GET_PRIVATE (banner);
1179     g_assert (priv);
1180
1181     hildon_banner_set_text (banner, text);
1182     hildon_banner_bind_style (banner, "progress");
1183
1184     if (priv->parent)
1185         hildon_gtk_window_set_progress_indicator (priv->parent, 1);
1186
1187     /* Show the banner */
1188     gtk_widget_show_all (GTK_WIDGET (banner));
1189
1190     return GTK_WIDGET (banner);   
1191 }
1192
1193 /**
1194  * hildon_banner_set_text:
1195  * @self: a #HildonBanner widget
1196  * @text: a new text to display in banner
1197  *
1198  * Sets the text that is displayed in the banner.
1199  *
1200  */
1201 void 
1202 hildon_banner_set_text                          (HildonBanner *self, 
1203                                                  const gchar *text)
1204 {
1205     GtkLabel *label;
1206     HildonBannerPrivate *priv;
1207     const gchar *existing_text;
1208
1209     g_return_if_fail (HILDON_IS_BANNER (self));
1210
1211     priv = HILDON_BANNER_GET_PRIVATE (self);
1212     g_assert (priv);
1213
1214     label = GTK_LABEL (priv->label);
1215     existing_text = gtk_label_get_text (label);
1216
1217     if (existing_text != NULL && 
1218         text != NULL          &&
1219         strcmp (existing_text, text) != 0) {
1220             gtk_label_set_text (label, text);
1221             hildon_banner_reset_wrap_state (self);
1222     }
1223
1224     hildon_banner_check_position (GTK_WIDGET (self));
1225 }
1226
1227 /**
1228  * hildon_banner_set_markup:
1229  * @self: a #HildonBanner widget
1230  * @markup: a new text with Pango markup to display in the banner
1231  *
1232  * Sets the text with markup that is displayed in the banner.
1233  *
1234  */
1235 void 
1236 hildon_banner_set_markup                        (HildonBanner *self, 
1237                                                  const gchar *markup)
1238 {
1239     GtkLabel *label;
1240     HildonBannerPrivate *priv;
1241
1242     g_return_if_fail (HILDON_IS_BANNER (self));
1243
1244     priv = HILDON_BANNER_GET_PRIVATE (self);
1245     g_assert (priv);
1246
1247     label = GTK_LABEL (priv->label);
1248     gtk_label_set_markup (label, markup);
1249
1250     hildon_banner_reset_wrap_state (self);
1251
1252     hildon_banner_check_position (GTK_WIDGET(self));
1253 }
1254
1255 /**
1256  * hildon_banner_set_fraction:
1257  * @self: a #HildonBanner widget
1258  * @fraction: #gdouble
1259  *
1260  * The fraction is the completion of progressbar, 
1261  * the scale is from 0.0 to 1.0.
1262  * Sets the amount of fraction the progressbar has.
1263  *
1264  * Note that this method only has effect if @self was created with
1265  * hildon_banner_show_progress()
1266  *
1267  * Deprecated: This function does nothing. As of Hildon 2.2, hildon
1268  * banners don't have progress bars.
1269  */
1270 void 
1271 hildon_banner_set_fraction                      (HildonBanner *self, 
1272                                                  gdouble fraction)
1273 {
1274 }
1275
1276 /**
1277  * hildon_banner_set_timeout:
1278  * @self: a #HildonBanner widget
1279  * @timeout: timeout to set in miliseconds.
1280  *
1281  * Sets the timeout on the banner. After the given amount of miliseconds
1282  * has elapsed the banner will go away. Note that settings this only makes
1283  * sense on the banners that are timed and that have not been yet displayed
1284  * on the screen.
1285  *
1286  * Note that this method only has effect if @self is an information
1287  * banner (created using hildon_banner_show_information() and
1288  * friends).
1289  */
1290 void
1291 hildon_banner_set_timeout                       (HildonBanner *self,
1292                                                  guint timeout)
1293 {
1294     HildonBannerPrivate *priv;
1295
1296     g_return_if_fail (HILDON_IS_BANNER (self));
1297     priv = HILDON_BANNER_GET_PRIVATE (self);
1298     g_assert (priv);
1299
1300     priv->timeout = timeout;
1301 }
1302
1303 /**
1304  * hildon_banner_set_icon:
1305  * @self: a #HildonBanner widget
1306  * @icon_name: the name of icon to use. Can be %NULL for default icon
1307  *
1308  * Sets the icon to be used in the banner.
1309  *
1310  * Deprecated: This function does nothing. As of hildon 2.2, hildon
1311  * banners don't allow changing their icons.
1312  */
1313 void 
1314 hildon_banner_set_icon                          (HildonBanner *self, 
1315                                                  const gchar  *icon_name)
1316 {
1317 }
1318
1319 /**
1320  * hildon_banner_set_icon_from_file:
1321  * @self: a #HildonBanner widget
1322  * @icon_file: the filename of icon to use. Can be %NULL for default icon
1323  *
1324  * Sets the icon from its filename to be used in the banner.
1325  *
1326  * Deprecated: This function does nothing. As of hildon 2.2, hildon
1327  * banners don't allow changing their icons.
1328  */
1329 void 
1330 hildon_banner_set_icon_from_file                (HildonBanner *self, 
1331                                                  const gchar  *icon_file)
1332 {
1333 }