Assamese translation updated
[platform/upstream/evolution-data-server.git] / tests / libedataserverui / test-name-selector.c
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2
3 /* test-name-selector.c - Test for name selector components.
4  *
5  * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of version 2 of the GNU Lesser General Public
9  * License as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  *
21  * Author: Hans Petter Jansson <hpj@novell.com>
22  */
23
24 #include <camel/camel.h>
25 #include <libedataserverui/libedataserverui.h>
26
27 static ENameSelectorDialog *name_selector_dialog;
28 static GtkWidget           *name_selector_entry_window;
29
30 static void
31 close_dialog (GtkWidget *widget,
32               gint response,
33               gpointer data)
34 {
35         gtk_widget_destroy (GTK_WIDGET (name_selector_dialog));
36         gtk_widget_destroy (name_selector_entry_window);
37
38         g_timeout_add (4000, (GSourceFunc) gtk_main_quit, NULL);
39 }
40
41 static gboolean
42 start_test (ESourceRegistry *registry)
43 {
44         ENameSelectorModel  *name_selector_model;
45         ENameSelectorEntry  *name_selector_entry;
46         EDestinationStore   *destination_store;
47         GtkWidget           *container;
48
49         destination_store = e_destination_store_new ();
50         name_selector_model = e_name_selector_model_new ();
51
52         e_name_selector_model_add_section (name_selector_model, "to", "To", destination_store);
53         e_name_selector_model_add_section (name_selector_model, "cc", "Cc", NULL);
54         e_name_selector_model_add_section (name_selector_model, "bcc", "Bcc", NULL);
55
56         name_selector_dialog = e_name_selector_dialog_new (registry);
57         e_name_selector_dialog_set_model (name_selector_dialog, name_selector_model);
58         gtk_window_set_modal (GTK_WINDOW (name_selector_dialog), FALSE);
59
60         name_selector_entry = e_name_selector_entry_new (registry);
61         e_name_selector_entry_set_destination_store (name_selector_entry, destination_store);
62
63         g_signal_connect (name_selector_dialog, "response", G_CALLBACK (close_dialog), name_selector_dialog);
64         gtk_widget_show (GTK_WIDGET (name_selector_dialog));
65
66         container = gtk_window_new (GTK_WINDOW_TOPLEVEL);
67         gtk_container_add (GTK_CONTAINER (container), GTK_WIDGET (name_selector_entry));
68         gtk_widget_show_all (container);
69
70         name_selector_entry_window = container;
71
72         g_object_unref (name_selector_model);
73         g_object_unref (destination_store);
74         return FALSE;
75 }
76
77 gint
78 main (gint argc,
79       gchar **argv)
80 {
81         ESourceRegistry *registry;
82         GError *error = NULL;
83
84         gtk_init (&argc, &argv);
85
86         camel_init (NULL, 0);
87
88         registry = e_source_registry_new_sync (NULL, &error);
89
90         if (error != NULL) {
91                 g_error (
92                         "Failed to load ESource registry: %s",
93                         error->message);
94                 g_assert_not_reached ();
95         }
96
97         g_idle_add ((GSourceFunc) start_test, registry);
98
99         gtk_main ();
100
101         return 0;
102 }