/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ #include #include int main (int argc, char *argv[]) { GnomeProgram *program; gchar *text; program = gnome_program_init ("bonobo-selector", VERSION, LIBBONOBOUI_MODULE, argc, argv, NULL); text = bonobo_selector_select_id (_("Select an object"), NULL); g_print ("OAFIID: '%s'\n", text ? text : ""); g_free (text); g_object_unref (program); return bonobo_ui_debug_shutdown (); }