Oops! add this file
[pspp-builds.git] / src / ui / gui / comments-dialog.c
1 /*
2     PSPPIRE --- A Graphical User Interface for PSPP
3     Copyright (C) 2007  Free Software Foundation
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18     02110-1301, USA. */
19
20 #include <config.h>
21
22 #include <gtksheet/gtksheet.h>
23 #include "psppire-dialog.h"
24 #include "helper.h"
25 #include "data-editor.h"
26 #include <language/syntax-string-source.h>
27 #include "syntax-editor.h"
28 #include "psppire-var-store.h"
29 #include <libpspp/syntax-gen.h>
30
31 #include "comments-dialog.h"
32
33 #include "dialog-common.h"
34
35 #include <gtk/gtk.h>
36 #include <glade/glade.h>
37
38 #include <gettext.h>
39
40 #define _(msgid) gettext (msgid)
41 #define N_(msgid) msgid
42
43
44 struct comment_dialog
45 {
46   GladeXML *xml;
47   PsppireDict *dict;
48 };
49
50 static void refresh (PsppireDialog *dialog, const struct comment_dialog *);
51 static char *generate_syntax (const struct comment_dialog *);
52
53 static void
54 set_column_number (GtkTextBuffer *textbuffer,
55      GtkTextIter   *iter,
56      GtkTextMark   *mark,
57      gpointer       data)
58 {
59   GtkLabel *label = data;
60   gchar *text ;
61
62   text = g_strdup_printf ( _("Column Number: %d"),
63                            1 + gtk_text_iter_get_line_offset (iter));
64
65   gtk_label_set_text (label, text);
66
67   g_free (text);
68 }
69
70 static void
71 wrap_line (GtkTextBuffer *buffer,
72      GtkTextIter   *iter,
73      gchar         *text,
74      gint           count,
75      gpointer       data)
76 {
77   gint chars = gtk_text_iter_get_chars_in_line (iter);
78
79   if ( chars > DOC_LINE_LENGTH )
80     {
81       GtkTextIter line_fold = *iter;
82       GtkTextIter cursor;
83
84       gtk_text_iter_set_line_offset (&line_fold, DOC_LINE_LENGTH);
85
86       gtk_text_buffer_insert (buffer, &line_fold, "\r\n", 2);
87
88       cursor = line_fold;
89       gtk_text_iter_forward_to_line_end (&cursor);
90
91       gtk_text_buffer_place_cursor (buffer, &cursor);
92     }
93
94 }
95
96
97 void
98 comments_dialog (GObject *o, gpointer data)
99 {
100   GtkTextIter iter;
101   gint response ;
102   struct data_editor *de = data;
103   struct comment_dialog cd;
104
105   GladeXML *xml = XML_NEW ("psppire.glade");
106
107   GtkWidget *dialog = get_widget_assert (xml, "comments-dialog");
108   GtkWidget *textview = get_widget_assert (xml, "comments-textview1");
109   GtkWidget *label = get_widget_assert (xml, "column-number-label");
110   GtkTextBuffer *buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (textview));
111
112   GtkSheet *var_sheet =
113     GTK_SHEET (get_widget_assert (de->xml, "variable_sheet"));
114
115   PsppireVarStore *vs = PSPPIRE_VAR_STORE (gtk_sheet_get_model (var_sheet));
116
117   gtk_window_set_transient_for (GTK_WINDOW (dialog), de->parent.window);
118
119   {
120     PangoContext * context ;
121     PangoLayout *  layout ;
122     PangoRectangle rect;
123
124     /* Since we're going to truncate lines to 80 chars,
125        we need a monospaced font otherwise it'll look silly */
126     PangoFontDescription *font_desc =
127       pango_font_description_from_string ("monospace");
128
129     gtk_widget_modify_font (textview, font_desc);
130
131
132     /* and let's just make sure that a complete line fits into the
133        widget's width */
134     context = gtk_widget_create_pango_context (textview);
135     layout = pango_layout_new (context);
136
137     pango_layout_set_text (layout, "M", 1);
138
139     pango_layout_set_font_description (layout, font_desc);
140
141     pango_layout_get_extents (layout, NULL, &rect);
142
143     g_object_set (textview, "width-request",
144                   PANGO_PIXELS (rect.width) * DOC_LINE_LENGTH + 20, NULL);
145
146     g_object_unref (G_OBJECT (layout));
147     g_object_unref (G_OBJECT (context));
148
149     pango_font_description_free (font_desc);
150   }
151
152   cd.xml = xml;
153   cd.dict = vs->dict;
154
155   g_signal_connect (buffer, "mark-set",
156                     G_CALLBACK (set_column_number), label);
157
158   g_signal_connect_after (buffer, "insert-text",
159                           G_CALLBACK (wrap_line), NULL);
160
161   gtk_text_buffer_get_iter_at_offset (buffer, &iter, 0);
162   gtk_text_buffer_place_cursor (buffer, &iter);
163
164
165   g_signal_connect (dialog, "refresh", G_CALLBACK (refresh),  &cd);
166
167
168   response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
169
170   switch (response)
171     {
172     case GTK_RESPONSE_OK:
173       {
174         gchar *syntax = generate_syntax (&cd);
175         struct getl_interface *sss = create_syntax_string_source (syntax);
176         execute_syntax (sss);
177
178         g_free (syntax);
179       }
180       break;
181     case PSPPIRE_RESPONSE_PASTE:
182       {
183         gchar *syntax = generate_syntax (&cd);
184
185         struct syntax_editor *se =
186           (struct syntax_editor *) window_create (WINDOW_SYNTAX, NULL);
187
188         gtk_text_buffer_insert_at_cursor (se->buffer, syntax, -1);
189
190         g_free (syntax);
191       }
192       break;
193     default:
194       break;
195     }
196
197
198   g_object_unref (xml);
199 }
200
201
202 static void
203 add_line_to_buffer (GtkTextBuffer *buffer, const char *line)
204 {
205   gtk_text_buffer_insert_at_cursor (buffer, line, -1);
206
207   gtk_text_buffer_insert_at_cursor (buffer, "\n", 1);
208 }
209
210 static void
211 refresh (PsppireDialog *dialog, const struct comment_dialog *cd)
212 {
213   gint i;
214   GtkWidget *tv = get_widget_assert (cd->xml, "comments-textview1");
215   GtkTextBuffer *buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (tv));
216
217   gtk_text_buffer_set_text (buffer, "", 0);
218
219   for ( i = 0 ; i < dict_get_document_line_cnt (cd->dict->dict); ++i )
220     {
221       struct string str;
222       ds_init_empty (&str);
223       dict_get_document_line (cd->dict->dict, i, &str);
224       add_line_to_buffer (buffer, ds_cstr (&str));
225       ds_destroy (&str);
226     }
227 }
228
229
230
231 static char *
232 generate_syntax (const struct comment_dialog *cd)
233 {
234   gint i;
235
236   GString *str;
237   gchar *text;
238   GtkWidget *tv = get_widget_assert (cd->xml, "comments-textview1");
239   GtkWidget *check = get_widget_assert (cd->xml, "comments-checkbutton1");
240   GtkTextBuffer *buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (tv));
241   const char *existing_docs = dict_get_documents (cd->dict->dict);
242
243   str = g_string_new ("\n* Data File Comments.\n\n");
244
245   if ( NULL != existing_docs)
246     g_string_append (str, "DROP DOCUMENTS.\n");
247
248   g_string_append (str, "ADD DOCUMENT\n");
249
250   for (i = 0 ; i < gtk_text_buffer_get_line_count (buffer) ; ++i )
251     {
252       struct string line;
253       GtkTextIter start, end;
254       gtk_text_buffer_get_iter_at_line (buffer, &start, i);
255
256       end = start;
257
258       gtk_text_iter_forward_to_line_end (&end);
259
260       if ( gtk_text_iter_ends_line (&start))
261         ds_init_cstr (&line, "");
262       else
263         ds_init_cstr (&line,
264                       gtk_text_buffer_get_text (buffer,
265                                                 &start, &end,
266                                                 FALSE));
267
268       gen_quoted_string (&line);
269
270       g_string_append_printf (str, " %s\n", ds_cstr (&line));
271
272       ds_destroy (&line);
273     }
274   g_string_append (str, " .\n");
275
276
277
278   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (check)))
279     g_string_append (str, "DISPLAY DOCUMENTS.\n");
280
281   text = str->str;
282
283   g_string_free (str, FALSE);
284
285   return text;
286 }