~bcurtiswx/ubuntu/precise/empathy/3.4.2.1-0ubuntu1

« back to all changes in this revision

Viewing changes to tests/test-empathy-presence-chooser.c

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2009-11-16 23:40:52 UTC
  • mfrom: (1.1.39 upstream)
  • mto: (6.3.7 experimental)
  • mto: This revision was merged to the branch mainline in revision 80.
  • Revision ID: james.westby@ubuntu.com-20091116234052-7hhwrpeln4mwdyw7
Tags: upstream-2.29.2
ImportĀ upstreamĀ versionĀ 2.29.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
 
/*
3
 
 * Copyright (C) 2009 Collabora Ltd.
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU General Public License as
7
 
 * published by the Free Software Foundation; either version 2 of the
8
 
 * License, or (at your option) any later version.
9
 
 *
10
 
 * This program is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 
 * General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU General Public
16
 
 * License along with this program; if not, write to the
17
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18
 
 * Boston, MA 02111-1307, USA.
19
 
 *
20
 
 * Authors: Davyd Madeley <davyd.madeley@collabora.co.uk>
21
 
 */
22
 
 
23
 
#include <config.h>
24
 
 
25
 
#include <gtk/gtk.h>
26
 
 
27
 
#include <libempathy/empathy-status-presets.h>
28
 
 
29
 
#include <libempathy-gtk/empathy-ui-utils.h>
30
 
#include <libempathy-gtk/empathy-presence-chooser.h>
31
 
 
32
 
int
33
 
main (int argc, char **argv)
34
 
{
35
 
        GtkWidget *window;
36
 
        GtkWidget *chooser;
37
 
 
38
 
        gtk_init (&argc, &argv);
39
 
        empathy_gtk_init ();
40
 
 
41
 
        empathy_status_presets_get_all ();
42
 
 
43
 
        window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
44
 
        chooser = empathy_presence_chooser_new ();
45
 
        gtk_container_add (GTK_CONTAINER (window), chooser);
46
 
 
47
 
        gtk_window_set_default_size (GTK_WINDOW (window), 150, -1);
48
 
        gtk_widget_show_all (window);
49
 
 
50
 
        g_signal_connect_swapped (window, "destroy",
51
 
                        G_CALLBACK (gtk_main_quit), NULL);
52
 
 
53
 
        gtk_main ();
54
 
 
55
 
        return 0;
56
 
}