~ubuntu-branches/ubuntu/hardy/network-manager-applet/hardy

« back to all changes in this revision

Viewing changes to src/applet-notifications.c

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2007-06-15 12:46:22 UTC
  • Revision ID: james.westby@ubuntu.com-20070615124622-01cyrnf0uxxun4lz
Tags: upstream-0.6.5
ImportĀ upstreamĀ versionĀ 0.6.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* NetworkManager -- Network link manager
 
2
 *
 
3
 * Christopher Aillon <caillon@redhat.com>
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
18
 *
 
19
 * (C) Copyright 2005 Red Hat, Inc.
 
20
 */
 
21
 
 
22
#include <libnotify/notify.h>
 
23
#include "applet.h"
 
24
#include "applet-notifications.h"
 
25
 
 
26
void
 
27
nma_send_event_notification (NMApplet *applet, 
 
28
                              NotifyUrgency urgency,
 
29
                              const char *summary,
 
30
                              const char *message,
 
31
                              const char *icon)
 
32
{
 
33
        const char *notify_icon;
 
34
 
 
35
        g_return_if_fail (applet != NULL);
 
36
        g_return_if_fail (summary != NULL);
 
37
        g_return_if_fail (message != NULL);
 
38
 
 
39
        if (!notify_is_initted ())
 
40
                notify_init ("NetworkManager");
 
41
 
 
42
        if (applet->notification != NULL) {
 
43
                notify_notification_close (applet->notification, NULL);
 
44
                g_object_unref (applet->notification);
 
45
        }
 
46
 
 
47
        notify_icon = icon ? icon : GTK_STOCK_NETWORK;
 
48
 
 
49
        applet->notification = notify_notification_new (summary, message, notify_icon, GTK_WIDGET (applet));
 
50
 
 
51
        notify_notification_set_urgency (applet->notification, urgency);
 
52
        notify_notification_show (applet->notification, NULL);
 
53
}
 
54