Import Assistant: Fix generation of /DELIMITERS subcommand
[pspp] / src / ui / gui / psppire-import-assistant.h
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2015  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
18 #ifndef __PSPPIRE_IMPORT_ASSISTANT_H__
19 #define __PSPPIRE_IMPORT_ASSISTANT_H__
20
21 #include <glib-object.h>
22 #include <glib.h>
23
24 #include <gtk/gtk.h>
25
26 #include "libpspp/str.h"
27 #include "psppire-dict.h"
28 #include "data/spreadsheet-reader.h"
29 #include "psppire-text-file.h"
30
31 G_BEGIN_DECLS
32
33 struct spreadsheet;
34
35
36 #define PSPPIRE_TYPE_IMPORT_ASSISTANT (psppire_import_assistant_get_type ())
37
38 #define PSPPIRE_IMPORT_ASSISTANT(obj)   \
39                      (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
40                                                   PSPPIRE_TYPE_IMPORT_ASSISTANT, PsppireImportAssistant))
41
42 #define PSPPIRE_IMPORT_ASSISTANT_CLASS(klass) \
43                      (G_TYPE_CHECK_CLASS_CAST ((klass), \
44                                  PSPPIRE_TYPE_IMPORT_ASSISTANT, \
45                                  PsppireImportAssistantClass))
46
47 #define PSPPIRE_IS_IMPORT_ASSISTANT(obj) \
48                      (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PSPPIRE_TYPE_IMPORT_ASSISTANT))
49
50 #define PSPPIRE_IS_IMPORT_ASSISTANT_CLASS(klass) \
51                      (G_TYPE_CHECK_CLASS_TYPE ((klass), PSPPIRE_TYPE_IMPORT_ASSISTANT))
52
53
54 #define PSPPIRE_IMPORT_ASSISTANT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), \
55                                    PSPPIRE_TYPE_IMPORT_ASSISTANT, \
56                                    PsppireImportAssistantClass))
57
58 typedef struct _PsppireImportAssistant       PsppireImportAssistant;
59 typedef struct _PsppireImportAssistantClass  PsppireImportAssistantClass;
60
61
62 typedef void page_func (PsppireImportAssistant *, GtkWidget *page);
63
64 struct _PsppireImportAssistant
65 {
66   GtkAssistant parent;
67
68   GtkBuilder *builder;
69
70   gint current_page;
71
72   gchar *file_name;
73
74   /* START The chooser page of the assistant. */
75   GtkWidget *encoding_selector;
76   GtkFileFilter *default_filter;
77   /* END The chooser page of the assistant. */
78
79
80   /* START The introduction page of the assistant. */
81     GtkWidget *all_cases_button;
82     GtkWidget *n_cases_button;
83     GtkWidget *n_cases_spin;
84     GtkWidget *percent_button;
85     GtkWidget *percent_spin;
86   /* END The introduction page of the assistant. */
87
88
89 /* START Page where the user chooses field separators. */
90
91   /* How to break lines into columns. */
92   //  struct string separators;   /* Field separators. */
93   struct string quotes;       /* Quote characters. */
94
95   GtkWidget *custom_cb;
96   GtkWidget *custom_entry;
97   GtkWidget *quote_cb;
98   GtkWidget *quote_combo;
99
100   GtkEntry *quote_entry;
101   GtkWidget *fields_tree_view;
102
103 /* END Page where the user chooses field separators. */
104
105
106 /* START Page where the user verifies and adjusts input formats. */
107    struct variable **modified_vars;
108    size_t modified_var_cnt;
109 /* END Page where the user verifies and adjusts input formats. */
110
111
112   /* START first line page */
113   GtkWidget *first_line_tree_view;
114   GtkWidget *variable_names_cb;
115   /* END first line page */
116
117   GMainLoop *main_loop;
118   GtkWidget *paste_button;
119   GtkWidget *reset_button;
120   int response;
121   int watch_cursor;
122
123   GtkCellRenderer *prop_renderer;
124   GtkCellRenderer *fixed_renderer;
125
126   PsppireTextFile *text_file;
127
128   GtkTreeModel *delimiters_model;
129
130   struct sheet_spec_page *sheet_spec;
131
132 #if MERGE_SHEET
133   /* The columns produced. */
134   struct column *columns;     /* Information about each column. */
135   size_t column_cnt;          /* Number of columns. */
136
137   int skip_lines;             /* Number of initial lines to skip? */
138   gboolean variable_names;        /* Variable names above first line of data? */
139 #endif
140
141   struct dictionary *dict;
142
143   GtkWidget *var_sheet;
144   GtkWidget *data_sheet;
145
146   struct spreadsheet *spreadsheet;
147 };
148
149 struct _PsppireImportAssistantClass
150 {
151   GtkAssistantClass parent_class;
152 };
153
154 GType psppire_import_assistant_get_type (void) ;
155
156
157 GtkWidget *psppire_import_assistant_new (GtkWindow *toplevel);
158
159 gchar *psppire_import_assistant_generate_syntax (PsppireImportAssistant *);
160
161 G_END_DECLS
162
163 #endif /* __PSPPIRE_IMPORT_ASSISTANT_H__ */