~ubuntu-branches/ubuntu/oneiric/gdm3/oneiric

« back to all changes in this revision

Viewing changes to gui/simple-greeter/test-layout-chooser.c

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2010-03-25 20:02:20 UTC
  • Revision ID: james.westby@ubuntu.com-20100325200220-12cap62s6p304nuh
Tags: upstream-2.29.92
ImportĀ upstreamĀ versionĀ 2.29.92

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
 
2
 *
 
3
 * Copyright (C) 2007 William Jon McCann <mccann@jhu.edu>
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (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
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 */
 
19
 
 
20
#include "config.h"
 
21
 
 
22
#include <stdlib.h>
 
23
#include <libintl.h>
 
24
#include <locale.h>
 
25
#include <string.h>
 
26
#include <unistd.h>
 
27
#include <signal.h>
 
28
#include <errno.h>
 
29
 
 
30
#include <glib/gi18n.h>
 
31
#include <gtk/gtk.h>
 
32
 
 
33
#include "gdm-layout-chooser-dialog.h"
 
34
 
 
35
int
 
36
main (int argc, char *argv[])
 
37
{
 
38
        GtkWidget *dialog;
 
39
 
 
40
        bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
 
41
        bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
 
42
        textdomain (GETTEXT_PACKAGE);
 
43
 
 
44
        setlocale (LC_ALL, "");
 
45
 
 
46
        gtk_init (&argc, &argv);
 
47
 
 
48
        dialog = gdm_layout_chooser_dialog_new ();
 
49
        gtk_widget_set_size_request (dialog, 480, 480);
 
50
 
 
51
        if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_OK) {
 
52
                char *name;
 
53
 
 
54
                name = gdm_layout_chooser_dialog_get_current_layout_name (GDM_LAYOUT_CHOOSER_DIALOG (dialog));
 
55
                g_message ("Layout: %s", name ? name : "(null)");
 
56
                g_free (name);
 
57
        }
 
58
        gtk_widget_destroy (dialog);
 
59
 
 
60
        return 0;
 
61
}