#include <hildon-widgets/hildon-file-chooser-dialog.h>
#include <gtk/gtk.h>

int main(int argc, char *argv[])
{
    int i;
    GtkWidget *filechooser;

    gtk_init(&argc, &argv);

    filechooser = hildon_file_chooser_dialog_new(NULL,
                    GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER);

    i = gtk_dialog_run(filechooser);

    gtk_widget_destroy(filechooser);
    return 0;
}