Use the msg function to report errors wherever possible.
[pspp] / src / ui / gui / page-intro.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 "page-intro.h"
20
21 #include "ui/gui/text-data-import-dialog.h"
22
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <gtk/gtk.h>
26 #include <limits.h>
27 #include <stdlib.h>
28 #include <sys/stat.h>
29
30 #include "data/data-in.h"
31 #include "data/data-out.h"
32 #include "data/format-guesser.h"
33 #include "data/value-labels.h"
34 #include "language/data-io/data-parser.h"
35 #include "language/lexer/lexer.h"
36 #include "libpspp/assertion.h"
37 #include "libpspp/i18n.h"
38 #include "libpspp/line-reader.h"
39 #include "libpspp/message.h"
40 #include "ui/gui/checkbox-treeview.h"
41 #include "ui/gui/dialog-common.h"
42 #include "ui/gui/executor.h"
43 #include "ui/gui/helper.h"
44 #include "ui/gui/builder-wrapper.h"
45 #include "ui/gui/psppire-data-window.h"
46 #include "ui/gui/psppire-dialog.h"
47 #include "ui/gui/psppire-encoding-selector.h"
48 #include "ui/gui/psppire-empty-list-store.h"
49 #include "ui/gui/psppire-var-sheet.h"
50 #include "ui/gui/psppire-scanf.h"
51 #include "ui/syntax-gen.h"
52
53 #include "gl/intprops.h"
54 #include "gl/xalloc.h"
55
56 #include "gettext.h"
57 #define _(msgid) gettext (msgid)
58 #define N_(msgid) msgid
59
60 struct import_assistant;
61
62
63 \f
64 /* The "intro" page of the assistant. */
65
66 /* The introduction page of the assistant. */
67 struct intro_page
68   {
69     GtkWidget *page;
70     GtkWidget *all_cases_button;
71     GtkWidget *n_cases_button;
72     GtkWidget *n_cases_spin;
73     GtkWidget *percent_button;
74     GtkWidget *percent_spin;
75   };
76
77 static void on_intro_amount_changed (struct intro_page *);
78
79 /* Initializes IA's intro substructure. */
80 struct intro_page *
81 intro_page_create (struct import_assistant *ia)
82 {
83   GtkBuilder *builder = ia->asst.builder;
84   struct string s;
85   GtkWidget *hbox_n_cases ;
86   GtkWidget *hbox_percent ;
87   GtkWidget *table ;
88
89   struct intro_page *p = xzalloc (sizeof (*p));
90
91   p->n_cases_spin = gtk_spin_button_new_with_range (0, INT_MAX, 100);
92
93   hbox_n_cases = psppire_scanf_new (_("Only the first %4d cases"), &p->n_cases_spin);
94
95   table  = get_widget_assert (builder, "button-table");
96
97   gtk_table_attach_defaults (GTK_TABLE (table), hbox_n_cases,
98                     1, 2,
99                     1, 2);
100
101   p->percent_spin = gtk_spin_button_new_with_range (0, 100, 10);
102
103   hbox_percent = psppire_scanf_new (_("Only the first %3d %% of file (approximately)"), &p->percent_spin);
104
105   gtk_table_attach_defaults (GTK_TABLE (table), hbox_percent,
106                              1, 2,
107                              2, 3);
108
109   p->page = add_page_to_assistant (ia, get_widget_assert (builder, "Intro"),
110                                    GTK_ASSISTANT_PAGE_INTRO);
111
112   p->all_cases_button = get_widget_assert (builder, "import-all-cases");
113
114   p->n_cases_button = get_widget_assert (builder, "import-n-cases");
115
116   p->percent_button = get_widget_assert (builder, "import-percent");
117
118   g_signal_connect_swapped (p->all_cases_button, "toggled",
119                     G_CALLBACK (on_intro_amount_changed), p);
120   g_signal_connect_swapped (p->n_cases_button, "toggled",
121                     G_CALLBACK (on_intro_amount_changed), p);
122   g_signal_connect_swapped (p->percent_button, "toggled",
123                     G_CALLBACK (on_intro_amount_changed), p);
124
125   on_intro_amount_changed (p);
126
127   ds_init_empty (&s);
128   ds_put_cstr (&s, _("This assistant will guide you through the process of "
129                      "importing data into PSPP from a text file with one line "
130                      "per case,  in which fields are separated by tabs, "
131                      "commas, or other delimiters.\n\n"));
132   if (ia->file.total_is_exact)
133     ds_put_format (
134       &s, ngettext ("The selected file contains %zu line of text.  ",
135                     "The selected file contains %zu lines of text.  ",
136                     ia->file.line_cnt),
137       ia->file.line_cnt);
138   else if (ia->file.total_lines > 0)
139     {
140       ds_put_format (
141         &s, ngettext (
142           "The selected file contains approximately %lu line of text.  ",
143           "The selected file contains approximately %lu lines of text.  ",
144           ia->file.total_lines),
145         ia->file.total_lines);
146       ds_put_format (
147         &s, ngettext (
148           "Only the first %zu line of the file will be shown for "
149           "preview purposes in the following screens.  ",
150           "Only the first %zu lines of the file will be shown for "
151           "preview purposes in the following screens.  ",
152           ia->file.line_cnt),
153         ia->file.line_cnt);
154     }
155   ds_put_cstr (&s, _("You may choose below how much of the file should "
156                      "actually be imported."));
157   gtk_label_set_text (GTK_LABEL (get_widget_assert (builder, "intro-label")),
158                       ds_cstr (&s));
159   ds_destroy (&s);
160
161   return p;
162 }
163
164 /* Resets IA's intro page to its initial state. */
165 void
166 reset_intro_page (struct import_assistant *ia)
167 {
168   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (ia->intro->all_cases_button),
169                                 true);
170 }
171
172 /* Called when one of the radio buttons is clicked. */
173 static void
174 on_intro_amount_changed (struct intro_page *p)
175 {
176   gtk_widget_set_sensitive (p->n_cases_spin,
177                             gtk_toggle_button_get_active (
178                               GTK_TOGGLE_BUTTON (p->n_cases_button)));
179
180   gtk_widget_set_sensitive (p->percent_spin,
181                             gtk_toggle_button_get_active (
182                               GTK_TOGGLE_BUTTON (p->percent_button)));
183 }
184
185
186 void
187 intro_append_syntax (const struct intro_page *p, struct string *s)
188 {
189   if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (p->n_cases_button)))
190     ds_put_format (s, "  /IMPORTCASES=FIRST %d\n",
191                    gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (p->n_cases_spin)));
192   else if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (p->percent_button)))
193     ds_put_format (s, "  /IMPORTCASES=PERCENT %d\n",
194                    gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (p->percent_spin)));
195   else
196     ds_put_cstr (s, "  /IMPORTCASES=ALL\n");
197 }