From 0066917014d32f80b70982b927ee5a6859b0cbd5 Mon Sep 17 00:00:00 2001 From: Přemysl Janouch Date: Tue, 9 Oct 2012 18:03:28 +0200 Subject: Support multiple filenames on command line. Should work fine, although I doubt anyone would use it. --- src/logdiag.c | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) (limited to 'src/logdiag.c') diff --git a/src/logdiag.c b/src/logdiag.c index f6132c4..563ada2 100644 --- a/src/logdiag.c +++ b/src/logdiag.c @@ -76,14 +76,33 @@ get_utf8_args_fail: } #endif +static gint ld_active_windows = 0; + +static void +window_on_destroyed (GtkObject *object, gpointer user_data) +{ + if (--ld_active_windows <= 0) + gtk_main_quit (); +} + +static void +window_create (const gchar *file) +{ + GtkWidget *wm; + + wm = ld_window_main_new (file); + g_signal_connect (wm, "destroy", G_CALLBACK (window_on_destroyed), NULL); + ld_active_windows++; +} + int main (int argc, char *argv[]) { - gchar **files = NULL; + gchar **iter, **files = NULL; GOptionEntry option_entries[] = { {G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &files, - NULL, N_("[FILE]")}, + NULL, N_("[FILE...]")}, {NULL} }; @@ -142,14 +161,14 @@ main (int argc, char *argv[]) gtk_window_set_default_icon_name (PROJECT_NAME); - /* TODO: Be able to open multiple files. */ if (files) { - ld_window_main_new (files[0]); + for (iter = files; *iter; iter++) + window_create (*iter); g_strfreev (files); } else - ld_window_main_new (NULL); + window_create (NULL); gtk_main (); return 0; -- cgit v1.2.3-54-g00ecf