view finch/libgnt/test/file.c @ 17997:56c4f462b110

merge of '894058a4901b0a786a7f35183b8a15a9731c95c6' and 'c69ab4b39cbf199ad5d4060a49c58bee3a63f4bb'
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sat, 02 Jun 2007 14:25:41 +0000
parents f00f2e283ffb
children f104e1d45d85
line wrap: on
line source

#include "gnt.h"
#include "gntfilesel.h"

int main()
{
	freopen(".error", "w", stderr);
	gnt_init();

	GntWidget *w = gnt_file_sel_new();
	gnt_file_sel_set_current_location(GNT_FILE_SEL(w), "/home/");
	gnt_file_sel_set_dirs_only(GNT_FILE_SEL(w), TRUE);
	gnt_file_sel_set_multi_select(GNT_FILE_SEL(w), TRUE);
	gnt_widget_show(w);

	gnt_main();

	gnt_quit();
	return 0;
}