Mercurial > pidgin
view finch/libgnt/test/file.c @ 20573:e2347dda167c
merge of '1c5efeb28eebea9bc8d25b6a543a3e71a31a4884'
and 'dcf42d4b0a0219f1eeabf9686321735ae9b13e7f'
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Fri, 21 Sep 2007 00:20:20 +0000 |
parents | f104e1d45d85 |
children | 57d350900136 |
line wrap: on
line source
#include "gnt.h" #include "gntfilesel.h" static void file_selected(GntFileSel *sel, const char *path, const char *filename) { g_printerr("%s %s\n", path, filename); } int main() { freopen(".error", "w", stderr); fprintf(stdout, "\x1b]1;\x07\x1b]2;TEST\x07"); 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); g_signal_connect(G_OBJECT(w), "file_selected", G_CALLBACK(file_selected), NULL); gnt_main(); gnt_quit(); return 0; }