]> git.0d.be Git - empathy.git/blob - tests/empetit.c
Updated Basque translation.
[empathy.git] / tests / empetit.c
1 #include "config.h"
2
3 #include <gtk/gtk.h>
4
5 #include <libempathy/empathy-contact-manager.h>
6 #include <libempathy/empathy-dispatcher.h>
7
8 #include <libempathy-gtk/empathy-ui-utils.h>
9 #include <libempathy-gtk/empathy-contact-list-store.h>
10 #include <libempathy-gtk/empathy-contact-selector.h>
11
12 static GtkWidget *window = NULL;
13
14 static void
15 chat_cb (EmpathyDispatchOperation *dispatch,
16          const GError *error,
17          gpointer user_data)
18 {
19   GtkWidget *dialog;
20
21   if (error != NULL)
22     {
23       dialog = gtk_message_dialog_new (GTK_WINDOW (window), GTK_DIALOG_MODAL,
24           GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, "%s",
25           error->message ? error->message : "No error message");
26
27       gtk_dialog_run (GTK_DIALOG (dialog));
28     }
29
30   gtk_widget_destroy (window);
31 }
32
33 static void
34 clicked_cb (GtkButton *button,
35             gpointer data)
36 {
37   EmpathyContactSelector *selector = EMPATHY_CONTACT_SELECTOR (data);
38   EmpathyContact *contact;
39
40   contact = empathy_contact_selector_dup_selected (selector);
41
42   if (!contact)
43     return;
44
45   empathy_dispatcher_chat_with_contact (contact, chat_cb, NULL);
46
47   g_object_unref (contact);
48 }
49
50 int main (int argc,
51           char *argv[])
52 {
53   EmpathyContactManager *manager;
54   GtkWidget *vbox, *button, *selector;
55
56   gtk_init (&argc, &argv);
57
58   empathy_gtk_init ();
59
60   manager = empathy_contact_manager_dup_singleton ();
61   selector = empathy_contact_selector_new (EMPATHY_CONTACT_LIST (manager));
62
63   vbox = gtk_vbox_new (FALSE, 2);
64
65   gtk_box_pack_start (GTK_BOX (vbox), selector, FALSE, FALSE, 5);
66
67   button = gtk_button_new_with_label ("Chat");
68   g_signal_connect (G_OBJECT (button), "clicked",
69       G_CALLBACK (clicked_cb), (gpointer) selector);
70   gtk_box_pack_start(GTK_BOX (vbox), button, FALSE, FALSE, 5);
71
72   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
73   g_signal_connect (G_OBJECT (window), "destroy",
74       gtk_main_quit, NULL);
75   gtk_window_set_title (GTK_WINDOW (window),"Empetit");
76   gtk_container_set_border_width (GTK_CONTAINER (window), 5);
77   gtk_container_add (GTK_CONTAINER (window), vbox);
78   gtk_widget_show_all (window);
79
80   gtk_main ();
81
82   g_object_unref (manager);
83
84   return 0;
85 }