Merge remote-tracking branch 'origin/master' into sheet
[pspp] / src / ui / gui / psppire-import-assistant.h
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2015, 2017  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 "psppire-dict.h"
27 #include "data/spreadsheet-reader.h"
28 #include "psppire-text-file.h"
29 #include "psppire-delimited-text.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 quotes;       /* Quote characters. */
93
94   GtkWidget *custom_cb;
95   GtkWidget *custom_entry;
96   GtkWidget *quote_cb;
97   GtkWidget *quote_combo;
98
99   GtkEntry *quote_entry;
100   GtkWidget *fields_tree_view;
101
102 /* END Page where the user chooses field separators. */
103
104
105   /* START first line page */
106   GtkWidget *first_line_tree_view;
107   GtkWidget *variable_names_cb;
108   /* END first line page */
109
110   GMainLoop *main_loop;
111   GtkWidget *paste_button;
112   GtkWidget *reset_button;
113   int response;
114
115   PsppireTextFile *text_file;
116   PsppireDelimitedText *delimiters_model;
117
118   struct sheet_spec_page *sheet_spec;
119
120   struct dictionary *dict;
121
122   GtkWidget *var_sheet;
123   GtkWidget *data_sheet;
124
125   struct spreadsheet *spreadsheet;
126 };
127
128 struct _PsppireImportAssistantClass
129 {
130   GtkAssistantClass parent_class;
131 };
132
133 GType psppire_import_assistant_get_type (void) ;
134
135
136 GtkWidget *psppire_import_assistant_new (GtkWindow *toplevel);
137
138 gchar *psppire_import_assistant_generate_syntax (PsppireImportAssistant *);
139
140 int psppire_import_assistant_run (PsppireImportAssistant *asst);
141
142 G_END_DECLS
143
144 #endif /* __PSPPIRE_IMPORT_ASSISTANT_H__ */