aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2008-11-22 00:13:56 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-11-22 00:13:56 +0800
commit9bbd1b9e2bc66b12a318517c18b89b1f7a7f17f5 (patch)
tree045b4e0262fc5a2c2f17d21c7b7f3d3ff9dace4d /libempathy-gtk
parent48428c4828aae246c7101e5a36146e65441dd948 (diff)
downloadgsoc2013-empathy-9bbd1b9e2bc66b12a318517c18b89b1f7a7f17f5.tar
gsoc2013-empathy-9bbd1b9e2bc66b12a318517c18b89b1f7a7f17f5.tar.gz
gsoc2013-empathy-9bbd1b9e2bc66b12a318517c18b89b1f7a7f17f5.tar.bz2
gsoc2013-empathy-9bbd1b9e2bc66b12a318517c18b89b1f7a7f17f5.tar.lz
gsoc2013-empathy-9bbd1b9e2bc66b12a318517c18b89b1f7a7f17f5.tar.xz
gsoc2013-empathy-9bbd1b9e2bc66b12a318517c18b89b1f7a7f17f5.tar.zst
gsoc2013-empathy-9bbd1b9e2bc66b12a318517c18b89b1f7a7f17f5.zip
Added some more file sending functions to libempathy-gtk. (Jonny Lamb)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> svn path=/trunk/; revision=1740
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-ui-utils.c124
-rw-r--r--libempathy-gtk/empathy-ui-utils.h8
2 files changed, 132 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c
index c7e70da34..a794232c9 100644
--- a/libempathy-gtk/empathy-ui-utils.c
+++ b/libempathy-gtk/empathy-ui-utils.c
@@ -45,6 +45,7 @@
#define DEBUG_FLAG EMPATHY_DEBUG_OTHER
#include <libempathy/empathy-debug.h>
+#include <libempathy/empathy-utils.h>
struct SizeData {
gint width;
@@ -1446,3 +1447,126 @@ empathy_text_buffer_tag_set (GtkTextBuffer *buffer,
return tag;
}
+/* Sending files with the file chooser */
+
+typedef struct {
+ EmpathyContact *contact;
+ EmpathyFileChooserCallback callback;
+ gpointer user_data;
+} FileChooserResponseData;
+
+static void
+file_manager_send_file_response_cb (GtkDialog *widget,
+ gint response_id,
+ FileChooserResponseData *response_data)
+{
+ if (response_id == GTK_RESPONSE_OK) {
+ GSList *list;
+
+ list = gtk_file_chooser_get_uris (GTK_FILE_CHOOSER (widget));
+
+ if (list) {
+ GSList *l;
+
+ DEBUG ("File chooser selected files:");
+
+ for (l = list; l; l = l->next) {
+ gchar *uri;
+ GFile *gfile;
+ EmpathyFile *file;
+ GtkRecentManager *manager;
+
+ uri = l->data;
+ gfile = g_file_new_for_uri (uri);
+
+ DEBUG ("\t%s", uri);
+ file = empathy_send_file (response_data->contact,
+ gfile);
+ if (response_data->callback)
+ response_data->callback (file,
+ response_data->user_data);
+
+ manager = gtk_recent_manager_get_default ();
+ gtk_recent_manager_add_item (manager, uri);
+
+ if (file) ;
+ /* TODO: This should be unrefed, but
+ * it's not referenced anywhere else,
+ * so the transfer just ends. Uncomment
+ * this out when there is a file
+ * transfer "manager".
+ g_object_unref (file);
+ */
+ g_object_unref (gfile);
+ g_free (uri);
+ }
+
+ g_slist_free (list);
+ } else {
+ DEBUG ("File chooser had no files selected");
+ }
+ }
+
+ g_object_unref (response_data->contact);
+ g_free (response_data);
+ gtk_widget_destroy (GTK_WIDGET (widget));
+}
+
+void
+empathy_send_file_with_file_chooser (EmpathyContact *contact,
+ EmpathyFileChooserCallback callback,
+ gpointer user_data)
+{
+ GtkWidget *widget;
+ GtkWidget *button;
+ GtkFileFilter *filter;
+ FileChooserResponseData *response_data;
+
+ /* FIXME we cannot return the ft as the response is async, maybe we
+ * should call a callback with the file when available */
+
+ g_return_if_fail (EMPATHY_IS_CONTACT (contact));
+
+ DEBUG ("Creating selection file chooser");
+
+ widget = g_object_new (GTK_TYPE_FILE_CHOOSER_DIALOG,
+ "action", GTK_FILE_CHOOSER_ACTION_OPEN,
+ "select-multiple", FALSE,
+ NULL);
+
+ gtk_window_set_title (GTK_WINDOW (widget), _("Select a file"));
+
+ /* cancel button */
+ gtk_dialog_add_button (GTK_DIALOG (widget),
+ GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
+
+ /* send button */
+ button = gtk_button_new_with_mnemonic (_("_Send"));
+ /* FIXME maybe we should use another icon */
+ gtk_button_set_image (GTK_BUTTON (button),
+ gtk_image_new_from_stock (GTK_STOCK_OPEN,
+ GTK_ICON_SIZE_BUTTON));
+ gtk_widget_show (button);
+ gtk_dialog_add_action_widget (GTK_DIALOG (widget), button,
+ GTK_RESPONSE_OK);
+ GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT);
+ gtk_dialog_set_default_response (GTK_DIALOG (widget),
+ GTK_RESPONSE_OK);
+
+ response_data = g_new0 (FileChooserResponseData, 1);
+ response_data->contact = g_object_ref (contact);
+ response_data->callback = callback;
+ response_data->user_data = user_data;
+ g_signal_connect (widget, "response",
+ G_CALLBACK (file_manager_send_file_response_cb),
+ response_data);
+
+ /* filters */
+ filter = gtk_file_filter_new ();
+ gtk_file_filter_set_name (filter, "All Files");
+ gtk_file_filter_add_pattern (filter, "*");
+ gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (widget), filter);
+
+ gtk_widget_show (widget);
+}
+
diff --git a/libempathy-gtk/empathy-ui-utils.h b/libempathy-gtk/empathy-ui-utils.h
index 524d8eb9d..1bce31baa 100644
--- a/libempathy-gtk/empathy-ui-utils.h
+++ b/libempathy-gtk/empathy-ui-utils.h
@@ -38,6 +38,7 @@
#include <libmissioncontrol/mc-profile.h>
#include <libempathy/empathy-contact.h>
+#include <libempathy/empathy-file.h>
#include "empathy-chat-view.h"
@@ -113,6 +114,13 @@ GtkTextTag *empathy_text_buffer_tag_set (GtkTextBuffer *buffer,
const gchar *first_property_name,
...);
+typedef gboolean (*EmpathyFileChooserCallback) (EmpathyFile *file,
+ gpointer user_data);
+
+void empathy_send_file_with_file_chooser (EmpathyContact *contact,
+ EmpathyFileChooserCallback callback,
+ gpointer user_data);
+
G_END_DECLS
#endif /* __EMPATHY_UI_UTILS_H__ */