1 2007-09-26 John Darrington <john@darrington.wattle.id.au>
3 * output-viewer.c output-viewer.h psppire.c: (closes patch #6210)
4 Changed width and length parameters of output driver to
5 "auto". Changed default width and length to be something
6 acceptable to the ascii driver. (reload_viewer) Dynamically
7 allocate the line buffer so that it matches the width of the output.
9 2007-09-24 Ben Pfaff <blp@gnu.org>
11 * message-dialog.c (popup_message): Refer to files that contain
12 commands as "syntax" files, not "script" files, for better user
14 Patch #6210. Reviewed by John Darrington.
16 2007-09-19 John Darrington <john@darrington.wattle.id.au>
18 * message-dialog.c: Changed the ouput message title to be
19 appropriate for the severity of the message.
21 * output-viewer.c output-viewer.h : Added a callback for the resize
22 signal of the output viewer, and set the viewport length and
25 * psppire.c: Update to new init_settings interface.
27 2007-09-27 John Darrington <john@darrington.wattle.id.au>
29 Addressing bug #20821:
31 * psppire-dict.c: Added a BACKEND_CHANGED signal to indicate when
32 a PsppireDict's struct dictionary has been replaced.
34 * psppire-var-store.c: Added the appropriate method for
35 get_column_count. Added a signal handler for dict:BACKEND_CHANGED,
36 which calls the g_sheet_model_range_changed for the entire sheet.
38 2007-09-18 Ben Pfaff <blp@gnu.org>
40 * helper.c (create_casereader_from_data_store): New function.
41 (execute_syntax): Only replace the active file data by a new
42 casereader if syntax caused the active file to be read, to avoid
43 exponential slowdown as an increasing number of snippets that do
44 not read from the active file are consecutively executed. Bug
45 #20910. Reviewed by and heavily influenced by John Darrington.
47 * psppire-data-store.c (psppire_data_store_get_value_count): New
50 * psppire-dict.c (psppire_dict_get_value_cnt): New function.
52 2007-09-13 John Darrington <john@darrington.wattle.id.au>
54 * find-dialog.c find-dialog.h: New files.
56 * data-editor.c data-editor.h data-editor.glade: Added action for
59 * psppire-selector.c: Emit the (de)selected signal when the
60 destination entry widget's text changes.
62 2007-09-10 Ben Pfaff <blp@gnu.org>
64 * var-sheet.c (psppire_variable_sheet_create): Use xstrdup to save
65 string returned by bind_textdomain_codeset. Otherwise it can get
66 freed by a subsequent call. Patch #6193. Reviewed by John
69 2007-09-06 John Darrington <john@darrington.wattle.id.au>
71 * helper.c helper.h (execute_syntax): changed return type to
72 gboolean to indicated if all the syntax executed successfully or not.
74 * data-editor.c syntax-editor.c: Fixed update of recent file list
75 and window title, on data_file_open. They now only change, if
76 the file_open was successfull.
79 2007-08-25 John Darrington <john@darrington.wattle.id.au>
81 * psppire.c : Enable journal.
83 2007-08-18 John Darrington <john@darrington.wattle.id.au>
85 * clipboard.c clipboard.h data-editor.c: Added the ability to paste from
86 the clipboard into the data sheet.
88 2007-08-16 John Darrington <john@darrington.wattle.id.au>
90 * output-viewer.c output-viewer.h output-viewer.glade (new files)
91 helper.c psppire.c syntax-editor.glade window-manager.c
92 window-manager.h : Added a basic output viewer window.
94 2007-08-13 John Darrington <john@darrington.wattle.id.au>
96 * clipboard.c (clip_to_html clip_to_text): Fixed bug --- use the
97 variable count instead of the value count for the columns limit.
99 2007-08-12 John Darrington <john@darrington.wattle.id.au>
100 Ben Pfaff <blp@gnu.org>
102 Implement Edit|Cut operation for datasheet. Patch #6117.
104 * automake.mk: Add clipboard.c, clipboard.h.
106 * clipboard.c: New file.
108 * clipboard.h: New file.
110 * data-editor.c (new_data_editor): Connect Edit|Copy to
111 on_edit_copy function.
112 (data_var_select): Enable or disable Edit|Copy as appropriate.
113 (on_edit_copy): New function.
115 * data-editor.glade: Connect menu items to new operations.
117 2007-08-12 Ben Pfaff <blp@gnu.org>
119 * psppire-dict.c (psppire_dict_dump): Don't use
120 dict_get_compacted_dict_index_to_case_index, as that function has
123 2007-08-13 John Darrington <john@darrington.wattle.id.au>
125 * psppire-case-file.c (psppire_case_file_append_case):
126 Deleted unused function.
128 2007-08-07 John Darrington <john@darrington.wattle.id.au>
130 * helper.c (execute_syntax): Set the active file data to NULL at the
131 end of the procedure. Thanks to Ben for suggesting this.
133 * psppire-case-file.c: Added assertions to the remaining functions
134 on inaccessible objects.
136 * psppire-data-store.c psppire-data-store.h: Disconnect or block
137 signals on dictionary and case_file, when make_reader has been called.
138 Reconnect or unblock them when a new datasheet has been set for the
141 2007-08-06 John Darrington <john@darrington.wattle.id.au>
143 * syntax-editor.glade: Changed some properties to be less annoying.
145 2007-07-29 John Darrington <john@darrington.wattle.id.au>
147 * helper.c psppire.c: Enabled the output system so that the results
148 of analysis can be seen.
150 2007-07-26 John Darrington <john@darrington.wattle.id.au>
152 * helper.c helper.h (execute_syntax): removed implicit EXECUTE at end
155 * data-editor.c data-editor.glade: Added "Run Pending Transformations"
158 2007-07-25 John Darrington <john@darrington.wattle.id.au>
160 * customentry.c: Redraw button in insensitive state, if the widget's
161 "editable" style is FALSE. Don't emit the "clicked" signal if
164 * var-sheet.c: If variables are long-string variables, then set the
165 "editable" properties of the entry widgets for the values and missing
168 2007-07-18 John Darrington <john@darrington.wattle.id.au>
170 * psppire-case-file.c psppire-case-file.h psppire-data-store.c
171 psppire-dict.c psppire-dict.h psppire-var-store.c : Added the
172 ability to resize string variables. Fixed associated problems
173 inserting/deleting variables.
175 * helper.c helper.h (marshaller_VOID__INT_INT_INT): New marshaller
178 2007-07-16 John Darrington <john@darrington.wattle.id.au>
180 * data-editor.c: File Open dialog remembers directory. Thanks to
181 Ben Pfaff for this suggestion.
183 2007-07-15 John Darrington <john@darrington.wattle.id.au>
185 * compute-dialog.c: Only generate NUMERIC/STRING command if the
186 type-and-label dialog was used.
188 2007-07-12 John Darrington <john@darrington.wattle.id.au>
190 * psppire-data-store.c: Added call to g_sheet_model_range_changed to
191 ensure that datasheet displays the current store.
193 * psppire-data-store.h: Formatting tidy up.
195 2007-07-11 John Darrington <john@darrington.wattle.id.au>
197 * compute-dialog.c : Set type-and-label dialog to sensible state, and made syntax generation depend upon existence of target variable.
199 2007-07-08 John Darrington <john@darrington.wattle.id.au>
201 * data-editor.c data-editor.glade data-editor.h: Implemented
202 the "Insert Case" button/dialog.
204 2007-07-08 John Darrington <john@darrington.wattle.id.au>
206 * goto-case-dialog.c goto-case-dialog.h (new files)
207 * automake.mk data-editor.c data-editor.glade data-editor.h
208 psppire-case-file.c psppire-case-file.h psppire-data-store.c
209 psppire-data-store.h psppire.glade : Implemented the goto-case dialog
212 2007-07-07 John Darrington <john@darrington.wattle.id.au>
214 * psppire-data-store.c psppire-data-store.h: Made cases number from
217 * psppire-data-store.c: Added a tooltip like feature to display
218 the label of variables.
220 2007-07-03 John Darrington <john@darrington.wattle.id.au>
222 * data-editor.c data-sheet.c: Turned off autoscrolling, and
223 manually move to cell on column click instead.
225 2007-06-29 John Darrington <john@darrington.wattle.id.au>
227 * data-editor.c data-editor.glade psppire-data-store.c
228 psppire-data-store.h: Enabled cell reference entry and datum
231 2007-06-29 John Darrington <john@darrington.wattle.id.au>
233 * data-editor.c data-sheet.c: Moved update_cell_ref_entry from
234 data-sheet.c to data-editor.c and made it work again.
236 2007-06-06 Ben Pfaff <blp@gnu.org>
238 Adapt case sources, sinks, and clients of procedure code to the
241 * automake.mk: Removed files.
243 * flexifile-factory.c: Removed, dead code.
244 * flexifile-factory.h: Ditto.
246 * helper.c: Adapt to new procedure and datasheet code.
247 * missing-val-dialog.c: Ditto.
248 * psppire-case-file.c: Ditto.
249 * psppire-data-store.c: Ditto.
252 2007-06-03 Ben Pfaff <blp@gnu.org>
254 * psppire-var-store.c (psppire_var_store_item_editable): Use
257 2007-05-07 John Darrington <john@darrington.wattle.id.au>
259 * psppire-dialog.c psppire-dialog.h: Added "orientation" property,
260 to allow dialogs to be either vertical or horizontal.
262 * comments-dialog.c comments-dialog.h: New files, invoking
265 2007-04-30 John Darrington <john@darrington.wattle.id.au>
267 * var-display.c var-display.h variable-info-dialog.c
268 variable-info-dialog.h : New files.
272 * psppire-buttonbox.c psppire-buttonbox.h : Added the "buttons"
273 property, and optional GOTO and CONTINUE buttons.
275 * psppire-dialog.h: Added response codes for the new buttons.
277 * psppire-var-store.c : Moved some code to var-display.[ch]
279 2007-04-25 John Darrington <john@darrington.wattle.id.au>
281 * icons/scalable/splash.c icons/splash.png : More eye candy.
283 * main.c psppire.h : new files.
285 * psppire.c : Seperated the command line parsing and other
286 environment startup from the core psppire code.
288 2007-04-25 John Darrington <john@darrington.wattle.id.au>
290 * icons/scalable icons/16x16: new directories.
291 * psppire.c : Add new icons to factory.
293 * dict-display.c: Refactor code get model from modelfilter.
294 Added cellrenderer to display icon indicating variables' types.
295 Displayed the label of variables, if there is one.
298 2007-04-15 Ben Pfaff <blp@gnu.org>
300 * compute-dialog.c (function_list_populate): Use new accessor
301 functions exported by language/expressions/public.h.
303 2007-04-15 Ben Pfaff <blp@gnu.org>
305 * compute-dialog.c: Make #include for parse.inc work with VPATH
308 2007-04-13 John Darrington <john@darrington.wattle.id.au>
310 * var-type-dialog.c: Added a FMT_DATETIME20 template.
312 2007-04-04 John Darrington <john@darrington.wattle.id.au>
314 * compute-dialog.c compute-dialog.h: New files
316 * data-editor.c data-editor.h data-editor.glade : Added Transform
317 menu, and support for Compute dialog
319 * glade-register.c psppire-buttonbox.c psppire-buttonbox.h
320 psppire-vbottonbox.c psppire-vbuttonbox.h psppire-hbuttonbox.c
321 psppire-vbuttonbox.h : Made buttonbox an abstract base class
322 and separated it into vbuttonbox and hbuttonbox.
324 * psppire-selector.c : Allowed GtkTextView to be the destination
327 * psppire-keypad.c: Added an "erase" signal. Fixed other
330 2007-04-03 Ben Pfaff <blp@gnu.org>
331 John McCabe-Dansted <gmatht@gmail.com>
333 * psppire-selector.c (psppire_selector_set_subjects): Add an
334 assert that may or may not trap some Windows-related bugs.
336 2007-04-03 John Darrington <john@darrington.wattle.id.au>
338 * data-editor.c data-editor.glade helper.h syntax-editor.c
339 syntax-editor.h : Implemented the File->Recently_Used_ menus.
342 2007-03-31 John Darrington <john@darrington.wattle.id.au>
344 * data-editor.c data-editor.glade data-editor.h dialog-common.c
345 psppire-buttonbox.c psppire-dialog.c psppire-dialog.h
346 psppire-selector.c psppire-selector.h psppire.c psppire.glade
347 sort-cases-dialog.c sort-cases-dialog.h split-file-dialog.c
348 transpose-dialog.c weight-cases-dialog.c : Fixed the Refresh
349 button on all the dialogs.
351 2007-03-31 John Darrington <john@darrington.wattle.id.au>
353 * data-editor.c: Added hooks for the split-file-dialog
355 * psppire.glade: Added the split file dialog box.
357 * split-file-dialog.c split-file-dialog.h: New files.
359 * dialog-common.c dialog-common.h: New files containing functions
360 which seem to be used a lot in dialog box implementations.
362 * psppire-keypad.c psppire-keypad.h: New files. Implements keypad
365 * psppire-selector.c: Made the orientation of the arrow a property
366 of the widget, so that it can be selected from glade.
368 2007-03-18 Ben Pfaff <blp@gnu.org>
370 * syntax-editor-source.c (close): Rename do_close to avoid naming
371 conflict with POSIX function of same name.
373 Tue Mar 13 17:20:05 CET 2007 John Darrington <john@darrington.wattle.id.au>
374 * psppire.c: Changed gtk_init to gtk_parse_args, followed by a delayed call to gdk_init, so that psppire --version will succeed, even if it
375 cannot connect to a display .
377 Wed Mar 7 19:05:12 CET 2007 John Darrington <john@darrington.wattle.id.au>
379 * var-sheet.c: Replaced call to nl_langinfo with locale_charset
382 Thu Feb 22 12:27:41 CET 2007 John Darrington <john@darrington.wattle.id.au>
384 * data-editor.c : called new gen_quoted_string function to properly
385 quote filenames in generated syntax.
387 * window-manager.c : Converted name from filename encoding to UTF8
388 before displaying in title bar.
390 Tue Jan 30 20:13:46 WST 2007 John Darrington <john@darrington.wattle.id.au>
392 * psppire-dict.c: Call all the callbacks when a new dictionary becomes current.
394 * data-editor.c: Clear existing file name on FILE NEW.
396 Sat Jan 27 09:48:21 WST 2007 John Darrington <john@darrington.wattle.id.au>
398 * var-type-dialog.c: Fixed bugs closing window, apparent when compiled
401 Fri Jan 26 15:51:34 WST 2007 John Darrington <john@darrington.wattle.id.au>
403 * psppire-var-select.c psppire-var-select.h : Deleted.
405 * psppire-selector.c psppire-selector.h : New files.
407 * transpose-dialog.c transpose-dialog.h : New files.
409 * psppire-dict.c psppire-dict.h : Added missing GtkTreeModel
412 * weight-cases-dialog.c weight-cases-dialog.h : Re-implemented,
413 using new PsppireSelector widget.
415 * dict-display.c dict-display.h : New files.
417 * psppire-object.c psppire-object.h : Deleted. Seemed like a good idea at the time.
419 Tue Jan 23 21:10:01 WST 2007 John Darrington <john@darrington.wattle.id.au>
421 * helper.c helper.h: New function execute_syntax.
423 * syntax-editor.c syntax-editor.glade: Disabled data open/save menu
426 * data-editor.c data-editor.glade data-editor.h: Enabled data
427 open/save/save_as menu-items.
429 * window-manager.h window-manager.c (default_window_name) : New
432 Sat Jan 13 07:47:26 WST 2007 John Darrington <john@darrington.wattle.id.au>
434 * psppire-case-file.c psppire-data-store.c psppire-dialog.c
435 psppire-dict.c psppire-var-select.c : Replaced identifier 'signal'
436 with 'signals' to avoid conflict with sysv based systems which use
437 this identifer for something else.
438 Thanks to Daniel E WILLIAMS for reporting this problem.
440 Wed Jan 10 07:20:39 WST 2007 John Darrington <john@darrington.wattle.id.au>
442 * psppire-case-file.c : Make sure there is always a valid flexifile
444 * psppire-data-store.c : assertions.
446 * psppire.c: Ignore replace source callbacks if the new source is
447 not of storiage_source_class
449 * syntax-editor.c: Close/Abort source after parsing is complete.
451 Sun Jan 7 08:38:29 WST 2007 John Darrington <john@darrington.wattle.id.au>
453 * psppire-dict.c: Add FILTER_CHANGED and SPLIT_CHANGED signals
454 corresponding to the callbacks in src/data/dictionary.c
456 * data-editor.c : Connect functions to the FILTER_CHANGED and
457 SPLIT_CHANGED signals to update the status bar accordingly.
459 Mon Jan 1 10:37:07 WST 2007 John Darrington <john@darrington.wattle.id.au>
461 * psppire-case-file.c psppire-case-file.h: Changed the backend
462 semantics. An object is now created without any backend. A new function ( psppire_case_file_replace_flexifile ) sets the backend to use.
464 * psppire-data-store.c : Updated callers accordingly.
466 * psppire-dict.c psppire-dict.h : New function
467 (psppire_dict_replace_dictionary) .
469 * psppire.c : Updated to use new dataset replace_{source, dictionary}
472 * syntax-editor.c : parses in state CMD_STATE_DATA unless there are
473 no variables in the dictionary.
475 Mon Dec 25 12:38:24 WST 2006 John Darrington <john@darrington.wattle.id.au>
477 * data-editor.c data-editor.glade: Enabled deleting of variables from
480 Mon Dec 25 11:28:29 WST 2006 John Darrington <john@darrington.wattle.id.au>
482 * psppire-dict.c psppire-dict.h: Removed explicit signal emit calls.
483 These are not required, now that src/data/dictionary.c has callbacks
485 Mon Dec 25 08:49:57 WST 2006 John Darrington <john@darrington.wattle.id.au>
487 * var-sheet.c val-labs-dialog.c val-labs-dialog.h: Fixed bug in value
490 Sun Dec 17 08:26:10 WST 2006 John Darrington <john@darrington.wattle.id.au>
492 * syntax-editor-source.c syntax-editor-source.h syntax-editor.h:
495 * message-dialog.c : Now reports the filename and line number in
498 * psppire.c psppire.glade syntax-editor.c: Added the ability to run
499 syntax from the syntax editor.
502 Sat Dec 16 14:13:07 2006 Ben Pfaff <blp@gnu.org>
504 * psppire-data-store.c (geometry_get_justification): Don't assume
505 that ALIGN_* and GTK_JUSTIFY_* values coincide.
507 Sat Dec 16 14:10:43 2006 Ben Pfaff <blp@gnu.org>
509 * psppire-var-store.c (text_for_column): Adjust to account for new
510 values of the MEASURE_* enums.
512 * var-sheet.c (change_measure): Ditto.
514 Sat Dec 16 12:24:35 WST 2006 John Darrington <john@darrington.wattle.id.au>
516 * psppire-variable.c psppire-variable.h: Deleted.
518 * psppire-dict.c psppire-dict.h: Removed the caching of the variable
519 data, which is now unecessary because src/data/vardict.h maintains
520 an association between variables and their dictionary.
522 * data-sheet.c menu-actions.c missing-val-dialog.c
523 missing-val-dialog.h psppire-data-store.c
524 psppire-var-store.c psppire-var-store.h
525 sort-cases-dialog.c val-labs-dialog.c val-labs-dialog.h
526 var-sheet.c var-type-dialog.c var-type-dialog.h: Dealt with the
527 consequences of deleting psppire-variable.[ch].
530 Sat Dec 9 20:03:04 2006 Ben Pfaff <blp@gnu.org>
532 * var-type-dialog.c (var_type_dialog_create): Use
533 fmt_dollar_template from data/format.c.
534 (dollar_format_template) Removed.
536 Sat Dec 9 07:19:53 WST 2006 John Darrington <john@darrington.wattle.id.au>
538 * syntax-editor.c : New file.
540 Tue Oct 31 19:25:31 2006 Ben Pfaff <blp@gnu.org>
542 * var-type-dialog.c: Add missing "#include <config.h>".
546 Mon Jul 17 18:21:29 WST 2006 John Darrington <john@darrington.wattle.id.au>
548 * automake.mk menu-actions.c psppire-case-file.c psppire-case-file.h
549 psppire-data-store.c psppire-dict.c psppire-dict.h psppire-variable.c
550 psppire.c psppire.glade: Adjusted code to use the new flexifile object.
552 Sat Jul 15 11:27:15 WST 2006 John Darrington <john@darrington.wattle.id.au>
554 * psppire.c psppire.glade automake.mk icons/* : Added toolbar icons where
555 there's no suitable gtk stock icon.
557 Tue Jul 4 09:08:38 WST 2006 John Darrington <john@darrington.wattle.id.au>
559 * psppire.c: Fixed --help and --version options.
561 Sat Jun 24 16:56:22 WST 2006 John Darrington <john@darrington.wattle.id.au>
563 * menu-actions.c: Added goto case and sort cases dialogs.
565 * psppire-case-file.c psppire-case-file.h: Added sort function.
567 * psppire-data-store.c psppire-variable.c psppire-variable.h:
568 Renamed psppire_variable_get_index to psppire_variable_get_fv and
569 dealt with the consequences. Added a psppire_variable_get_index
570 function which actually does what the name suggests.
572 * psppire-dict.c psppire-dict.h: Implemented GtkTreeModel interface,
573 which allows a dictionary to be displayed in a GtkTreeView.
575 * psppire.glade: Added dialog boxes for Goto Case and Sort Case.
577 * sort-cases-dialog.c sort-cases-dialog.h (new files).
579 Mon Jun 19 18:10:53 WST 2006 John Darrington <john@darrington.wattle.id.au>
581 * psppire-case-file.c psppire-case-file.h (new files)
583 * automake.mk data-sheet.c data-sheet.h menu-actions.c
584 psppire-data-store.c psppire-data-store.h psppire-dict.c
585 psppire-dict.h psppire-var-store.c psppire.c
587 Replaced psppire-case-array.c with psppire-case-file.c, so as to
588 allow an arbitrary number of cases to be represented.
590 Sun Jun 4 15:50:28 WST 2006 John Darrington <john@darrington.wattle.id.au>
592 * psppire-var-store.c, psppire.c, var-sheet.c : Unlimited the number of
593 variables that can be displayed. Minor i18n issues.
595 Tue May 30 19:53:35 WST 2006 John Darrington <john@darrington.wattle.id.au>
597 * menu-actions.c menu-actions.h psppire.c: Fixed up load/new
598 interactions with startup.
600 * psppire-data-store.c: Fixed bad i18n call.
602 * pspppire-var-store.c, psppire-var-store.h: constness.
604 * helper.c: Implemented proper way to convert from PSPP to UTF8 encoding.
607 Sat May 27 16:25:38 WST 2006 John Darrington <john@darrington.wattle.id.au>
609 * customentry.c data-sheet.c menu-actions.c message-dialog.c
610 missing-val-dialog.c psppire-data-store.c psppire-var-store.c
611 psppire.c psppire.glade var-sheet.c: Fixed internationalisation.
613 Thu May 25 18:01:17 WST 2006 John Darrington <john@darrington.wattle.id.au>
615 * psppire-var-store.c: Converted strings to utf8 and returned them on the
618 Sat May 20 21:08:18 WST 2006 John Darrington <john@darrington.wattle.id.au>
620 * data-sheet.c, menu-actions.c menu-actions: Fixed data sheet so that
621 active cell is never on a deleted variable.
623 * psppire-data-store.c psppire-data-store.h: Added get_var_count and
624 get_case_count functions.
626 * psppire-dict.c: removed VARIABLE_DELETED (singular) signal.
628 * psppire.c: Allowed user to specify *.sav file on command line.
630 Mon May 15 20:01:25 WST 2006 John Darrington <john@darrington.wattle.id.au>
632 * menu-actions.c psppire-case-array.c psppire-case-array.h
633 psppire-data-store.c psppire-dict.c psppire-dict.h
636 Initialised new cases to SYSMIS/blank when inserting in data sheet.
638 Sat May 13 08:00:50 WST 2006 John Darrington <john@darrington.wattle.id.au>
640 * data-sheet.c, helper.c, helper.h, psppire-data-store.c,
643 Set free_strings flag so that the gtksheet frees the string data
644 when it's done with them.
646 Thu May 11 22:25:49 WST 2006 John Darrington <john@darrington.wattle.id.au>
648 * data-sheet.c helper.c helper.h psppire-data-store.c psppire-var-store.c
649 psppire.c: Converted strings to utf8 before passing to gtksheet.
651 * psppire-dict.c: Changed buffer to more reasonable length
653 * var-sheet.c: Changed maximum string length to use macro from
657 Sun May 7 10:07:28 WST 2006 John Darrington <john@darrington.wattle.id.au>
659 * psppire-data-store.c: Fixed buglet initialising string members.
661 Thu May 4 18:04:04 WST 2006 John Darrington <john@darrington.wattle.id.au>
663 * message-dialog.c message-dialog.h: Added simple queuing to messages
664 reported, and ensure that dialog boxes dont appear when pointer grab
667 * psppire-data-store.c: Fix overflow on very long string variables.
669 * automake.mk: Fix broken dependency.
672 Tue Apr 25 11:08:04 2006 Ben Pfaff <blp@gnu.org>
674 Finish reforming error message support. In this phase, move
675 message.c into libpspp.
677 * automake.mk: (src_ui_gui_psppire_SOURCES) Remove src/message.c.
679 Tue Apr 25 10:56:53 2006 Ben Pfaff <blp@gnu.org>
681 Continue reforming error message support. In this phase, drop
682 actual message printing from core code, substituting a callback,
683 and add the callback to each UI. Also, move verbose_msg() into
686 * automake.mk: (src_ui_gui_psppire_SOURCES) Add src/message.c.
688 * message-dialog.c: (message_dialog_init) New function.
689 (vmsg) Rename handle_msg(), rewrite as callback function.
692 (msg_assert_fail) Removed.
693 (verbose_msg) Removed.
695 * psppire.c: (main) Call message_dialog_init().
697 Sun Apr 23 22:07:49 2006 Ben Pfaff <blp@gnu.org>
699 Continue reforming error message support. In this phase, get rid
700 of message "titles" and put the message text in `struct error'.
701 Now `struct error' encapsulates a message more properly.
703 * message-dialog.c: (err_vmsg) Rename err_msg(). Updated
706 Sun Apr 16 20:45:35 2006 Ben Pfaff <blp@gnu.org>
708 Continue reforming error message support. In this phase, we
709 divide the classification of messages along "category" and
712 * message-dialog.c: (vmsg) Use severity and category in
713 straightforward fashion instead of the less obvious "class".
714 (err_vmsg) Construct class before passing along to vmsg().
716 Sun Apr 16 16:06:54 2006 Ben Pfaff <blp@gnu.org>
718 Continue reforming error message support. In this phase, we get
719 rid of VM() and the other msg() support for "verbosity", replacing
720 it by a new function verbose_msg().
722 * message-dialog.c: (verbose_msg) New function.
723 (err_cond_fail) Removed (dead code).
724 (err_failure) Removed (dead code).
726 Sun Apr 16 11:53:25 2006 Ben Pfaff <blp@gnu.org>
728 Start reforming error message support. In this phase, we get rid
729 of "installation errors" and change all uses of msg() in the
730 output drivers to uses of error() or error_at_line().
732 * message-dialog.c: (vmsg) Removed IE, IS support.
734 Mon Mar 13 16:42:44 WST 2006 John Darrington <john@darrington.wattle.id.au>
736 * psppire.c: Supported (sort of) the --help and --version options.
738 * Rename error-dialog.[ch] -> message-dialog.[ch]
740 * Moved code from the psppire module.
742 Sat Jan 28 16:22:23 WST 2006 John Darrington <john@darrington.wattle.id.au>
744 * Separated the data out of the GtkSheet.
746 Tue Nov 2 19:00:28 WST 2004 John Darrington <john@darrington.wattle.id.au>
748 * Very first incarnation.