[empathy] add empathy-new-call-dialog



commit 83d23c5c7c31616c36a2c1dd6f1cb422f5d4d36b
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Tue Dec 15 18:47:20 2009 +0000

    add empathy-new-call-dialog

 libempathy-gtk/Makefile.am               |    2 +
 libempathy-gtk/empathy-new-call-dialog.c |  177 ++++++++++++++++++++++++++++++
 libempathy-gtk/empathy-new-call-dialog.h |   65 +++++++++++
 po/POTFILES.in                           |    1 +
 4 files changed, 245 insertions(+), 0 deletions(-)
---
diff --git a/libempathy-gtk/Makefile.am b/libempathy-gtk/Makefile.am
index f81780d..7f73d7c 100644
--- a/libempathy-gtk/Makefile.am
+++ b/libempathy-gtk/Makefile.am
@@ -55,6 +55,7 @@ libempathy_gtk_handwritten_source =            	\
 	empathy-kludge-label.c			\
 	empathy-log-window.c			\
 	empathy-new-message-dialog.c		\
+	empathy-new-call-dialog.c		\
 	empathy-notify-manager.c		\
 	empathy-presence-chooser.c		\
 	empathy-protocol-chooser.c		\
@@ -99,6 +100,7 @@ libempathy_gtk_headers =			\
 	empathy-kludge-label.h			\
 	empathy-log-window.h			\
 	empathy-new-message-dialog.h		\
+	empathy-new-call-dialog.h		\
 	empathy-notify-manager.h		\
 	empathy-presence-chooser.h		\
 	empathy-protocol-chooser.h		\
diff --git a/libempathy-gtk/empathy-new-call-dialog.c b/libempathy-gtk/empathy-new-call-dialog.c
new file mode 100644
index 0000000..135fda9
--- /dev/null
+++ b/libempathy-gtk/empathy-new-call-dialog.c
@@ -0,0 +1,177 @@
+/*
+ * Copyright (C) 2009 Collabora Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ * Authors: Guillaume Desmottes <guillaume desmottes collabora co uk>
+ */
+
+#include <config.h>
+
+#include <string.h>
+#include <stdlib.h>
+
+#include <gtk/gtk.h>
+#include <glib/gi18n-lib.h>
+
+#include <libempathy/empathy-tp-contact-factory.h>
+#include <libempathy/empathy-contact-manager.h>
+#include <libempathy/empathy-call-factory.h>
+#include <libempathy/empathy-dispatcher.h>
+#include <libempathy/empathy-utils.h>
+
+#define DEBUG_FLAG EMPATHY_DEBUG_CONTACT
+#include <libempathy/empathy-debug.h>
+
+#include <libempathy-gtk/empathy-ui-utils.h>
+#include <libempathy-gtk/empathy-images.h>
+
+#include "empathy-new-call-dialog.h"
+#include "empathy-account-chooser.h"
+
+static EmpathyNewCallDialog *dialog_singleton = NULL;
+
+G_DEFINE_TYPE(EmpathyNewCallDialog, empathy_new_call_dialog,
+               EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG)
+
+/**
+ * SECTION:empathy-new-call-dialog
+ * @title: EmpathyNewCallDialog
+ * @short_description: A dialog to show a new call
+ * @include: libempathy-gtk/empathy-new-call-dialog.h
+ *
+ * #EmpathyNewCallDialog is a dialog which allows a call
+ * to be started with any contact on any enabled account.
+ */
+
+static void
+got_contact_cb (EmpathyTpContactFactory *factory,
+    EmpathyContact *contact,
+    const GError *error,
+    gpointer user_data,
+    GObject *object)
+{
+  EmpathyCallFactory *call_factory;
+
+  if (error != NULL)
+    {
+      DEBUG ("Failed: %s", error->message);
+      return;
+    }
+
+  call_factory = empathy_call_factory_get ();
+  empathy_call_factory_new_call (call_factory, contact);
+}
+
+static void
+empathy_new_call_dialog_got_response (EmpathyContactSelectorDialog *dialog,
+    TpConnection *connection,
+    const gchar *contact_id)
+{
+  EmpathyTpContactFactory *factory;
+
+  factory = empathy_tp_contact_factory_dup_singleton (connection);
+  empathy_tp_contact_factory_get_from_id (factory, contact_id,
+      got_contact_cb, NULL, NULL, NULL);
+
+  g_object_unref (factory);
+}
+
+static GObject *
+empathy_new_call_dialog_constructor (GType type,
+    guint n_props,
+    GObjectConstructParam *props)
+{
+  GObject *retval;
+
+  if (dialog_singleton)
+    {
+      retval = G_OBJECT (dialog_singleton);
+      g_object_ref (retval);
+    }
+  else
+    {
+      retval = G_OBJECT_CLASS (
+      empathy_new_call_dialog_parent_class)->constructor (type,
+        n_props, props);
+
+      dialog_singleton = EMPATHY_NEW_CALL_DIALOG (retval);
+      g_object_add_weak_pointer (retval, (gpointer) &dialog_singleton);
+    }
+
+  return retval;
+}
+
+static void
+empathy_new_call_dialog_init (EmpathyNewCallDialog *dialog)
+{
+  EmpathyContactSelectorDialog *parent = EMPATHY_CONTACT_SELECTOR_DIALOG (
+        dialog);
+  GtkWidget *image;
+
+  /* add chat button */
+  parent->button_action = gtk_button_new_with_mnemonic (_("_Call"));
+  image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_VOIP,
+      GTK_ICON_SIZE_BUTTON);
+  gtk_button_set_image (GTK_BUTTON (parent->button_action), image);
+
+  gtk_dialog_add_action_widget (GTK_DIALOG (dialog), parent->button_action,
+      GTK_RESPONSE_ACCEPT);
+  gtk_widget_show (parent->button_action);
+
+  /* Tweak the dialog */
+  gtk_window_set_title (GTK_WINDOW (dialog), _("New Call"));
+  gtk_window_set_role (GTK_WINDOW (dialog), "new_call");
+
+  gtk_widget_set_sensitive (parent->button_action, FALSE);
+}
+
+static void
+empathy_new_call_dialog_class_init (
+  EmpathyNewCallDialogClass *class)
+{
+  GObjectClass *object_class = G_OBJECT_CLASS (class);
+  EmpathyContactSelectorDialogClass *dialog_class = \
+    EMPATHY_CONTACT_SELECTOR_DIALOG_CLASS (class);
+
+  object_class->constructor = empathy_new_call_dialog_constructor;
+
+  dialog_class->got_response = empathy_new_call_dialog_got_response;
+}
+
+/**
+ * empathy_new_call_dialog_new:
+ * @parent: parent #GtkWindow of the dialog
+ *
+ * Create a new #EmpathyNewCallDialog it.
+ *
+ * Return value: the new #EmpathyNewCallDialog
+ */
+GtkWidget *
+empathy_new_call_dialog_show (GtkWindow *parent)
+{
+  GtkWidget *dialog;
+
+  dialog = g_object_new (EMPATHY_TYPE_NEW_CALL_DIALOG, NULL);
+
+  if (parent)
+    {
+      gtk_window_set_transient_for (GTK_WINDOW (dialog),
+                  GTK_WINDOW (parent));
+    }
+
+  gtk_widget_show (dialog);
+  return dialog;
+}
diff --git a/libempathy-gtk/empathy-new-call-dialog.h b/libempathy-gtk/empathy-new-call-dialog.h
new file mode 100644
index 0000000..029c373
--- /dev/null
+++ b/libempathy-gtk/empathy-new-call-dialog.h
@@ -0,0 +1,65 @@
+/*
+ * Copyright (C) 2009 Collabora Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ * Authors: Guillaume Desmottes <guillaume desmottes collabora co uk>
+ */
+
+#ifndef __EMPATHY_NEW_CALL_DIALOG_H__
+#define __EMPATHY_NEW_CALL_DIALOG_H__
+
+#include <glib-object.h>
+#include <gtk/gtk.h>
+
+#include <libempathy-gtk/empathy-contact-selector-dialog.h>
+
+G_BEGIN_DECLS
+
+typedef struct _EmpathyNewCallDialog EmpathyNewCallDialog;
+typedef struct _EmpathyNewCallDialogClass EmpathyNewCallDialogClass;
+
+struct _EmpathyNewCallDialogClass {
+    EmpathyContactSelectorDialogClass parent_class;
+};
+
+struct _EmpathyNewCallDialog {
+    EmpathyContactSelectorDialog parent;
+};
+
+GType empathy_new_call_dialog_get_type (void);
+
+/* TYPE MACROS */
+#define EMPATHY_TYPE_NEW_CALL_DIALOG \
+  (empathy_new_call_dialog_get_type ())
+#define EMPATHY_NEW_CALL_DIALOG(obj) \
+  (G_TYPE_CHECK_INSTANCE_CAST((obj), EMPATHY_TYPE_NEW_CALL_DIALOG, \
+    EmpathyNewCallDialog))
+#define EMPATHY_NEW_CALL_DIALOG_CLASS(klass) \
+  (G_TYPE_CHECK_CLASS_CAST((klass), EMPATHY_TYPE_NEW_CALL_DIALOG, \
+    EmpathyNewCallDialogClass))
+#define EMPATHY_IS_NEW_CALL_DIALOG(obj) \
+  (G_TYPE_CHECK_INSTANCE_TYPE((obj), EMPATHY_TYPE_NEW_CALL_DIALOG))
+#define EMPATHY_IS_NEW_CALL_DIALOG_CLASS(klass) \
+  (G_TYPE_CHECK_CLASS_TYPE((klass), EMPATHY_TYPE_NEW_CALL_DIALOG))
+#define EMPATHY_NEW_CALL_DIALOG_GET_CLASS(obj) \
+  (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_NEW_CALL_DIALOG, \
+    EmpathyNewCallDialogClass))
+
+GtkWidget * empathy_new_call_dialog_show (GtkWindow *parent);
+
+G_END_DECLS
+
+#endif /* __EMPATHY_NEW_CALL_DIALOG_H__ */
diff --git a/po/POTFILES.in b/po/POTFILES.in
index b20058c..9135098 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -41,6 +41,7 @@ libempathy-gtk/empathy-log-window.c
 [type: gettext/glade]libempathy-gtk/empathy-log-window.ui
 [type: gettext/glade]libempathy-gtk/empathy-contact-selector-dialog.ui
 libempathy-gtk/empathy-new-message-dialog.c
+libempathy-gtk/empathy-new-call-dialog.c
 libempathy-gtk/empathy-presence-chooser.c
 libempathy-gtk/empathy-sound.c
 libempathy-gtk/empathy-status-preset-dialog.c



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]