Unlimited the number of variables that the GUI can cope with.
[pspp-builds.git] / src / ui / gui / ChangeLog
1 Sun Jun  4 15:50:28 WST 2006 John Darrington <john@darrington.wattle.id.au>
2
3    * psppire-var-store.c, psppire.c, var-sheet.c :  Unlimited the number of 
4    variables that can be displayed. Minor i18n issues.
5
6 Tue May 30 19:53:35 WST 2006 John Darrington <john@darrington.wattle.id.au>
7
8    * menu-actions.c menu-actions.h psppire.c: Fixed up load/new 
9    interactions with startup.
10
11    * psppire-data-store.c: Fixed bad i18n call.
12
13    * pspppire-var-store.c, psppire-var-store.h: constness.
14
15    * helper.c: Implemented proper way to convert from PSPP to UTF8 encoding.
16
17
18 Sat May 27 16:25:38 WST 2006 John Darrington <john@darrington.wattle.id.au>
19
20    * customentry.c data-sheet.c menu-actions.c message-dialog.c 
21      missing-val-dialog.c psppire-data-store.c psppire-var-store.c 
22      psppire.c psppire.glade var-sheet.c: Fixed internationalisation.
23
24 Thu May 25 18:01:17 WST 2006 John Darrington <john@darrington.wattle.id.au>
25
26    * psppire-var-store.c: Converted strings to utf8 and returned them on the
27    heap.
28
29 Sat May 20 21:08:18 WST 2006 John Darrington <john@darrington.wattle.id.au>
30
31    * data-sheet.c, menu-actions.c menu-actions: Fixed data sheet so that
32    active cell is never on a deleted variable.
33
34    * psppire-data-store.c psppire-data-store.h:  Added get_var_count and
35    get_case_count functions.
36
37    * psppire-dict.c: removed VARIABLE_DELETED (singular) signal.
38
39    * psppire.c: Allowed user to specify *.sav file on command line.
40
41 Mon May 15 20:01:25 WST 2006 John Darrington <john@darrington.wattle.id.au>
42         
43         * menu-actions.c psppire-case-array.c psppire-case-array.h
44           psppire-data-store.c  psppire-dict.c psppire-dict.h 
45           psppire-variable.c:
46
47           Initialised new cases to SYSMIS/blank when inserting in data sheet.
48
49 Sat May 13 08:00:50 WST 2006 John Darrington <john@darrington.wattle.id.au>
50
51         * data-sheet.c, helper.c, helper.h, psppire-data-store.c, 
52           psppire-var-store.c:
53           
54           Set free_strings flag so that the gtksheet frees the string data 
55           when it's done with them.
56
57 Thu May 11 22:25:49 WST 2006 John Darrington <john@darrington.wattle.id.au>
58
59         * data-sheet.c helper.c helper.h psppire-data-store.c psppire-var-store.c 
60         psppire.c: Converted strings to utf8 before passing to gtksheet.
61
62         * psppire-dict.c: Changed buffer to more reasonable length
63
64         * var-sheet.c: Changed maximum string length to use macro from
65         data/values.h
66
67         
68 Sun May  7 10:07:28 WST 2006 John Darrington <john@darrington.wattle.id.au>
69
70         * psppire-data-store.c: Fixed buglet initialising string members.
71
72 Thu May  4 18:04:04 WST 2006 John Darrington <john@darrington.wattle.id.au>
73
74         * message-dialog.c message-dialog.h: Added simple queuing to messages
75         reported, and ensure that dialog boxes dont appear when pointer grab
76         is active.
77
78         * psppire-data-store.c: Fix overflow on very long string variables.
79
80         * automake.mk: Fix broken dependency.
81
82
83 Tue Apr 25 11:08:04 2006  Ben Pfaff  <blp@gnu.org>
84
85         Finish reforming error message support.  In this phase, move
86         message.c into libpspp.
87         
88         * automake.mk: (src_ui_gui_psppire_SOURCES) Remove src/message.c.
89
90 Tue Apr 25 10:56:53 2006  Ben Pfaff  <blp@gnu.org>
91
92         Continue reforming error message support.  In this phase, drop
93         actual message printing from core code, substituting a callback,
94         and add the callback to each UI.  Also, move verbose_msg() into
95         its own module.
96
97         * automake.mk: (src_ui_gui_psppire_SOURCES) Add src/message.c.
98
99         * message-dialog.c: (message_dialog_init) New function.
100         (vmsg) Rename handle_msg(), rewrite as callback function.
101         (msg) Removed.
102         (msg_emit) Removed.
103         (msg_assert_fail) Removed.
104         (verbose_msg) Removed.
105
106         * psppire.c: (main) Call message_dialog_init().
107
108 Sun Apr 23 22:07:49 2006  Ben Pfaff  <blp@gnu.org>
109
110         Continue reforming error message support.  In this phase, get rid
111         of message "titles" and put the message text in `struct error'.
112         Now `struct error' encapsulates a message more properly.
113         
114         * message-dialog.c: (err_vmsg) Rename err_msg().  Updated
115         interface.
116
117 Sun Apr 16 20:45:35 2006  Ben Pfaff  <blp@gnu.org>
118
119         Continue reforming error message support.  In this phase, we
120         divide the classification of messages along "category" and
121         "severity" axes.
122
123         * message-dialog.c: (vmsg) Use severity and category in
124         straightforward fashion instead of the less obvious "class".
125         (err_vmsg) Construct class before passing along to vmsg().
126
127 Sun Apr 16 16:06:54 2006  Ben Pfaff  <blp@gnu.org>
128
129         Continue reforming error message support.  In this phase, we get
130         rid of VM() and the other msg() support for "verbosity", replacing
131         it by a new function verbose_msg().
132
133         * message-dialog.c: (verbose_msg) New function.  
134         (err_cond_fail) Removed (dead code).
135         (err_failure) Removed (dead code).
136
137 Sun Apr 16 11:53:25 2006  Ben Pfaff  <blp@gnu.org>
138
139         Start reforming error message support.  In this phase, we get rid
140         of "installation errors" and change all uses of msg() in the
141         output drivers to uses of error() or error_at_line().
142
143         * message-dialog.c: (vmsg) Removed IE, IS support.
144
145 Mon Mar 13 16:42:44 WST 2006 John Darrington <john@darrington.wattle.id.au>
146
147     * psppire.c: Supported (sort of) the --help and --version options.
148
149     * Rename error-dialog.[ch] -> message-dialog.[ch]
150
151     * Moved code from the psppire module.
152         
153 Sat Jan 28 16:22:23 WST 2006 John Darrington <john@darrington.wattle.id.au>
154
155     * Separated the data out of the GtkSheet.
156
157 Tue Nov  2 19:00:28 WST 2004 John Darrington <john@darrington.wattle.id.au>
158
159     * Very first incarnation.