]> git.0d.be Git - empathy.git/blob - tests/empetit.c
Use empathy_gtk_init.
[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,
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_get_selected (selector);
41
42   if (!contact)
43     return;
44
45   /* This is required otherwise the dispatcher isn't ref'd, and so it
46    * disappears by the time the callback gets called. It's deliberately not
47    * freed otherwise it segfaults... sigh */
48   empathy_dispatcher_dup_singleton ();
49   empathy_dispatcher_chat_with_contact (contact, chat_cb, NULL);
50 }
51
52 int main (int argc,
53           char *argv[])
54 {
55   EmpathyContactManager *manager;
56   EmpathyContactListStore *store;
57   GtkWidget *vbox, *button, *selector;
58
59   gtk_init (&argc, &argv);
60
61   empathy_gtk_init ();
62
63   manager = empathy_contact_manager_dup_singleton ();
64   store = empathy_contact_list_store_new (EMPATHY_CONTACT_LIST (manager));
65
66   vbox = gtk_vbox_new (FALSE, 2);
67
68   selector = empathy_contact_selector_new (store);
69   gtk_box_pack_start (GTK_BOX (vbox), selector, FALSE, FALSE, 5);
70
71   button = gtk_button_new_with_label ("Chat");
72   g_signal_connect (G_OBJECT (button), "clicked",
73       G_CALLBACK (clicked_cb), (gpointer) selector);
74   gtk_box_pack_start(GTK_BOX (vbox), button, FALSE, FALSE, 5);
75
76   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
77   g_signal_connect (G_OBJECT (window), "destroy",
78       gtk_main_quit, NULL);
79   gtk_window_set_title (GTK_WINDOW (window),"Empetit");
80   gtk_container_set_border_width (GTK_CONTAINER (window), 5);
81   gtk_container_add (GTK_CONTAINER (window), vbox);
82   gtk_widget_show_all (window);
83
84   gtk_main ();
85
86   g_object_unref (store);
87   g_object_unref (manager);
88
89   return 0;
90 }