From 486d746d1ac3c4ed35ff387ffc41bd39edaf9b13 Mon Sep 17 00:00:00 2001 From: Michael Zucci Date: Tue, 11 Jan 2005 01:46:06 +0000 Subject: initial import of a new mail -> dbus message bridge plugin svn path=/trunk/; revision=28343 --- plugins/new-mail-notify/new-mail-notify.c | 118 ++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 plugins/new-mail-notify/new-mail-notify.c (limited to 'plugins/new-mail-notify/new-mail-notify.c') diff --git a/plugins/new-mail-notify/new-mail-notify.c b/plugins/new-mail-notify/new-mail-notify.c new file mode 100644 index 0000000000..d9a9ec4e3a --- /dev/null +++ b/plugins/new-mail-notify/new-mail-notify.c @@ -0,0 +1,118 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Author: Miguel Angel Lopez Hernandex + * + * Copyright 2004 Novell, Inc. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of version 2 of the GNU General Public + * License as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. + * + */ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "new-mail-notify.h" + +static void +toggled_cb (GtkWidget *widget, EConfig *config) +{ + EMConfigTargetPrefs *target = (EMConfigTargetPrefs *) config->target; + + /* Save the new setting to gconf */ + gconf_client_set_bool (target->gconf, GCONF_KEY, gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)), NULL); +} + + +GtkWidget * +org_gnome_new_mail_config (EPlugin *ep, EConfigHookItemFactoryData *hook_data) +{ + GtkWidget *notify; + + EMConfigTargetPrefs *target = (EMConfigTargetPrefs *) hook_data->config->target; + + /* Create the checkbox we will display, complete with mnemonic that is unique in the dialog */ + notify = gtk_check_button_new_with_mnemonic (_("_Generate a D-BUS message when new mail arrives")); + + /* Set the toggle button to the current gconf setting */ + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (notify), gconf_client_get_bool (target->gconf, GCONF_KEY, NULL)); + + /* Listen for the item being toggled on and off */ + g_signal_connect (GTK_TOGGLE_BUTTON (notify), "toggled", G_CALLBACK (toggled_cb), hook_data->config); + + /* Pack the checkbox in the parent widget and show it */ + gtk_box_pack_start (GTK_BOX (hook_data->parent), notify, FALSE, FALSE, 0); + gtk_widget_show (notify); + + return notify; +} + +void +org_gnome_new_mail_notify (EPlugin *ep, EMEventTargetFolder *t) +{ + if (gconf_client_get_bool(gconf_client_get_default(), + GCONF_KEY, + NULL)) + { + DBusGConnection *bus; + DBusError error; + DBusMessage *message; + + /* Get a connection to the session bus */ + dbus_error_init (&error); + bus = dbus_bus_get (DBUS_BUS_SESSION, + &error); + + if (!bus) + { + printf ("Failed to connect to the D-BUS daemon: %s\n", error.message); + dbus_error_free (&error); + } + + /* Set up this connection to work in a GLib event loop */ + dbus_connection_setup_with_g_main (bus, NULL); + + /* Create a new signal "Newmail" on the DBUS_INTERFACE */ + message = dbus_message_new_signal (DBUS_PATH, + DBUS_INTERFACE, + "Newmail"); + + /* FIXME: For some weird reason in some place the folder uri is changed + for the event id */ + /* Append the folder uri as an argument */ + dbus_message_append_args (message, + DBUS_TYPE_STRING, t->uri, + DBUS_TYPE_INVALID); + + /* Send the signal */ + dbus_connection_send (bus, + message, + NULL); + + /* Free the signal */ + dbus_message_unref (message); + + /* printf("Got new mail in folder '%s'!\n", t->uri); */ + } +} -- cgit v1.2.3