view finch/libgnt/test/file.c @ 25490:ddd3c6e238fe

propagate from branch 'im.pidgin.pidgin' (head a128e310ce8622212e6b8b435d45a15c25abb2c3) to branch 'im.pidgin.pidgin.yaz' (head e4fe0aa1499ea7ac385685f1604614d731478766)
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Wed, 23 May 2007 12:17:52 +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;
}