1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2004, 2005, 2006 Free Software Foundation
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include <gl/relocatable.h>
25 #include <libpspp/version.h>
26 #include <libpspp/copyleft.h>
28 static gboolean parse_command_line (int *argc, char ***argv, gchar **filename,
29 gboolean *show_splash, GError **err);
34 create_splash_window (void)
39 gtk_window_set_auto_startup_notification (FALSE);
41 splash = gtk_window_new (GTK_WINDOW_POPUP);
43 gtk_window_set_position (GTK_WINDOW (splash),
44 GTK_WIN_POS_CENTER_ALWAYS);
46 gtk_window_set_type_hint (GTK_WINDOW (splash),
47 GDK_WINDOW_TYPE_HINT_SPLASHSCREEN);
49 image = gtk_image_new_from_file (relocate (PKGDATADIR "/splash.png"));
51 gtk_container_add (GTK_CONTAINER (splash), image);
53 gtk_widget_show (image);
59 hide_splash_window (gpointer data)
61 GtkWidget *splash = data;
62 gtk_widget_destroy (splash);
63 gtk_window_set_auto_startup_notification (TRUE);
69 quit_one_loop (gpointer data)
77 run_inner_loop (gpointer data)
81 g_timeout_add (500, hide_splash_window, data);
93 main (int argc, char *argv[])
95 GtkWidget *splash_window;
97 gboolean show_splash = TRUE;
101 set_program_name (argv[0]);
103 if ( ! gtk_parse_args (&argc, &argv) )
105 perror ("Error parsing arguments");
109 if ( (vers = gtk_check_version (GTK_MAJOR_VERSION,
111 GTK_MICRO_VERSION)) )
116 /* Deal with options like --version, --help etc */
117 if ( ! parse_command_line (&argc, &argv, &filename, &show_splash, &err) )
119 g_clear_error (&err);
123 gdk_init (&argc, &argv);
125 splash_window = create_splash_window ();
127 gtk_widget_show (splash_window);
129 g_idle_add (quit_one_loop, 0);
131 gtk_quit_add (0, run_inner_loop, splash_window);
139 /* Parses the command line specified by ARGC and ARGV as received by
140 main (). Returns true if normal execution should proceed,
141 false if the command-line indicates that PSPP should exit. */
143 parse_command_line (int *argc, char ***argv, gchar **filename,
144 gboolean *show_splash, GError **err)
147 static struct option long_options[] =
149 {"help", no_argument, NULL, 'h'},
150 {"version", no_argument, NULL, 'V'},
151 {"no-splash", no_argument, NULL, 'q'},
159 c = getopt_long (*argc, *argv, "hVq", long_options, NULL);
166 g_print ("Usage: psppire {|--help|--version|--no-splash}\n");
174 *show_splash = FALSE;
183 *filename = (*argv)[optind];