Move all intro related stuff to the intro file
[pspp] / src / ui / gui / page-assistant.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2008, 2009, 2010, 2011, 2012, 2013  Free Software Foundation
3
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.
8
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.
13
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/>. */
16
17 #include <config.h>
18
19 #include "ui/gui/text-data-import-dialog.h"
20
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <gtk-contrib/psppire-sheet.h>
24 #include <gtk/gtk.h>
25 #include <limits.h>
26 #include <stdlib.h>
27 #include <sys/stat.h>
28
29 #include "data/data-in.h"
30 #include "data/data-out.h"
31 #include "data/format-guesser.h"
32 #include "data/value-labels.h"
33 #include "language/data-io/data-parser.h"
34 #include "language/lexer/lexer.h"
35 #include "libpspp/assertion.h"
36 #include "libpspp/i18n.h"
37 #include "libpspp/line-reader.h"
38 #include "libpspp/message.h"
39 #include "ui/gui/checkbox-treeview.h"
40 #include "ui/gui/dialog-common.h"
41 #include "ui/gui/executor.h"
42 #include "ui/gui/helper.h"
43 #include "ui/gui/builder-wrapper.h"
44 #include "ui/gui/psppire-data-window.h"
45 #include "ui/gui/psppire-dialog.h"
46 #include "ui/gui/psppire-encoding-selector.h"
47 #include "ui/gui/psppire-empty-list-store.h"
48 #include "ui/gui/psppire-var-sheet.h"
49 #include "ui/gui/psppire-var-store.h"
50
51 #include "gl/error.h"
52 #include "gl/intprops.h"
53 #include "gl/xalloc.h"
54
55 #include "gettext.h"
56 #define _(msgid) gettext (msgid)
57 #define N_(msgid) msgid
58
59 /* Assistant. */
60
61 static void close_assistant (struct import_assistant *, int response);
62 static void on_prepare (GtkAssistant *assistant, GtkWidget *page,
63                         struct import_assistant *);
64 static void on_cancel (GtkAssistant *assistant, struct import_assistant *);
65 static void on_close (GtkAssistant *assistant, struct import_assistant *);
66 static void on_paste (GtkButton *button, struct import_assistant *);
67 static void on_reset (GtkButton *button, struct import_assistant *);
68 static void close_assistant (struct import_assistant *, int response);
69
70 /* Initializes IA's asst substructure.  PARENT_WINDOW must be the
71    window to use as the assistant window's parent.  */
72 struct import_assistant *
73 init_assistant (GtkWindow *parent_window)
74 {
75   struct import_assistant *ia = NULL;
76   ia = xzalloc (sizeof *ia);
77   struct assistant *a = &ia->asst;
78
79   a->builder = builder_new ("text-data-import.ui");
80   a->assistant = GTK_ASSISTANT (gtk_assistant_new ());
81
82   ia->intro = intro_page_create (ia);
83   ia->sheet_spec = xzalloc (sizeof *ia->sheet_spec);
84   ia->first_line = xzalloc (sizeof *ia->first_line);
85   ia->separators = xzalloc (sizeof *ia->separators);
86   ia->formats = xzalloc (sizeof *ia->formats);
87
88
89   g_signal_connect (a->assistant, "prepare", G_CALLBACK (on_prepare), ia);
90   g_signal_connect (a->assistant, "cancel", G_CALLBACK (on_cancel), ia);
91   g_signal_connect (a->assistant, "close", G_CALLBACK (on_close), ia);
92   a->paste_button = gtk_button_new_from_stock (GTK_STOCK_PASTE);
93   gtk_assistant_add_action_widget (a->assistant, a->paste_button);
94   g_signal_connect (a->paste_button, "clicked", G_CALLBACK (on_paste), ia);
95   a->reset_button = gtk_button_new_from_stock ("pspp-stock-reset");
96   gtk_assistant_add_action_widget (a->assistant, a->reset_button);
97   g_signal_connect (a->reset_button, "clicked", G_CALLBACK (on_reset), ia);
98   gtk_window_set_title (GTK_WINDOW (a->assistant),
99                         _("Importing Delimited Text Data"));
100   gtk_window_set_transient_for (GTK_WINDOW (a->assistant), parent_window);
101   gtk_window_set_icon_name (GTK_WINDOW (a->assistant), "pspp");
102
103   a->prop_renderer = gtk_cell_renderer_text_new ();
104   g_object_ref_sink (a->prop_renderer);
105   a->fixed_renderer = gtk_cell_renderer_text_new ();
106   g_object_ref_sink (a->fixed_renderer);
107   g_object_set (G_OBJECT (a->fixed_renderer),
108                 "family", "Monospace",
109                 (void *) NULL);
110   return ia;
111 }
112
113 /* Frees IA's asst substructure. */
114 void
115 destroy_assistant (struct import_assistant *ia)
116 {
117   struct assistant *a = &ia->asst;
118
119   g_object_unref (a->prop_renderer);
120   g_object_unref (a->fixed_renderer);
121   g_object_unref (a->builder);
122 }
123
124 /* Appends a page of the given TYPE, with PAGE as its content, to
125    the GtkAssistant encapsulated by IA.  Returns the GtkWidget
126    that represents the page. */
127 GtkWidget *
128 add_page_to_assistant (struct import_assistant *ia,
129                        GtkWidget *page, GtkAssistantPageType type)
130 {
131   const char *title;
132   char *title_copy;
133   GtkWidget *content;
134
135   title = gtk_window_get_title (GTK_WINDOW (page));
136   title_copy = xstrdup (title ? title : "");
137
138   content = gtk_bin_get_child (GTK_BIN (page));
139   assert (content);
140   g_object_ref (content);
141   gtk_container_remove (GTK_CONTAINER (page), content);
142
143   gtk_widget_destroy (page);
144
145   gtk_assistant_append_page (ia->asst.assistant, content);
146   gtk_assistant_set_page_type (ia->asst.assistant, content, type);
147   gtk_assistant_set_page_title (ia->asst.assistant, content, title_copy);
148   gtk_assistant_set_page_complete (ia->asst.assistant, content, true);
149
150   free (title_copy);
151
152   return content;
153 }
154
155 /* Called just before PAGE is displayed as the current page of
156    ASSISTANT, this updates IA content according to the new
157    page. */
158 static void
159 on_prepare (GtkAssistant *assistant, GtkWidget *page,
160             struct import_assistant *ia)
161 {
162   struct sheet_spec_page *ssp = ia->sheet_spec;
163
164   int pn = gtk_assistant_get_current_page (assistant);
165   g_print ("%s:%d Page %d %p\n", __FILE__, __LINE__, pn, page);
166
167 #if 0  
168   if (pn == 1 && ssp->spreadsheet)
169     post_sheet_spec_page (ia);
170
171   if (gtk_assistant_get_page_type (assistant, page)
172       == GTK_ASSISTANT_PAGE_CONFIRM)
173     gtk_widget_grab_focus (assistant->apply);
174   else
175     gtk_widget_grab_focus (assistant->forward);
176
177
178   /* Prepare .... */
179   if (page == ia->separators->page)
180     prepare_separators_page (ia);
181   else if (page == ia->formats->page)
182     prepare_formats_page (ia);
183   else if (page == ia->sheet_spec->page && ssp->spreadsheet)
184     {
185       prepare_sheet_spec_page (ia);
186     }
187
188
189 #endif
190   
191   gtk_widget_show (ia->asst.reset_button);
192   if (page == ia->formats->page)
193     gtk_widget_show (ia->asst.paste_button);
194   else
195     gtk_widget_hide (ia->asst.paste_button);
196 }
197
198 /* Called when the Cancel button in the assistant is clicked. */
199 static void
200 on_cancel (GtkAssistant *assistant, struct import_assistant *ia)
201 {
202   close_assistant (ia, GTK_RESPONSE_CANCEL);
203 }
204
205 /* Called when the Apply button on the last page of the assistant
206    is clicked. */
207 static void
208 on_close (GtkAssistant *assistant, struct import_assistant *ia)
209 {
210   close_assistant (ia, GTK_RESPONSE_APPLY);
211 }
212
213 /* Called when the Paste button on the last page of the assistant
214    is clicked. */
215 static void
216 on_paste (GtkButton *button, struct import_assistant *ia)
217 {
218   close_assistant (ia, PSPPIRE_RESPONSE_PASTE);
219 }
220
221 /* Called when the Reset button is clicked. */
222 static void
223 on_reset (GtkButton *button, struct import_assistant *ia)
224 {
225 #if 0
226   gint page_num = gtk_assistant_get_current_page (ia->asst.assistant);
227   GtkWidget *page = gtk_assistant_get_nth_page (ia->asst.assistant, page_num);
228
229   if (page == ia->intro->page)
230     reset_intro_page (ia);
231   else if (page == ia->first_line->page)
232     reset_first_line_page (ia);
233   else if (page == ia->separators->page)
234     reset_separators_page (ia);
235   else if (page == ia->formats->page)
236     reset_formats_page (ia);
237   else if (page == ia->sheet_spec->page)
238     reset_sheet_spec_page (ia);
239 #endif
240 }
241
242 /* Causes the assistant to close, returning RESPONSE for
243    interpretation by text_data_import_assistant. */
244 static void
245 close_assistant (struct import_assistant *ia, int response)
246 {
247   ia->asst.response = response;
248   g_main_loop_quit (ia->asst.main_loop);
249   gtk_widget_hide (GTK_WIDGET (ia->asst.assistant));
250 }
251