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