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