1 $Id: ChangeLog,v 1.112 2009/05/15 15:51:20 paul Exp $
2
3 Project : tina-tools
4 Description : tinatool application code
5 ---------------------------------------
6 ChangeLog
7 ---------
8
9 This is the changelog file for the tinatools application (tina-tools). Make an entry
10 in this file for each commit, copy the format of previous entries.
11 Entries should be made and combined with the following activities;
12
13 - Be made in reverse chronological order i.e. most recent at the top.
14
15 - Include details of files modified and added, details of the nature and purpose of
16 the change, the platform on which you are working, and any other details which
17 other developers should be aware of.
18
19 - Tag each entry with an ID (incremented for the last). This ID is all that is
20 needed in the cvs log (in the cvs log window or the -m option of the commit command).
21
22 - Copy the whole of the entry into an email with the subject "tina-tools commit id:xxx"
23 (where xxx is the build number) and post it to developer-list@tina-vision.net
24
25 - Update the build/version variable at the top of the configure.ac file with the new
26 ID number
27
28 ----------------------------------------------------------------------------------------
29 ID:108 pab 15/05/2009 (linux 2.6.22)
30
31 . Added a newline to the end of the "Info" button output, so that the next
32 message printed to the text subwindow of the top-level tinaTool starts on
33 a new line.
34
35 M tina-tools/tinatool/tlbase/tlbaseImc_tool.c
36
37 . Fixed the name of the help file called by the sequence tool help button.
38
39 M tina-tools/tinatool/tlbase/tlbaseSeq_tool.c
40
41 . Changed the style of the choice lists: they now have a label in their frame,
42 rather than on the top of their frame, and are thus distinct from check lists
43 (which have the label on the frame).
44
45 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_choice.c
46
47 . Fixed the help buttons in GTK2, so that the help window is cleared before the
48 next help file is displayed, and the window does not scroll to the bottom of
49 the text.
50
51 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_hlp_btn.c
52 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_textsw.c
53
54 ----------------------------------------------------------------------------------------
55 ID:107 pab 13/05/2009 (linux 2.6.22)
56
57 . Removed an empty text label from the mono tool (originally intended to fix the
58 spanning problem (see next edit) after the Tv list).
59
60 M tina-tools/tinatool/tlbase/tlbaseMono_tool.c
61
62 . Check/choice lists now only span the interface if they contain more than 2
63 items: otherwise, they are packed into the left-hand side (prevents lists of
64 one or two items having very wide buttons).
65
66 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_check.c
67 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_choice.c
68
69 . Help buttons are now packed into the menubox, rather than the current hbox,
70 so that they always appear at the top of the tool on the right-hand side and
71 are clearly visible.
72
73 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_hlp_btn.c
74
75 . Text labels at the start of menus are now in italics, so that they can be
76 distinguished from the actual menu items (especially if there are more than
77 one menu in the tool).
78
79 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_menubar.c
80
81 . Fixed printing function textsw_print_sw to actually print to a specified
82 text subwindow, rather than the top-level tinaTool, and fixed errors with
83 marks not being defined.
84
85 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_textsw.c
86
87 . Replaced gtk_window_set_policy (deprecated function in GTK2) with
88 gtk_window_set_resizable in tw_tool_remote.
89
90 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_tool.c
91
92 ----------------------------------------------------------------------------------------
93 ID:106 nat 19/04/2009 (linux)
94
95 . Some minor problems with choice lists fixed, wrong initialisation and
96 buttons `clicked' not `toggled'.
97 . Raw input tool modified to fix use of signed data.
98 . Imcalc casting process now casts int to float rather than short for safety.
99
100 M tinatool/tlbase/tlbaseImc_tool.c
101 M tinatool/tlbase/tlbaseMono_raw_input.c
102 M tinatool/wdgts/gtk2/wdgtsGtk_tw_choice.c
103
104
105 ----------------------------------------------------------------------------------------
106 ID:105 pab 27/03/2009 (linux 2.6.22)
107
108 . Modified the check and choice lists in the Gtk 2 widgets so that they are
109 placed inside a frame, and the list label is printed on the top of the frame.
110 This makes the grouping clearer, particularly when the list items are
111 displayed as buttons (see ID:104), and makes the interface look nicer.
112
113 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_check.c
114 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_choice.c
115
116 . Modified the parameters of the first hbox in the tool so that it is
117 consistent with subsequent hboxes created by calls to tw_newrow().
118 Without this, buttons on the first row of any tool touch each other,
119 whilst those in subsequent rows are separated by a small space.
120
121 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_tool.c
122
123 . Modified all TINA buttons in Gtk 2 so that they are packed into individual
124 vboxes in the current hbox (row). This ensures that they are consistently
125 sized, even if there is a choice list or check list in the current row (which
126 has a frame and so is larger vertically than a button.
127
128 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_button.c
129 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_hlp_btn.c
130
131 . Changed the menu calls in Gtk 2 from menus with labels to menus with
132 mnemonics. The mnemonic is always the first letter of the menu label.
133 This makes it clear that the menu labels are menus and not just text
134 labels on the interface, and also allows you to press ALT-"first letter
135 in the menu label" in order to open the drop-down menu. For this to
136 work properly, no two menus in the same tool can ever have names for
137 which the first characters are the same.
138
139 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_menubar.c
140
141 . Updated all tw_menubar calls so that the first character in the name
142 of each menu is capitalised, and the underscores for the mnemonics are
143 easier to see.
144
145 M tina-tools/tinatool/tlbase/tlbaseMono_tool.c
146 M tina-tools/tinatool/tlbase/tlbaseSter_tool.c
147 M tina-tools/tinatool/tlmedical/tlmedAnl_ct_tool.c
148 M tina-tools/tinatool/tlmedical/tlmedAnl_tool.c
149 M tina-tools/tinatool/tlmedical/tlmedSroi_tool.c
150 M tina-tools/tinatool/tlvision/tlvisCnr_tool.c
151 M tina-tools/tinatool/tlvision/tlvisCorr_tool.c
152 M tina-tools/tinatool/tlvision/tlvisEdge_stest_tool.c
153 M tina-tools/tinatool/tlvision/tlvisEdge_tool.c
154 M tina-tools/tinatool/tlvision/tlvisSmm_tool.c
155
156 ----------------------------------------------------------------------------------------
157 ID:104 pab 25/03/2009 (linux 2.6.22)
158
159 . Gtk uses radio buttons (small circles with labels next to them) for choice
160 lists and check buttons (tick-boxes with labels next to them) for check lists.
161 The TINA interface is cramped and so this becomes confusing i.e. it is not
162 clear which label belongs to which button. This update changes the default
163 behaviour for both types, in both Gtk 1.2 and Gtk 2, to display the lists as
164 toggle buttons (i.e. large buttons with text labels on them) i.e. similar to
165 the way it was done in xview. Two new functions, tw_choice_list_style_select
166 and tw_check_list_style_select, allow the behaviour to be changed back to the
167 Gtk defaults. The corresponding functions exist in the other widget sets, but
168 are empty.
169
170 M tina-tools/tinatool/wdgts/wdgtsPro.h
171 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_check.c
172 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_check.h
173 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_choice.c
174 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_choice.h
175 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_check.c
176 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_check.h
177 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_choice.c
178 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_choice.h
179 M tina-tools/tinatool/wdgts/null/wdgtsNull_tw_check.c
180 M tina-tools/tinatool/wdgts/null/wdgtsNull_tw_check.h
181 M tina-tools/tinatool/wdgts/null/wdgtsNull_tw_choice.c
182 M tina-tools/tinatool/wdgts/null/wdgtsNull_tw_choice.h
183 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_check.c
184 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_check.h
185 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_choice.c
186 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_choice.h
187 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_check.c
188 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_check.h
189 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_choice.c
190 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_choice.h
191 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_check.c
192 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_check.h
193 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_choice.c
194 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_choice.h
195
196 . Spelling correction in a comment from ID:103
197
198 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_button.c
199
200 ----------------------------------------------------------------------------------------
201 ID:103 pab 24/03/2009 (linux 2.6.22)
202
203 . Added the double-buffering functions to the threed tv, smm model tv and smm
204 scene tv fulldraw functions; this results in a slight speedup of the drawing
205 and prevents the display from flickering at the end of a mouse drag interation
206 with the tv.
207
208 M tina-tools/tinatool/tlbase/tlbaseSter_thrd.c
209 M tina-tools/tinatool/tlvision/tlvisSmm_view.c
210
211 . In Gtk+ 2 widgets (where we have a file browser widget) any button called
212 "scan" or "Scan" is now a special case, which is not written to any macro
213 file currently being recorded since, typically, you do not want it to start
214 during macro replay. Any file/directory names selected using the file browser
215 will still be recorded and written to the relevant fields in the tool when the
216 macro is replayed.
217
218 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_button.c
219 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_command.c
220
221 . Spelling correction in a comment from ID:102
222
223 M tina-tools/tinatool/gphx/gdk2/gphxGdk_mousestate.c
224
225 ----------------------------------------------------------------------------------------
226 ID:102 pab 23/03/2009 (linux 2.6.22)
227
228 . If gdk double buffering is not used on the threed tv and a large stereo data
229 set is manipulated, the GDK_POINTER_MOTION_HINT_MASK causes buffered mouse
230 motions to be ignored; this sometimes includes the final mouse position. This
231 update adds a check for this situation, getting the current mouse pointer
232 position and implementing it. However, the situation should not occur if
233 double buffering is used.
234
235 M tina-tools/tinatool/gphx/gdk2/gphxGdk_mousestate.c
236
237 ----------------------------------------------------------------------------------------
238 ID:101 pab 23/03/2009 (linux 2.6.22)
239
240 . Added the double-buffering functions to the terrain tv, smm model tv and smm
241 scene tv skeldraw functions.
242
243 M tina-tools/tinatool/tlvision/tlvisSmm_view.c
244 M tina-tools/tinatool/tlvision/tlvisTrn_procs.c
245
246 ----------------------------------------------------------------------------------------
247 ID:100 pab 23/03/2009 (linux 2.6.22)
248
249 . Added functions to allow gdk double-buffering (i.e. buffering all draw events
250 on the client side of X before sending the whole lot to the xserver all at
251 once). This considerably speeds up manipulation of large stereo data sets in
252 the threed tv. The new functions are called tv_screen_double_buffer_start
253 and tv_screen_double_buffer_end, and must be called (in matched pairs) in the
254 skeldraw function for the tv, around the drawing functions: see
255 threed_skeldraw for an example.
256
257 Also added GDK_POINTER_MOTION_HINT_MASK to the list of events in
258 canvas_upgrade (i.e. for all tv's). This prevents large numbers of mouse
259 motion events from building up in the buffer.
260
261 M tina-tools/tinatool/gphx/gdk/gphxGdk_draw.c
262 M tina-tools/tinatool/gphx/gdk/gphxGdk_draw.h
263 M tina-tools/tinatool/gphx/gdk2/gphxGdk_draw.c
264 M tina-tools/tinatool/gphx/gdk2/gphxGdk_draw.h
265 M tina-tools/tinatool/gphx/null/gphxNull_draw.c
266 M tina-tools/tinatool/gphx/null/gphxNull_draw.h
267 M tina-tools/tinatool/gphx/x11/gphxX11_draw.c
268 M tina-tools/tinatool/gphx/x11/gphxX11_draw.h
269 M tina-tools/tinatool/tlbase/tlbaseSter_thrd.c
270 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_screen.c
271
272 ----------------------------------------------------------------------------------------
273 ID:99 pab 13/03/2009 (linux 2.6.22)
274
275 . Fixed a bug in the fvalue print function (used in recording macro files) where
276 the twc->data1 field (which holds the (double) value from the interface) was
277 read as an integer, leading to corrupted macro files.
278
279 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_fvalue.c
280
281 ----------------------------------------------------------------------------------------
282 ID:98 pab 27/02/2009 (linux 2.6.22)
283
284 . Removed tlbaseInfr_cam.o from Makefile.tina (fix from last update).
285
286 M tina-tools/tinatool/tlbase/Makefile.tina
287
288 ----------------------------------------------------------------------------------------
289 ID:97 pab 26/02/2009 (linux 2.6.22)
290
291 . Removed the files tlbaseInfr_cam.c and tlbaseInfr_cam.h, which were duplicates
292 of fileCam_util.c and fileCam_util.h. Added the latter to file_CamPro.h so
293 that it is used instead of the removed functions.
294
295 M tina-tools/tinatool/tlbase/Makefile.am
296 R tina-tools/tinatool/tlbase/tlbaseInfr_cam.c
297 R tina-tools/tinatool/tlbase/tlbaseInfr_cam.h
298 M tina-tools/tinatool/tlbase/tlbase_InfrPro.h
299
300 ----------------------------------------------------------------------------------------
301 ID:96 pab 25/02/2009 (linux 2.6.22)
302
303 . Fixes for a bug where TINA crashes on loading an image into the mono tool if
304 the libraries are compiled without the -O2 flag (otherwise the offending code
305 is optimised out). The functions in tlbaseInfr_cam.c are duplicated in
306 fileCam_util.c and should be removed in a future update.
307
308 M tina-tools/tinatool/tlbase/tlbaseInfr_cam.c
309
310 ----------------------------------------------------------------------------------------
311 ID:95 pab 03/02/2009 (linux 2.6.22)
312
313 . Fixes for compiler errors on Solaris.
314
315 M tina-tools/tinatool/tlvision/tlvisCalib_tool.c
316 M tina-tools/tinatool/tlvision/tlvisSmm_matcher.c
317
318 ----------------------------------------------------------------------------------------
319 ID:94 nat 16/12/2008 (linux)
320
321 . changes consistent with modifications to linker code.. see tina-libs
322
323 M tinatool/draw/drawPaint_imrect.c
324 M tinatool/tlvision/tlvisCalib_tool.c
325 M tinatool/tlvision/tlvisEdge_tool.c
326
327 ----------------------------------------------------------------------------------------
328 ID:93 pab 09/12/2008 (linux 2.6.22)
329
330 . Added include statement for missing header file (filePro.h): fixes three lines
331 of compiler warnings. Warning count for GCC 4.2.1 on 32-bit Suse 10.3 (with
332 only GTK+ 2 widgets) is now 8 lines.
333
334 M tina-tools/tinatool/tlmedical/tlmedAnl_tool.c
335
336 ----------------------------------------------------------------------------------------
337 ID:92 pab 09/12/2008 (linux 2.6.22)
338
339 . Fixes for compiler warnings, mainly "cast to pointer from integer of different
340 size" on 64-bit systems and some "variable used uninitialized". Warning count
341 for GCC 4.2.1 on 64-bit Suse 10.3 (with only GTK+ 2 widgets) is now 40 lines.
342
343 M tina-tools/tinatool/tlmedical/tlmedAnl_tool.c
344
345 ----------------------------------------------------------------------------------------
346 ID:91 pab 02/12/2008 (linux 2.6.22)
347
348 . Fixes for compiler warnings, mainly "cast to pointer from integer of different
349 size" on 64-bit systems and some "variable used uninitialized". Warning count
350 for GCC 4.2.1 on 64-bit Suse 10.3 (with only GTK+ 2 widgets)is now 55 lines.
351
352 M tina-tools/tinatool/draw/drawPaint_reclist.c
353 M tina-tools/tinatool/draw/drawPlot_procs.c
354 M tina-tools/tinatool/draw/drawTv_draw.c
355 M tina-tools/tinatool/draw/drawTv_picture.c
356 M tina-tools/tinatool/draw/drawTv_tv.c
357 M tina-tools/tinatool/gphx/gdk2/gphxGdk_dump.c
358 M tina-tools/tinatool/tlbase/tlbaseDisp_tool.c
359 M tina-tools/tinatool/tlbase/tlbaseInfr_left.c
360 M tina-tools/tinatool/tlbase/tlbaseInfr_mono.c
361 M tina-tools/tinatool/tlbase/tlbaseInfr_right.c
362 M tina-tools/tinatool/tlbase/tlbaseInfr_stack.c
363 M tina-tools/tinatool/tlbase/tlbaseInfr_threed.c
364 M tina-tools/tinatool/tlbase/tlbaseMono_view.c
365 M tina-tools/tinatool/tlbase/tlbaseSeq_tool.c
366 M tina-tools/tinatool/tlbase/tlbaseSter_left.c
367 M tina-tools/tinatool/tlbase/tlbaseSter_right.c
368 M tina-tools/tinatool/tlbase/tlbaseSter_thrd.c
369 M tina-tools/tinatool/tlmedical/tlmedAnl_ct_tool.c
370 M tina-tools/tinatool/tlmedical/tlmedAnl_tool.c
371 M tina-tools/tinatool/tlmedical/tlmedSeg_tool.c
372 M tina-tools/tinatool/tlmedical/tlmedSroi_tool.c
373 M tina-tools/tinatool/tlvision/tlvisCorr_tool.c
374 M tina-tools/tinatool/tlvision/tlvisEdge_geom_pick.c
375 M tina-tools/tinatool/tlvision/tlvisEdge_stest_tool.c
376 M tina-tools/tinatool/tlvision/tlvisEdge_tool.c
377 M tina-tools/tinatool/tlvision/tlvisSmm_pick.c
378 M tina-tools/tinatool/tlvision/tlvisSmm_tool.c
379 M tina-tools/tinatool/tlvision/tlvisSmm_view.c
380 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_svalue.c
381
382 ----------------------------------------------------------------------------------------
383 ID:90 pab 26/11/2008 (linux 2.6.22)
384
385 . Several updates to the text window in the top-level tinatool for gtk+ 2 widget
386 set: horizontal and vertical scrollbars now appear on the window when needed,
387 text is added to the bottom of the window rather than the cursor position, and
388 the view will automatically scroll to the start of the last line of text when
389 new text is added.
390
391 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_textsw.c
392
393 ----------------------------------------------------------------------------------------
394 ID:89 pab 30/10/2008 (linux 2.6.22)
395
396 . Fixed the previous update properly by removing the temporary version of
397 gradient_im from tlvisCalib_model.c so that all calls go to geomImg_Canny.c
398
399 M tina-tools/tinatool/tlvision/tlvisCalib_model.c
400
401 ----------------------------------------------------------------------------------------
402 ID:88 pab 30/10/2008 (linux 2.6.22)
403
404 . Re-fixed small bug (renamed the "basename" variable in tlvisCalib_tool.c) from
405 the previous update.
406 . Changed the name of the gradient_im function in tlvisCalib_model.c to
407 local_gradient_im to prevent conflict with a function of the same name in
408 geomImg_Canny.c.
409
410 M tina-tools/tinatool/tlvision/tlvisCalib_model.c
411 M tina-tools/tinatool/tlvision/tlvisCalib_tool.c
412
413 ---------------------------------------------------------------------------------------
414 ID:87 nat 30/10/2008 (linux)
415
416 . Alternative definitions of edge added in edge params.
417 . Initialisation of rectified stereo images now works on Tv's.
418 . Default parameters for 3D geometry fits adjusted.
419 . Model alignment improved by smoothing likelihood map.
420
421 M tinatool/tlbase/tlbaseSter_left.c
422 M tinatool/tlbase/tlbaseSter_right.c
423 M tinatool/tlvision/tlvisCalib_tool.c
424 M tinatool/tlvision/tlvisCalib_tool.h
425 M tinatool/tlvision/tlvisCorr_tool.c
426 M tinatool/tlvision/tlvisEdge_tool.c
427
428 ----------------------------------------------------------------------------------------
429 ID:86 pab 13/10/2008 (linux 2.6.22)
430
431 . Fixed small bug (renamed the "basename" variable) from the previous update.
432
433 M tina-tools/tinatool/tlvision/tlvisCalib_tool.c
434
435 ---------------------------------------------------------------------------------------
436 ID:85 nat 2/10/08 (solaris)
437
438 . compiler problems associated with header file ordering and minor bug fix
439 in print statements of new code
440
441 M tinatool/tlvision/tlvisCalib_model.c
442 M tinatool/tlvision/tlvisCalib_tool.c
443 M tinatool/tlvision/tlvisTrn_procs.c
444
445 ---------------------------------------------------------------------------------------
446 ID:84 nat 1/10/08 (linux)
447
448 . updated model matcher and calib tools
449 . new histogram viewing tool
450
451 M tinatool/tlbase/Makefile.am
452 A tinatool/tlbase/tlbaseHist_tool.c
453 A tinatool/tlbase/tlbaseHist_tool.h
454 M tinatool/tlvision/Makefile.am
455 A tinatool/tlvision/tlvisCalib_model.c
456 A tinatool/tlvision/tlvisCalib_model.h
457 M tinatool/tlvision/tlvisCalib_tool.c
458 M tinatool/tlvision/tlvisCalib_tool.h
459 M tinatool/tlvision/tlvisSmm_matcher.c
460 M tinatool/tlvision/tlvisSmm_matcher.h
461 M tinatool/tlvision/tlvisSmm_tool.c
462 M tinatool/tlvision/tlvisSmm_tool.h
463
464 ----------------------------------------------------------------------------------------
465 ID:83 pab 16.1.2008 (linux 2.6.13)
466
467 . Fixed choice list function call not being run on use of the choice list from
468 within macros, preventing choices from being set.
469
470 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_choice.c
471 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_choice.c
472
473 ----------------------------------------------------------------------------------------
474 ID:82 pab 7.12.2007 (linux 2.6.13)
475
476 . Added a flag to record when a choice list state is being reset and prevent
477 the button toggling from being written to macros as a actual button press:
478 macros should now work as intended in GTK versions of TINA.
479
480 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_choice.c
481 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_choice.c
482
483 ----------------------------------------------------------------------------------------
484 ID:81 pab 7.12.2007 (linux 2.6.13)
485
486 . Fixed choice list function call not being run on initialisation of choice list,
487 preventing default choices from being set.
488
489 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_choice.c
490 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_choice.c
491
492 ----------------------------------------------------------------------------------------
493 ID:80 pab 7.12.2007 (linux 2.6.13)
494
495 . Added the dump functions for gtk+2, and added warning messages when the
496 empty dump functions for gtk+1.2 are called.
497
498 M tina-tools/tinatool/gphx/gdk/gphxGdk_dump.c
499 M tina-tools/tinatool/gphx/gdk/gphxGdk_epsf_dump.c
500 M tina-tools/tinatool/gphx/gdk/gphxGdk_tiff_dump.c
501 M tina-tools/tinatool/gphx/gdk2/gphxGdk_dump.c
502 M tina-tools/tinatool/gphx/gdk2/gphxGdk_dump.h
503 M tina-tools/tinatool/gphx/gdk2/gphxGdk_epsf_dump.c
504 M tina-tools/tinatool/gphx/gdk2/gphxGdk_epsf_dump.h
505 M tina-tools/tinatool/gphx/gdk2/gphxGdk_tiff_dump.c
506 M tina-tools/tinatool/gphx/gdk2/gphxGdk_tiff_dump.h
507
508 ----------------------------------------------------------------------------------------
509 ID:79 pab 21.3.2007 (linux 2.6.13)
510
511 . Fixed a header file bug: the xview file was including a motif header.
512
513 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_menubar.c
514
515
516 ----------------------------------------------------------------------------------------
517 ID:78 pab 7.3.2007 (linux 2.6.13)
518
519 Added a file browser to the scan_files function for GTK+ <2.4, so now all GTK+ 2
520 scan_files calls use a browser widget.
521
522 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_scan_files.c
523
524 ----------------------------------------------------------------------------------------
525 ID:77 pab 6.3.2007 (linux 2.6.13)
526
527 Inserted a check for the presence of the GTK file chooser widget: GTK+ >2.4 is
528 needed. Older versions of GTK+ 2 revert to the text-based version of the
529 scan_files function.
530
531 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_scan_files.c
532
533 ----------------------------------------------------------------------------------------
534 ID:76 pab 5.3.2007 (linux 2.6.13)
535
536 Fixed tv_init so that the function is not run when no Tv is installed.
537 Fixed the GTK+ 2 file browser to clip the suffix from the filename (this is added
538 by the input functions).
539
540 M tina-tools/tinatool/draw/drawTv_init.c
541 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_scan_files.c
542
543 ----------------------------------------------------------------------------------------
544 ID:75 pab 4.3.2007 (linux 2.6.13)
545
546 . Added a file browser widget to the "scan" button in GTK+ 2. The scan button still
547 works in the same way as before for all other widget sets, but the scan_files
548 function should be called with (char *dir, char *file) for separate directory and
549 file fields (see the Mono tool for a code example) and (char *path, NULL) for
550 a combined pathname field (see the Sequence tool for a code example).
551
552 M tina-tools/tinatool/tlbase/tlbaseSeq_tool.c
553 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_scan_files.c
554 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_scan_files.c
555 M tina-tools/tinatool/wdgts/null/wdgtsNull_tw_scan_files.c
556 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_scan_files.c
557 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_scan_files.c
558 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_scan_files.c
559
560 ----------------------------------------------------------------------------------------
561 ID:74 pab 1.3.2007 (linux 2.6.13)
562
563 . Small header file and build system fixes for previous update.
564
565 M tina-tools/tinatool/wdgts/wdgtsPro.h
566 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_scan_files.c
567 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_scan_files.c
568 M tina-tools/tinatool/wdgts/null/wdgtsNull_tw_scan_files.c
569 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_scan_files.c
570 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_scan_files.c
571 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_scan_files.c
572
573 ----------------------------------------------------------------------------------------
574 ID:73 pab 1.3.2007 (linux 2.6.13)
575
576 . Moved scan_files function into widgets directories, to allow replacement with
577 a proper file browser widget.
578
579 M tina-tools/tinatool/tlbase/tlbaseMono_raw_input.c
580 M tina-tools/tinatool/tlbase/tlbaseMono_tool.c
581 M tina-tools/tinatool/tlbase/tlbaseMono_tool.h
582 M tina-tools/tinatool/tlbase/tlbaseSter_tool.c
583 M tina-tools/tinatool/wdgts/gtk/Makefile.am
584 M tina-tools/tinatool/wdgts/gtk/Makefile.tina
585 A tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_scan_files.c
586 A tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_scan_files.h
587 M tina-tools/tinatool/wdgts/gtk/wdgts_GtkPro.h
588 M tina-tools/tinatool/wdgts/gtk2/Makefile.am
589 M tina-tools/tinatool/wdgts/gtk2/Makefile.tina
590 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_scan_files.c
591 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_scan_files.h
592 M tina-tools/tinatool/wdgts/gtk2/wdgts_GtkPro.h
593 M tina-tools/tinatool/wdgts/null/Makefile.am
594 M tina-tools/tinatool/wdgts/null/Makefile.tina
595 A tina-tools/tinatool/wdgts/null/wdgtsNull_tw_scan_files.c
596 A tina-tools/tinatool/wdgts/null/wdgtsNull_tw_scan_files.h
597 M tina-tools/tinatool/wdgts/null/wdgts_NullPro.h
598 M tina-tools/tinatool/wdgts/tcl/Makefile.am
599 M tina-tools/tinatool/wdgts/tcl/Makefile.tina
600 A tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_scan_files.c
601 A tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_scan_files.h
602 M tina-tools/tinatool/wdgts/tcl/wdgts_TclPro.h
603 M tina-tools/tinatool/wdgts/xm/Makefile.am
604 M tina-tools/tinatool/wdgts/xm/Makefile.tina
605 A tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_scan_files.c
606 A tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_scan_files.h
607 M tina-tools/tinatool/wdgts/xm/wdgts_XmPro.h
608 M tina-tools/tinatool/wdgts/xv/Makefile.am
609 M tina-tools/tinatool/wdgts/xv/Makefile.tina
610 A tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_scan_files.c
611 A tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_scan_files.h
612 M tina-tools/tinatool/wdgts/xv/wdgts_XvPro.h
613
614 ----------------------------------------------------------------------------------------
615 ID:72 pab 1.3.2007 (linux 2.6.13)
616
617 . Fixed choice lists in GTK+ and GTK+ 2, code courtesy of nat.
618
619 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_choice.c
620 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_choice.h
621 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_choice.c
622 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_choice.h
623
624 ----------------------------------------------------------------------------------------
625 ID:71 pab 22.2.2007 (linux 2.6.13)
626
627 . Fixed problems with text window in main tinaTool window under GTK+2.
628
629 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_textsw.c
630
631 ----------------------------------------------------------------------------------------
632 ID:70 pab 21.2.2007 (linux 2.6.13)
633
634 . Partially fixed problems with text window in main tinaTool window under GTK+2,
635 but more work is needed.
636
637 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_textsw.c
638
639 ----------------------------------------------------------------------------------------
640 ID:69 pab 20.2.2007 (linux 2.6.4)
641
642 . Fixed Tv tool resize from menu not working in Gtk+ 2 widgets.
643
644 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_tool.c
645
646 ----------------------------------------------------------------------------------------
647 ID:68 pab 15.2.2007 (linux 2.6.4)
648
649 . Replaced the old contents of bootstrap.sh with autoreconf, to finish the build
650 system update from Dave Love. Also, fixed a small error in configure.ac to
651 prevent attempts to build the GTK+ 2 widgets when the libraries are not present.
652
653 M tina-tools/bootstrap.sh
654 M tina-tools/configure.ac
655
656 ----------------------------------------------------------------------------------------
657 ID:67 pab 15.2.2007 (linux 2.6.13)
658
659 . Various fixes for the build system, courtesy of Dave Love. Both TINA modules
660 should now pass 'make distcheck' on both GNU/Linux and Solaris 10.
661
662 M tina-tools/INSTALL
663 M tina-tools/Makefile.am
664 M tina-tools/README
665 M tina-tools/config.h.in
666 M tina-tools/configure.ac
667 M tina-tools/m4/ac_find_tina.m4
668 M tina-tools/m4/ac_find_xview.m4
669 M tina-tools/m4/gtk-2.0.m4
670 M tina-tools/tinatool/draw/drawPaint_hidden.c
671 M tina-tools/tinatool/draw/drawPaint_imrect.c
672 M tina-tools/tinatool/draw/drawPaint_shade.c
673 M tina-tools/tinatool/draw/drawPaint_spline2.c
674 M tina-tools/tinatool/draw/drawPlot_gnu.c
675 M tina-tools/tinatool/draw/drawPlot_hfit.c
676 M tina-tools/tinatool/draw/drawTv_picture.c
677 M tina-tools/tinatool/draw/drawTv_props.c
678 M tina-tools/tinatool/draw/drawTv_show.c
679 M tina-tools/tinatool/draw/drawTv_zlowl.c
680 M tina-tools/tinatool/draw/drawTv_zoom.c
681 M tina-tools/tinatool/draw/drawTv_zutil.c
682 M tina-tools/tinatool/gphx/gdk2/gphxGdk_activity.c
683 M tina-tools/tinatool/gphx/gdk2/gphxGdk_color.c
684 M tina-tools/tinatool/gphx/gdk2/gphxGdk_fonts.c
685 M tina-tools/tinatool/gphx/gdk2/gphxGdk_mask.c
686 M tina-tools/tinatool/gphx/gdk2/gphxGdk_props.c
687 M tina-tools/tinatool/gphx/x11/gphxX11_dump.c
688 M tina-tools/tinatool/gphx/x11/gphxX11_epsf_dump.c
689 M tina-tools/tinatool/gphx/x11/gphxX11_picture.c
690 M tina-tools/tinatool/gphx/x11/gphxX11_tiff_dump.c
691 M tina-tools/tinatool/gphx/x11/gphxX11_tw_error.c
692 M tina-tools/tinatool/tlbase/tlbaseColour_tool.c
693 M tina-tools/tinatool/tlbase/tlbaseImc_conn_mouse.c
694 M tina-tools/tinatool/tlbase/tlbaseImc_crt_tool.c
695 M tina-tools/tinatool/tlbase/tlbaseImc_imc.c
696 M tina-tools/tinatool/tlbase/tlbaseImc_tool.c
697 M tina-tools/tinatool/tlbase/tlbaseImc_view.c
698 M tina-tools/tinatool/tlbase/tlbaseMcr_funcs.c
699 M tina-tools/tinatool/tlbase/tlbaseMono_file.c
700 M tina-tools/tinatool/tlbase/tlbaseMono_tool.c
701 M tina-tools/tinatool/tlbase/tlbaseSeq_disp.c
702 M tina-tools/tinatool/tlbase/tlbaseSeq_tool.c
703 M tina-tools/tinatool/tlbase/tlbaseSter_thrd.c
704 M tina-tools/tinatool/tlbase/tlbaseSter_tool.c
705 M tina-tools/tinatool/tlbase/tlbaseView_display.c
706 M tina-tools/tinatool/tlbase/tlbaseView_tool.c
707 M tina-tools/tinatool/tlmedical/tlmedAnl_mouse.c
708 M tina-tools/tinatool/tlmedical/tlmedAnl_report.c
709 M tina-tools/tinatool/tlmedical/tlmedAnl_results.c
710 M tina-tools/tinatool/tlmedical/tlmedAnl_tool.c
711 M tina-tools/tinatool/tlmedical/tlmedCort_funcs.c
712 M tina-tools/tinatool/tlmedical/tlmedCort_tool.c
713 M tina-tools/tinatool/tlmedical/tlmedSroi_tool.c
714 M tina-tools/tinatool/tlmedical/tlmedSroi_view.c
715 M tina-tools/tinatool/tlvision/tlvisEdge_geom_pick.c
716 M tina-tools/tinatool/tlvision/tlvisEdge_order_mouse.c
717 M tina-tools/tinatool/tlvision/tlvisTrn_grimson.c
718 M tina-tools/tinatool/tlvision/tlvisTrn_procs.c
719 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_canvas.c
720 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_check.c
721 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_choice.c
722 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_dialog.c
723 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_fglobal.c
724 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_fvalue.c
725 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_hlp_btn.c
726 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_iglobal.c
727 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_ivalue.c
728 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_label.c
729 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_menubar.c
730 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_notebook.c
731 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_sglobal.c
732 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_svalue.c
733 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_textsw.c
734 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_tool.c
735 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_canvas.c
736 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_check.c
737 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_choice.c
738 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_command.c
739 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_dialog.c
740 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_fglobal.c
741 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_fvalue.c
742 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_hlp_btn.c
743 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_iglobal.c
744 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_init.c
745 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_ivalue.c
746 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_label.c
747 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_menubar.c
748 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_notebook.c
749 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_screen.c
750 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_sglobal.c
751 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_svalue.c
752 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_textsw.c
753 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_tool.c
754 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_tool.h
755 M tina-tools/tinatool/wdgts/gtk2/wdgts_GtkDef.h
756 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tcl_util.c
757 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_button.c
758 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_check.c
759 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_choice.c
760 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_command.c
761 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_dialog.c
762 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_fglobal.c
763 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_fvalue.c
764 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_iglobal.c
765 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_ivalue.c
766 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_sglobal.c
767 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_svalue.c
768 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_button.c
769 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_canvas.c
770 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_check.c
771 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_choice.c
772 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_command.c
773 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_dialog.c
774 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_fglobal.c
775 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_fvalue.c
776 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_hlp_btn.c
777 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_iglobal.c
778 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_info.c
779 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_init.c
780 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_init.h
781 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_invoke.c
782 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_ivalue.c
783 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_label.c
784 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_menubar.c
785 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_screen.c
786 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_sglobal.c
787 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_space.c
788 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_sv_btn.c
789 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_svalue.c
790 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_textsw.c
791 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_toggle.c
792 M tina-tools/tinatool/wdgts/xm/wdgtsXm_tw_tool.c
793 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_command.c
794 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_hlp_btn.c
795 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_menubar.c
796 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_screen.c
797 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_svalue.c
798 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_tool.c
799 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_tv.c
800 M tina-tools/toolkits/example/Makefile.am
801 M tina-tools/toolkits/example2/Makefile.am
802 M tina-tools/toolkits/mri_analysis/Makefile.am
803
804 ----------------------------------------------------------------------------------------
805 ID:66 pab 12.2.2007 (linux 2.4.18)
806
807 Small bug fix on one of the include lines.
808
809 M tina-tools/tinatool/tlmedical/tlmedCort_tool.c
810
811 ----------------------------------------------------------------------------------------
812 ID:65 mjs 18.8.2006 (linux 2.6.11)
813
814 Added Cortical Thickness Tool to tlmedical. Also added a function
815 "conn_function_call" to access the conn_roi, conn_add and
816 conn_segment functions, which I changed from being static to
817 globally available (Sorry!).
818
819 M tinatool/tlbase/tlbaseImc_conn_mouse.c
820 M tinatool/tlbase/tlbaseImc_conn_mouse.h
821
822 M tinatool/tlmedical/Makefile.am
823 M tinatool/tlmedical/Makefile.tina
824 A tinatool/tlmedical/tlmedCort_funcs.c
825 A tinatool/tlmedical/tlmedCort_funcs.h
826 A tinatool/tlmedical/tlmedCort_tool.c
827 A tinatool/tlmedical/tlmedCort_tool.h
828 M tinatool/tlmedical/tlmedPro.h
829 A tinatool/tlmedical/tlmed_CortPro.h
830
831 ----------------------------------------------------------------------------------------
832 ID:64 pab 7.6.2006 (linux 2.6.13)
833
834 Fixed configure.ac so that TINA builds with only GTK widgets available, and the
835 examples to use any available widget set.
836
837 M tina-tools/configure.ac
838 M tina-tools/toolkits/example/Makefile.am
839 M tina-tools/toolkits/example2/Makefile.am
840 M tina-tools/toolkits/mri_analysis/Makefile.am
841
842 ----------------------------------------------------------------------------------------
843 ID:63 nat 11/4/06 (unix solaris)
844
845 .added functionality to Imcalc mouse
846 .fixed header file problem in Octants analysis (values.h)
847
848 M tinatool/tlbase/tlbaseImc_view.c
849 M tinatool/tlbase/tlbaseImc_tool.c
850 M tinatool/tlmedical/tlmedOctants_csfcount12.c
851
852 ----------------------------------------------------------------------------------------
853 ID:62 mjs 16.1.2006 (linux 2.6.11)
854
855 . Added missing Makefile.tina
856
857 M tinatool/tlmedical/Makefile.tina
858
859 ----------------------------------------------------------------------------------------
860 ID:61 mjs 1.13.2006 (linux 2.6.11)
861
862 . Added CT perfusion and permeability tool (c.f. tina-libs ID:81)
863
864 M tinatool/tlmedical/Makefile.am
865 A tinatool/tlmedical/tlmedAnl_ct_mouse.c
866 A tinatool/tlmedical/tlmedAnl_ct_mouse.h
867 A tinatool/tlmedical/tlmedAnl_ct_tool.c
868 A tinatool/tlmedical/tlmedAnl_ct_tool.h
869 M tinatool/tlmedical/tlmed_AnlPro.h
870
871 ----------------------------------------------------------------------------------------
872 ID:60 mjs 20.12.2005 (linux 2.6.11)
873
874 . Modifications to enable the permeability code to work properly
875 (c.f. tina-libs ID:80)
876
877 . Modifications to the sequence and mono tools to allow the user
878 to select between rescale and scale factors for DICOM loading, and
879 to allow access to the modified TE and TR variables
880
881 M tina-tools/tinatool/tlbase/tlbaseMono_file.c
882 M tina-tools/tinatool/tlbase/tlbaseMono_tool.c
883 M tina-tools/tinatool/tlbase/tlbaseMono_tool.h
884 M tina-tools/tinatool/tlbase/tlbaseSeq_funcs.c
885 M tina-tools/tinatool/tlbase/tlbaseSeq_io.c
886 M tina-tools/tinatool/tlbase/tlbaseSeq_tool.c
887 M tina-tools/tinatool/tlbase/tlbaseSeq_tool.h
888
889 . Changes to the permeability interface (adding plasma conc
890 estimate button
891 M tina-tools/tinatool/tlmedical/tlmedAnl_mouse.c
892 M tina-tools/tinatool/tlmedical/tlmedAnl_tool.c
893
894
895
896 ----------------------------------------------------------------------------------------
897 ID:59 pab 7.12.2005 (linux 2.4.18)
898
899 . Final updates for latest version of DODECANTS tool.
900
901 M tina-tools/tinatool/tlmedical/tlmedOctants_tool.c
902 A tina-tools/toolkits/example2/oct_test.cls
903 M tina-tools/toolkits/example2/tinaTool.c
904
905 ----------------------------------------------------------------------------------------
906 ID:58 pab 5.12.2005 (linux 2.6.4)
907
908 . Updates for latest version of DODECANTS tool.
909
910 M tina-tools/tinatool/tlbase/tlbaseSeq_io.c
911 M tina-tools/tinatool/tlbase/tlbaseSeq_tool.c
912 M tina-tools/tinatool/tlbase/tlbaseSeq_tool.h
913 M tina-tools/tinatool/tlmedical/tlmedOctants_csfcount12.c
914 M tina-tools/tinatool/tlmedical/tlmedSeg_tool.c
915 M tina-tools/tinatool/tlmedical/tlmedSeg_tool.h
916
917 ----------------------------------------------------------------------------------------
918 ID:57 pab 12.8.2005 (linux 2.6.4)
919
920 . Colour segmentation now displays the colour space, with the knot points used to
921 map it during the segmentation, the connections between them used in the hill-
922 climbing stage, and the peaks found.
923
924 M tina-tools/tinatool/tlbase/tlbaseColour_tool.c
925
926 --------------------------------------------------------------------------------------
927 ID:56 pab 6.8.2005 (linux 2.6.4)
928
929 . Fixes for va_list handling: hopefully this should fix the problems in the
930 wdgtsXXX_tw_submenubar.c files. This fix may not work on systems which have
931 array-style handling of va_list, and lack __va_copy or va_copy (old PowerPC
932 systems?)
933
934 M tina-tools/config.h.in
935 M tina-tools/configure.ac
936 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_menubar.c
937 M tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_menubar.c
938 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_menubar.c
939
940 --------------------------------------------------------------------------------------
941 ID:55 pab 3.8.2005 (linux 2.6.4)
942
943 . Small bug fixes for colour tool, and added colour tool image clear button
944
945 M tina-tools/tinatool/tlbase/tlbaseColour_tool.c
946
947 --------------------------------------------------------------------------------------
948 ID:54 pab 13.7.2005 (linux 2.6.4)
949
950 . Small fix for the backup build system
951
952 A tina-tools/user.make
953
954 . Small fix to the motif section of the example2 Makefile.am
955
956 M tina-tools/toolkits/example2/Makefile.am
957
958 --------------------------------------------------------------------------------------
959 ID:53 pab 4.7.2005 (linux 2.6.4)
960
961 . MinGW and Cygwin compatibility fixes
962
963 M tina-tools/config.h.in
964 M tina-tools/tinatool/draw/drawPlot_gnu.c
965 M tina-tools/tinatool/draw/drawTv_cmap.c
966 M tina-tools/tinatool/draw/drawTv_picture.c
967 M tina-tools/tinatool/draw/draw_TvDef.h
968 M tina-tools/tinatool/gphx/x11/gphxX11_dump.c
969 M tina-tools/tinatool/tlbase/tlbaseView_display.c
970 M tina-tools/tinatool/tlvision/tlvisTrn_triangle.c
971
972 . Simple Makefile example for all widget sets
973
974 A tina-tools/toolkits/example2/Makefile.tina
975
976 --------------------------------------------------------------------------------------
977 ID:52 mjs 30.6.2005 (linux 2.4.18)
978
979 . added flow calculation tool
980
981 M tina-tools/tinatool/tlmedical/Makefile.am
982 M tina-tools/tinatool/tlmedical/Makefile.tina
983 A tina-tools/tinatool/tlmedical/tlmedFlow_tool.c
984 A tina-tools/tinatool/tlmedical/tlmedFlow_tool.h
985 M tina-tools/tinatool/tlmedical/tlmedPro.h
986 A tina-tools/tinatool/tlmedical/tlmed_FlowPro.h
987
988 --------------------------------------------------------------------------------------
989 ID:51 mjs 30.6.2005 (linux 2.4.18)
990
991 . added functionality to check architecture and set the
992 TINA_ARCHITECTURE endianness flag
993
994 M tina-tools/configure.ac
995
996 . added Talairach Tool code
997
998 M tina-tools/tinatool/tlmedical/Makefile.am
999 M tina-tools/tinatool/tlmedical/Makefile.tina
1000 M tina-tools/tinatool/tlmedical/tlmedDef.h
1001 M tina-tools/tinatool/tlmedical/tlmedPro.h
1002 A tina-tools/tinatool/tlmedical/tlmedTal_tool.c
1003 A tina-tools/tinatool/tlmedical/tlmedTal_tool.h
1004 A tina-tools/tinatool/tlmedical/tlmed_TalDef.h
1005 A tina-tools/tinatool/tlmedical/tlmed_TalPro.h
1006
1007 --------------------------------------------------------------------------------------
1008 ID:50 pab 27.6.2005 (linux 2.6.4)
1009
1010 . Added colour input, conversion, segmentation and output tool in tlbase (see example2
1011 toolkit).
1012
1013 M tina-tools/tinatool/tlbase/Makefile.am
1014 M tina-tools/tinatool/tlbase/Makefile.tina
1015 A tina-tools/tinatool/tlbase/tlbaseColour_tool.c
1016 A tina-tools/tinatool/tlbase/tlbaseColour_tool.h
1017 A tina-tools/tinatool/tlbase/tlbaseColour_view.c
1018 A tina-tools/tinatool/tlbase/tlbaseColour_view.h
1019 M tina-tools/tinatool/tlbase/tlbaseDef.h
1020 M tina-tools/tinatool/tlbase/tlbasePro.h
1021 A tina-tools/tinatool/tlbase/tlbase_ColourDef.h
1022 A tina-tools/tinatool/tlbase/tlbase_ColourPro.h
1023 M tina-tools/tinatool/tlmedical/tlmedAnl_report.c
1024 M tina-tools/toolkits/example2/tinaTool.c
1025
1026 --------------------------------------------------------------------------------------
1027 ID:49 pab 20.6.2005 (linux 2.6.4)
1028
1029 . Minor bug fixes for compatibility with gcc v4
1030
1031 M tina-tools/tinatool/draw/drawTv_zoom.c
1032 M tina-tools/tinatool/tlbase/tlbaseSeq_spline.c
1033 M tina-tools/tinatool/tlmedical/tlmedCoreg_mui.c
1034
1035 --------------------------------------------------------------------------------------
1036 ID:48 pab 16.6.2005 (linux 2.4.18)
1037
1038 . Small memory leak fix
1039
1040 M tina-tools/tinatool/tlmedical/tlmedSeg_tool.c
1041
1042 . Small inlined protoype bug fix for gcc 4
1043
1044 M tina-tools/tinatool/tlmedical/tlmedSroi_mouse.c
1045 M tina-tools/tinatool/tlmedical/tlmedSroi_tool.h
1046
1047 --------------------------------------------------------------------------------------
1048 ID:47 pab 13.6.2005 (linux 2.6.4)
1049
1050 . Replaced use of values.h with limits.h for compatibility with Mac OSX
1051 and Solaris.
1052
1053 M tina-tools/tinatool/tlmedical/tlmedOctants_csfcount12.c
1054 M tina-tools/tinatool/tlmedical/tlmedSroi_poly.c
1055 M tina-tools/tinatool/tlmedical/tlmedSroi_tool.c
1056
1057 --------------------------------------------------------------------------------------
1058 ID:46 pab 1.6.2005 (linux 2.6.4)
1059
1060 . Added Tony's GTK2 widgets, plus the corresponding updates to the build system
1061 at the top level. This will search for GTK2 on your system and build the
1062 widgets if it found, but they will not be used for building examples yet:
1063 they are experimental for the time being.
1064
1065 M tina-tools/bootstrap.sh
1066 M tina-tools/config.h.in
1067 M tina-tools/configure.ac
1068 A tina-tools/m4/gtk-2.0.m4
1069 M tina-tools/tinatool/gphx/Makefile.am
1070 M tina-tools/tinatool/gphx/gphxDef.h
1071 M tina-tools/tinatool/gphx/gphxPro.h
1072 A tina-tools/tinatool/gphx/gdk2/Makefile.am
1073 A tina-tools/tinatool/gphx/gdk2/Makefile.tina
1074 A tina-tools/tinatool/gphx/gdk2/gphxGdk_activity.c
1075 A tina-tools/tinatool/gphx/gdk2/gphxGdk_activity.h
1076 A tina-tools/tinatool/gphx/gdk2/gphxGdk_cmap.c
1077 A tina-tools/tinatool/gphx/gdk2/gphxGdk_cmap.h
1078 A tina-tools/tinatool/gphx/gdk2/gphxGdk_color.c
1079 A tina-tools/tinatool/gphx/gdk2/gphxGdk_color.h
1080 A tina-tools/tinatool/gphx/gdk2/gphxGdk_draw.c
1081 A tina-tools/tinatool/gphx/gdk2/gphxGdk_draw.h
1082 A tina-tools/tinatool/gphx/gdk2/gphxGdk_dump.c
1083 A tina-tools/tinatool/gphx/gdk2/gphxGdk_dump.h
1084 A tina-tools/tinatool/gphx/gdk2/gphxGdk_epsf_dump.c
1085 A tina-tools/tinatool/gphx/gdk2/gphxGdk_epsf_dump.h
1086 A tina-tools/tinatool/gphx/gdk2/gphxGdk_fonts.c
1087 A tina-tools/tinatool/gphx/gdk2/gphxGdk_fonts.h
1088 A tina-tools/tinatool/gphx/gdk2/gphxGdk_globals.c
1089 A tina-tools/tinatool/gphx/gdk2/gphxGdk_globals.h
1090 A tina-tools/tinatool/gphx/gdk2/gphxGdk_mask.c
1091 A tina-tools/tinatool/gphx/gdk2/gphxGdk_mask.h
1092 A tina-tools/tinatool/gphx/gdk2/gphxGdk_mousestate.c
1093 A tina-tools/tinatool/gphx/gdk2/gphxGdk_mousestate.h
1094 A tina-tools/tinatool/gphx/gdk2/gphxGdk_picture.c
1095 A tina-tools/tinatool/gphx/gdk2/gphxGdk_picture.h
1096 A tina-tools/tinatool/gphx/gdk2/gphxGdk_props.c
1097 A tina-tools/tinatool/gphx/gdk2/gphxGdk_props.h
1098 A tina-tools/tinatool/gphx/gdk2/gphxGdk_size.c
1099 A tina-tools/tinatool/gphx/gdk2/gphxGdk_size.h
1100 A tina-tools/tinatool/gphx/gdk2/gphxGdk_tiff_dump.c
1101 A tina-tools/tinatool/gphx/gdk2/gphxGdk_tiff_dump.h
1102 A tina-tools/tinatool/gphx/gdk2/gphxGdk_tv_screen.c
1103 A tina-tools/tinatool/gphx/gdk2/gphxGdk_tv_screen.h
1104 A tina-tools/tinatool/gphx/gdk2/gphxGdk_tw_cursor.c
1105 A tina-tools/tinatool/gphx/gdk2/gphxGdk_tw_cursor.h
1106 A tina-tools/tinatool/gphx/gdk2/gphxGdk_tw_error.c
1107 A tina-tools/tinatool/gphx/gdk2/gphxGdk_tw_error.h
1108 A tina-tools/tinatool/gphx/gdk2/gphxGdk_tw_interrupt.c
1109 A tina-tools/tinatool/gphx/gdk2/gphxGdk_tw_interrupt.h
1110 A tina-tools/tinatool/gphx/gdk2/gphx_GdkDef.h
1111 A tina-tools/tinatool/gphx/gdk2/gphx_GdkPro.h
1112 M tina-tools/tinatool/wdgts/Makefile.am
1113 A tina-tools/tinatool/wdgts/gtk2/Makefile.am
1114 A tina-tools/tinatool/wdgts/gtk2/Makefile.tina
1115 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_button.c
1116 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_button.h
1117 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_canvas.c
1118 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_canvas.h
1119 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_check.c
1120 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_check.h
1121 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_choice.c
1122 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_choice.h
1123 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_command.c
1124 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_command.h
1125 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_dchoice.c
1126 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_dchoice.h
1127 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_dialog.c
1128 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_dialog.h
1129 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_fglobal.c
1130 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_fglobal.h
1131 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_fvalue.c
1132 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_fvalue.h
1133 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_hlp_btn.c
1134 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_hlp_btn.h
1135 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_iglobal.c
1136 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_iglobal.h
1137 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_init.c
1138 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_init.h
1139 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_ivalue.c
1140 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_ivalue.h
1141 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_label.c
1142 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_label.h
1143 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_menubar.c
1144 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_menubar.h
1145 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_notebook.c
1146 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_notebook.h
1147 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_screen.c
1148 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_screen.h
1149 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_set_icon.c
1150 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_set_icon.h
1151 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_sglobal.c
1152 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_sglobal.h
1153 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_sv_btn.c
1154 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_sv_btn.h
1155 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_svalue.c
1156 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_svalue.h
1157 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_textsw.c
1158 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_textsw.h
1159 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_toggle.c
1160 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_toggle.h
1161 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_tool.c
1162 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_tool.h
1163 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_tv.c
1164 A tina-tools/tinatool/wdgts/gtk2/wdgtsGtk_tw_tv.h
1165 A tina-tools/tinatool/wdgts/gtk2/wdgts_GtkDef.h
1166 A tina-tools/tinatool/wdgts/gtk2/wdgts_GtkPro.h
1167
1168 --------------------------------------------------------------------------------------
1169 ID:45 pab 31.5.2005 (linux 2.6.4)
1170
1171 . Added example2 toolkit directory, using all available tools.
1172
1173 M tina-tools/README
1174 M tina-tools/configure.ac
1175 M tina-tools/toolkits/Makefile.am
1176 A tina-tools/toolkits/example2/Makefile.am
1177 A tina-tools/toolkits/example2/inctw
1178 A tina-tools/toolkits/example2/tinaTool.c
1179 A tina-tools/toolkits/example2/tina_icon.png
1180
1181 --------------------------------------------------------------------------------------
1182 ID:44 pab 30.5.2005 (linux 2.6.4)
1183
1184 . Final update of documentation
1185
1186 M tina-tools/AUTHORS
1187 M tina-tools/COPYING
1188 M tina-tools/INSTALL
1189 M tina-tools/LICENSE
1190 M tina-tools/NEWS
1191 M tina-tools/README
1192 A tina-tools/docs/documentation.txt
1193 A tina-tools/docs/tinatool-libref/README
1194 A tina-tools/docs/tinatool-pguide/README
1195 A tina-tools/docs/tinatool-uguide/README
1196
1197 --------------------------------------------------------------------------------------
1198 ID:43 pab 30.5.2005 (linux 2.6.4)
1199
1200 . Second pass update of documentation
1201
1202 --------------------------------------------------------------------------------------
1203 ID:42 pab 30.5.2005 (linux 2.6.4)
1204
1205 . First pass update of documentation
1206
1207 --------------------------------------------------------------------------------------
1208 ID:41 pab 10/4/2005 linux 2.6.4
1209
1210 . Fixes for 64 bit linux: all of Tina now compiles under 64 bit, and all widget
1211 sets EXCEPT xview run. Toolkits compiled with xview widgets crash on starting
1212 within the xview code (call to xv_create). This may be a problem with the 64 bit
1213 xview port on my machine (Suse 9.1, xview-3.2p1.4-700): newer versions might fix
1214 this.
1215
1216 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_menubar.c
1217 M tina-tools/tinatool/wdgts/xv/wdgtsXv_tw_menubar.c
1218
1219 --------------------------------------------------------------------------------------
1220 ID:40 pab 31/3/2005 linux 2.6.4
1221
1222 . Added header file structure for vision library.
1223
1224 M tina-tools/tinatool/tlvision/Makefile.am
1225 A tina-tools/tinatool/tlvision/tlvisCorr_tool.h
1226 A tina-tools/tinatool/tlvision/tlvisPro.h
1227 A tina-tools/tinatool/tlvision/tlvis_CalibPro.h
1228 A tina-tools/tinatool/tlvision/tlvis_CnrPro.h
1229 A tina-tools/tinatool/tlvision/tlvis_CorrPro.h
1230 A tina-tools/tinatool/tlvision/tlvis_EdgePro.h
1231 A tina-tools/tinatool/tlvision/tlvis_SmmPro.h
1232 A tina-tools/tinatool/tlvision/tlvis_TrnPro.h
1233
1234 . Added definition from .c file so that headers compile in
1235 toolkits.
1236
1237 M tina-tools/tinatool/tlvision/tlvisTrn_triangle.h
1238
1239 . Fixed header path: all widget sets now compile.
1240
1241 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_tool.c
1242
1243 --------------------------------------------------------------------------------------
1244 ID:39 pab 8/2/2005 linux 2.4.18
1245
1246 . Fixes for compiler warnings: mostly missing header files.
1247
1248 M tina-tools/tinatool/draw/drawPaint_hidden.c
1249 M tina-tools/tinatool/draw/drawPaint_imrect.c
1250 M tina-tools/tinatool/draw/drawPlot_hfit.c
1251 M tina-tools/tinatool/draw/drawPlot_procs.c
1252 M tina-tools/tinatool/draw/drawTv_cmap.cAdded header file structure for vision library.
1253 M tina-tools/tinatool/tlbase/tlbaseDisp_display.c
1254 M tina-tools/tinatool/tlbase/tlbaseDisp_tool.c
1255 M tina-tools/tinatool/tlbase/tlbaseImc_graph.c
1256 M tina-tools/tinatool/tlbase/tlbaseImc_tool.c
1257 M tina-tools/tinatool/tlbase/tlbaseMcr_tool.c
1258 M tina-tools/tinatool/tlbase/tlbaseSeq_io.c
1259 M tina-tools/tinatool/tlbase/tlbaseSeq_roitool.c
1260 M tina-tools/tinatool/tlbase/tlbaseSeq_roitool.h
1261 M tina-tools/tinatool/tlbase/tlbaseSter_file.c
1262 M tina-tools/tinatool/tlbase/tlbaseSter_left.c
1263 M tina-tools/tinatool/tlbase/tlbaseSter_right.c
1264 M tina-tools/tinatool/tlbase/tlbaseSter_roi.c
1265 M tina-tools/tinatool/tlbase/tlbaseView_tool.c
1266 M tina-tools/tinatool/tlbase/tlbase_InfrPro.h
1267 M tina-tools/tinatool/tlmedical/tlmedCoreg_muipab.c
1268 M tina-tools/tinatool/tlmedical/tlmedCoreg_view.c
1269 M tina-tools/tinatool/tlmedical/tlmedOctants_alloc.c
1270 M tina-tools/tinatool/tlmedical/tlmedSeg_hist.c
1271 M tina-tools/tinatool/tlmedical/tlmedSeg_nmrold.c
1272 M tina-tools/tinatool/tlmedical/tlmedSeg_nmrold_backend.c
1273 M tina-tools/tinatool/tlmedical/tlmedSeg_tool.c
1274 M tina-tools/tinatool/tlvision/tlvisCnr_tool.c
1275 M tina-tools/tinatool/tlvision/tlvisTrn_procs.c
1276 M tina-tools/tinatool/tlvision/tlvisTrn_tool.c
1277 M tina-tools/tinatool/wdgts/gtk/wdgtsGtk_tw_command.c
1278 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_button.c
1279 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_svalue.c
1280 M tina-tools/tinatool/wdgts/tcl/wdgtsTcl_tw_tool.c
1281
1282 --------------------------------------------------------------------------------------
1283 ID:38 pab 9/1/2005 linux 2.4.18
1284
1285 . Removed some more inlined prototypes.
1286
1287 M tinatool/wdgts/gtk/wdgtsGtk_tw_init.c
1288 M tinatool/wdgts/xm/wdgtsXm_tw_init.c
1289 M tinatool/wdgts/xv/wdgtsXv_tw_init.c
1290
1291 . Added view tool to example toolkit to prevent missing header error with
1292 gcc-3.4.3: this is a workaround, not a fix. Comment out the view tool in
1293 the main function and then compile to reproduce this error.
1294
1295 M toolkits/example/tinaTool.c
1296
1297 --------------------------------------------------------------------------------------
1298 ID:37 pab 9/1/2005 linux 2.4.18
1299
1300 . Removed inlined prototypes for compatibility with gcc-3.4.3
1301
1302 M tinatool/tlbase/tlbaseImc_view.c
1303 M tinatool/wdgts/tcl/wdgtsTcl_tw_check.c
1304 M tinatool/wdgts/tcl/wdgtsTcl_tw_choice.c
1305 M tinatool/wdgts/xv/wdgtsXv_tw_command.c
1306
1307 --------------------------------------------------------------------------------------
1308 ID:36 pab 30/11/2004 linux 2.4.18
1309
1310 . Fix underquoting of AC_DEFUN in m4 scripts for compatibility with Suse 9.x
1311
1312 M tina-tools/m4/ac_find_motif.m4
1313 M tina-tools/m4/ac_find_tina.m4
1314 M tina-tools/m4/ac_find_xview.m4
1315 M tina-tools/m4/gtk.m4
1316 M tina-tools/m4/tcl.m4
1317
1318 --------------------------------------------------------------------------------------
1319 ID:35 pab 30/11/2004 linux 2.4.18
1320
1321 . Fixed problem where GTK widgets/graphics try to build when the libraries
1322 are not present/don't build when they are.
1323
1324 M tina-tools/configure.ac
1325
1326 . Added a simple build system, like the one for Tina4.
1327
1328 A tina-tools/tinatool/Makefile.tina
1329 A tina-tools/tinatool/draw/Makefile.tina
1330 A tina-tools/tinatool/gphx/Makefile.tina
1331 A tina-tools/tinatool/gphx/gdk/Makefile.tina
1332 A tina-tools/tinatool/gphx/null/Makefile.tina
1333 A tina-tools/tinatool/gphx/x11/Makefile.tina
1334 A tina-tools/tinatool/tlbase/Makefile.tina
1335 A tina-tools/tinatool/tlmedical/Makefile.tina
1336 A tina-tools/tinatool/tlvision/Makefile.tina
1337 A tina-tools/tinatool/wdgts/Makefile.tina
1338 A tina-tools/tinatool/wdgts/gtk/Makefile.tina
1339 A tina-tools/tinatool/wdgts/null/Makefile.tina
1340 A tina-tools/tinatool/wdgts/tcl/Makefile.tina
1341 A tina-tools/tinatool/wdgts/xm/Makefile.tina
1342 A tina-tools/tinatool/wdgts/xv/Makefile.tina
1343
1344 . Small bug fix for Suse 9.0/9.1: an output message split across two lines
1345 was causing a compilation error.
1346
1347 M tina-tools/tinatool/tlbase/tlbaseImc_imc.c
1348
1349 . Remove calls to coreg functions from sequence tool. Sequence tool now
1350 contains a list of pointers to functions that get called whenever a
1351 new sequence is loaded: functions can be added to this list with
1352 calls to seq_init_funcs_add.
1353
1354 M tina-tools/tinatool/tlbase/tlbaseSeq_tool.c
1355 M tina-tools/tinatool/tlbase/tlbaseSeq_tool.h
1356 M tina-tools/tinatool/tlmedical/tlmedCoreg_tool.c
1357
1358 --------------------------------------------------------------------------------------
1359 ID:34 nat 23/11/2004 (unix solaris)
1360
1361 . Modifications to NMR segmentation to include gradient data.
1362
1363 M tinatool/tlmedical/tlmedSeg_hist.c
1364 M tinatool/tlmedical/tlmedSeg_hist.h
1365 M tinatool/tlmedical/tlmedSeg_tool.c
1366 M tinatool/tlmedical/tlmedSeg_tool.h
1367
1368 --------------------------------------------------------------------------------------
1369 ID:33 pab 6/8/2004 linux 2.4.18
1370
1371 Major upgrade to coregistration tool:
1372
1373 . Loading a sequence now initiates coreg tool correctly
1374
1375 M tinatool/tlbase/tlbaseSeq_tool.c
1376 M tinatool/tlbase/tlbaseSeq_tool.h
1377
1378 . Multiple minor accuracy improvements for edge-based coregistration
1379 . Modality switch for edge-based coregistration (e.g. for MRI to CT)
1380 . Choice of angle representation for coregistration
1381 . Mutual information coregistration
1382 . Covariance estimation for mutual information coregistration
1383 . Noise addition functions to support Monte-Carlo experiments
1384 . Coreg tool redesigned
1385
1386 M tinatool/tlmedical/tlmedCoreg_auto.c
1387 M tinatool/tlmedical/tlmedCoreg_auto.h
1388 A tinatool/tlmedical/tlmedCoreg_covar.c
1389 A tinatool/tlmedical/tlmedCoreg_covar.h
1390 A tinatool/tlmedical/tlmedCoreg_mui.c
1391 A tinatool/tlmedical/tlmedCoreg_mui.h
1392 A tinatool/tlmedical/tlmedCoreg_muipab.c
1393 A tinatool/tlmedical/tlmedCoreg_muipab.h
1394 A tinatool/tlmedical/tlmedCoreg_noise.c
1395 A tinatool/tlmedical/tlmedCoreg_noise.h
1396 M tinatool/tlmedical/tlmedCoreg_tool.c
1397 M tinatool/tlmedical/tlmedCoreg_tool.h
1398 M tinatool/tlmedical/tlmedCoreg_view.c
1399 M tinatool/tlmedical/tlmedCoreg_view.h
1400 M tinatool/tlmedical/tlmed_CoregPro.h
1401 M tinatool/tlmedical/Makefile.am
1402
1403 . Added the COPYING file at the top level to stop bootstrap.sh complaining
1404
1405 A COPYING
1406
1407 --------------------------------------------------------------------------------------
1408 ID:32 nat 5/8/2004 unix solaris
1409
1410 gdk gtk now included in the makefile
1411
1412 M tinatool/gphx/Makefile.am
1413 M tinatool/tlvision/tlvisEdge_tool.c
1414 M tinatool/wdgts/Makefile.am
1415
1416 --------------------------------------------------------------------------------------
1417 ID:31 pab 4/8/2004 linux 2.4.18
1418
1419 At some point between 21/4/2004 and 7/6/2004 the server holding the Tina 5 repository
1420 was hacked and the repository lost. It has been reconstituted from a backup containing
1421 all updates to and including ID:30 on 21/4/2004. However, the updates previously known
1422 as ID:31 and ID:32 were lost. This update concatenates both of those updates into one,
1423 using code from my machine. The details are shown below.
1424
1425 . missing header file float.h in files from update ID:31. This defines FLT_MAX.
1426
1427 M tinatool/tlvision/tlvisCorr_tool.c
1428
1429 . restructuring of edge_tool and stereo_test_tool to conform to the
1430 integration of the new correlation stereo tool.
1431 . missing headers added to matcher tool to fix implicit declaration bugs.
1432
1433 M tinatool/tlvision/Makefile.am
1434 M tinatool/tlvision/tlvisCalib_tool.c
1435 A tinatool/tlvision/tlvisCorr_tool.c
1436 M tinatool/tlvision/tlvisEdge_stest_tool.c
1437 M tinatool/tlvision/tlvisEdge_tool.c
1438 M tinatool/tlvision/tlvisSmm_tool.h
1439
1440 --------------------------------------------------------------------------------------
1441 ID:30 pab 21/4/2004 (Linux 2.4.18)
1442
1443 . Fixed two small memory leaks related to Imregions being allocated, fed to
1444 im_alloc (which COPIES the roi, it does not USE it) and then not being freed
1445
1446 M tinatool/tlmedical/tlmedCoreg_view.c
1447 M tinatool/draw/drawPaint_imrect.c
1448
1449 --------------------------------------------------------------------------------------
1450 ID:29 nat 2/4/2004 solaris
1451
1452 . modifications to makefile to remove useless dynamic library build
1453 . compiler error identified in tlvisEdge_stest_tool.c when compiled with
1454 -02 flag function left_edge() does not return pointer as required.
1455 Attempt to fix it currently failed but other modifications kept anyway.
1456
1457 M configure.ac
1458 M tinatool/tlvision/tlvisEdge_stest_tool.c
1459
1460 ----------------------------------------------------------------------------------------
1461 ID:28 NAT 10.3.04 (Solaris)
1462
1463 . bug fixes to permit sychronisation of graphincs during template model markup
1464
1465 M tinatool/tlmedical/tlmedSroi_mouse.c
1466 M tinatool/tlmedical/tlmedSroi_tool.c
1467 M tinatool/tlmedical/tlmedSroi_view.c
1468 M tinatool/tlmedical/tlmedSroi_view.h
1469
1470 ----------------------------------------------------------------------------------------
1471 ID:27 NAT 13.2.04 (Solaris)
1472
1473
1474 . modified for compatabilty with new simplexmin() parameters.
1475 M tinatool/tlmedical/tlmedCoreg_auto.c
1476 M tinatool/tlmedical/tlmedSeg_scale.c
1477
1478 . addition of the smartroi_tool with simplified interface and elimination of some
1479 global variables. supports active shape models and snakes for simple boundary
1480 for extration of polygonal regions of interest. The file formats for pca models have
1481 had to change in order to eliminate static variables, so you will need to re-build
1482 your models from the image sample files.
1483 . I have tested the code by building new models and searching for everything except the
1484 model option.
1485 A tinatool/tlmedical/tlmedSroi_mouse.c
1486 A tinatool/tlmedical/tlmedSroi_mouse.h
1487 A tinatool/tlmedical/tlmedSroi_poly.c
1488 A tinatool/tlmedical/tlmedSroi_poly.h
1489 A tinatool/tlmedical/tlmedSroi_tool.c
1490 A tinatool/tlmedical/tlmedSroi_tool.h
1491 A tinatool/tlmedical/tlmedSroi_view.c
1492 A tinatool/tlmedical/tlmedSroi_view.h
1493
1494 ----------------------------------------------------------------------------------------
1495 ID:26 gab 09.01.04 (Solaris 2.8)
1496
1497 . Found and fixed a bug in tw_choice_reset
1498
1499 M tinatool/wdgts/gtk/wdgtsGtk_tw_choice.c
1500
1501 ----------------------------------------------------------------------------------------
1502 ID:25 gab 09.01.04 (Solaris 2.8)
1503
1504 . Revised the GDK files below, mostly just to add comments
1505 . Fixed the non-functional drawing mask, which no longer prevents plotting
1506 . Added GDK *.h files (omitted in my last commit)
1507
1508 M tinatool/gphx/gphxDef.h
1509 M tinatool/gphx/gphxPro.h
1510 M tinatool/gphx/gdk/gphxGdk_cmap.c
1511 M tinatool/gphx/gdk/gphxGdk_color.c
1512 M tinatool/gphx/gdk/gphxGdk_draw.c
1513 M tinatool/gphx/gdk/gphxGdk_fonts.c
1514 M tinatool/gphx/gdk/gphxGdk_mask.c
1515 M tinatool/gphx/gdk/gphxGdk_picture.c
1516 A tinatool/gphx/gdk/gphx_GdkDef.h
1517 A tinatool/gphx/gdk/gphx_GdkPro.h
1518
1519 ----------------------------------------------------------------------------------------
1520 ID:24 gab 30.12.03 (Solaris 2.8)
1521
1522 . Added all GTK/GDK files
1523 . Does not enforce building of GTK or GDK from global make
1524 - requires user to specifically build in GTK and GDK directories
1525 . Build is not quite complete:
1526 - The drawing mask is not used as it interferes with plotting
1527 - Dump to EPS / TIFF has not yet been implemented
1528 . Testing has shown that:
1529 - All widgets have equivalent functionality to the Xv build
1530 - The macro recorder works, at least for the basic functions
1531 - The graphics and colour mapping works with minor differences to the Xv build
1532 - There is a bug (feature of GTK??) that prevents the user from
1533 selecting a radio/choice button if it is already active
1534 . Further testing is required - please feel free to volunteer to break the
1535 GTK/GDK build and let us know what happens!!
1536
1537 . Also incorporates changes to the TCL string reading function
1538
1539 M tinatool/gphx/gdk/gphxGdk_activity.c
1540 M tinatool/gphx/gdk/gphxGdk_activity.h
1541 M tinatool/gphx/gdk/gphxGdk_cmap.c
1542 M tinatool/gphx/gdk/gphxGdk_cmap.h
1543 M tinatool/gphx/gdk/gphxGdk_color.c
1544 M tinatool/gphx/gdk/gphxGdk_color.h
1545 M tinatool/gphx/gdk/gphxGdk_draw.c
1546 M tinatool/gphx/gdk/gphxGdk_draw.h
1547 M tinatool/gphx/gdk/gphxGdk_dump.c
1548 M tinatool/gphx/gdk/gphxGdk_dump.h
1549 M tinatool/gphx/gdk/gphxGdk_epsf_dump.c
1550 M tinatool/gphx/gdk/gphxGdk_epsf_dump.h
1551 M tinatool/gphx/gdk/gphxGdk_fonts.c
1552 M tinatool/gphx/gdk/gphxGdk_fonts.h
1553 M tinatool/gphx/gdk/gphxGdk_globals.c
1554 M tinatool/gphx/gdk/gphxGdk_globals.h
1555 M tinatool/gphx/gdk/gphxGdk_mask.c
1556 M tinatool/gphx/gdk/gphxGdk_mask.h
1557 M tinatool/gphx/gdk/gphxGdk_mousestate.c
1558 M tinatool/gphx/gdk/gphxGdk_mousestate.h
1559 M tinatool/gphx/gdk/gphxGdk_picture.c
1560 M tinatool/gphx/gdk/gphxGdk_picture.h
1561 M tinatool/gphx/gdk/gphxGdk_props.c
1562 M tinatool/gphx/gdk/gphxGdk_props.h
1563 M tinatool/gphx/gdk/gphxGdk_size.c
1564 M tinatool/gphx/gdk/gphxGdk_size.h
1565 M tinatool/gphx/gdk/gphxGdk_tiff_dump.c
1566 M tinatool/gphx/gdk/gphxGdk_tiff_dump.h
1567 M tinatool/gphx/gdk/gphxGdk_tv_screen.c
1568 M tinatool/gphx/gdk/gphxGdk_tv_screen.h
1569 M tinatool/gphx/gdk/gphxGdk_tw_cursor.c
1570 M tinatool/gphx/gdk/gphxGdk_tw_cursor.h
1571 M tinatool/gphx/gdk/gphxGdk_tw_error.c
1572 M tinatool/gphx/gdk/gphxGdk_tw_error.h
1573 M tinatool/gphx/gdk/gphxGdk_tw_interrupt.c
1574 M tinatool/gphx/gdk/gphxGdk_tw_interrupt.h
1575 M tinatool/wdgts/gtk/Makefile.am
1576 M tinatool/wdgts/gtk/wdgtsGtk_tw_button.c
1577 M tinatool/wdgts/gtk/wdgtsGtk_tw_button.h
1578 M tinatool/wdgts/gtk/wdgtsGtk_tw_canvas.c
1579 M tinatool/wdgts/gtk/wdgtsGtk_tw_check.c
1580 M tinatool/wdgts/gtk/wdgtsGtk_tw_choice.c
1581 M tinatool/wdgts/gtk/wdgtsGtk_tw_choice.h
1582 M tinatool/wdgts/gtk/wdgtsGtk_tw_command.c
1583 M tinatool/wdgts/gtk/wdgtsGtk_tw_command.h
1584 M tinatool/wdgts/gtk/wdgtsGtk_tw_dchoice.c
1585 M tinatool/wdgts/gtk/wdgtsGtk_tw_dialog.c
1586 M tinatool/wdgts/gtk/wdgtsGtk_tw_dialog.h
1587 M tinatool/wdgts/gtk/wdgtsGtk_tw_fglobal.c
1588 M tinatool/wdgts/gtk/wdgtsGtk_tw_fvalue.c
1589 M tinatool/wdgts/gtk/wdgtsGtk_tw_hlp_btn.c
1590 M tinatool/wdgts/gtk/wdgtsGtk_tw_iglobal.c
1591 M tinatool/wdgts/gtk/wdgtsGtk_tw_init.c
1592 M tinatool/wdgts/gtk/wdgtsGtk_tw_ivalue.c
1593 M tinatool/wdgts/gtk/wdgtsGtk_tw_label.c
1594 M tinatool/wdgts/gtk/wdgtsGtk_tw_label.h
1595 M tinatool/wdgts/gtk/wdgtsGtk_tw_menubar.c
1596 M tinatool/wdgts/gtk/wdgtsGtk_tw_menubar.h
1597 M tinatool/wdgts/gtk/wdgtsGtk_tw_notebook.c
1598 M tinatool/wdgts/gtk/wdgtsGtk_tw_screen.c
1599 M tinatool/wdgts/gtk/wdgtsGtk_tw_screen.h
1600 M tinatool/wdgts/gtk/wdgtsGtk_tw_set_icon.c
1601 M tinatool/wdgts/gtk/wdgtsGtk_tw_sglobal.c
1602 M tinatool/wdgts/gtk/wdgtsGtk_tw_sv_btn.c
1603 M tinatool/wdgts/gtk/wdgtsGtk_tw_svalue.c
1604 M tinatool/wdgts/gtk/wdgtsGtk_tw_textsw.c
1605 M tinatool/wdgts/gtk/wdgtsGtk_tw_toggle.c
1606 M tinatool/wdgts/gtk/wdgtsGtk_tw_tool.c
1607 M tinatool/wdgts/gtk/wdgtsGtk_tw_tool.h
1608 M tinatool/wdgts/gtk/wdgtsGtk_tw_tv.c
1609 M tinatool/wdgts/gtk/wdgts_GtkDef.h
1610 M tinatool/wdgts/gtk/wdgts_GtkPro.h
1611 M tinatool/wdgts/tcl/wdgtsTcl_tw_sglobal.c
1612 M toolkits/mri_analysis/Makefile.am
1613 M toolkits/mri_analysis/tinaTool.c
1614
1615
1616 ----------------------------------------------------------------------------------------
1617 ID:23 mjs 14.11.03 (Linux 2.4.18)
1618
1619 . Added help files for all of the tools available in the file
1620 tina-tools/toolkits/mri_analysis/Tinatool. These files are nowhere
1621 near complete, please feel free to pick up and alter them.
1622 I don't know if a format similar to mono_tool.hlp would be
1623 suitable?
1624
1625 . tlmedAnl_tool.c modified to pick up the nmr_analysis_tool.hlp file
1626 . toolkits/example/tinaTool.c modified to compile with no warnings
1627 (return value of tool_proc not set to void)
1628
1629
1630 A docs/help/coreg_tool.hlp
1631 A docs/help/imcalc_tool.hlp
1632 A docs/help/macrotool.hlp
1633 A docs/help/mono_tool.hlp
1634 A docs/help/nmr_analysis_tool.hlp
1635 A docs/help/nmr_segment_tool.hlp
1636 A docs/help/raw_input_tool.hlp
1637 A docs/help/seqroi.hlp
1638 A docs/help/sequence_tool.hlp
1639 A docs/help/tinatool.hlp
1640
1641 M tinatool/tlmedical/tlmedAnl_tool.c
1642 M toolkits/example/tinaTool.c
1643
1644
1645
1646 ----------------------------------------------------------------------------------------
1647
1648 ID:22 mjs 10.10.03 (Linux 2.4.18)
1649
1650 . Modified to ensure that the plot_flow function always plots from
1651 the first image in the sequence, by ensuring that the "barrier"
1652 variable in /tina/image/imgSeq_slice.c is set to zero (see tina-libs
1653 commit ID:44). barrier variable is reset to old value at end of function.
1654
1655 M tinatool/tlmedical/tlmedAnl_results.c
1656
1657 ----------------------------------------------------------------------------------------
1658 ID:21 a.lacey 1.10.03 (MacOSX 10.2.6)
1659
1660 . Commits to add the unfinished gtk and gdk code
1661 . Includes searching for components via configure
1662 . Does not enforce building of gtk or gdk from global make
1663 requires user to specifically build in gtk or gdk directory
1664 . This code is NOT WORKING
1665
1666 . License changed to BSD so all files edited!
1667
1668 Modified files;
1669
1670 All - License
1671
1672 Added files;
1673
1674 A tinatool/wdgts/gtk/Makefile.am
1675 A tinatool/wdgts/gtk/wdgtsGtk_tw_button.c
1676 A tinatool/wdgts/gtk/wdgtsGtk_tw_button.h
1677 A tinatool/wdgts/gtk/wdgtsGtk_tw_canvas.c
1678 A tinatool/wdgts/gtk/wdgtsGtk_tw_canvas.h
1679 A tinatool/wdgts/gtk/wdgtsGtk_tw_check.c
1680 A tinatool/wdgts/gtk/wdgtsGtk_tw_check.h
1681 A tinatool/wdgts/gtk/wdgtsGtk_tw_choice.c
1682 A tinatool/wdgts/gtk/wdgtsGtk_tw_choice.h
1683 A tinatool/wdgts/gtk/wdgtsGtk_tw_command.c
1684 A tinatool/wdgts/gtk/wdgtsGtk_tw_command.h
1685 A tinatool/wdgts/gtk/wdgtsGtk_tw_dchoice.c
1686 A tinatool/wdgts/gtk/wdgtsGtk_tw_dchoice.h
1687 A tinatool/wdgts/gtk/wdgtsGtk_tw_dialog.c
1688 A tinatool/wdgts/gtk/wdgtsGtk_tw_dialog.h
1689 A tinatool/wdgts/gtk/wdgtsGtk_tw_fglobal.c
1690 A tinatool/wdgts/gtk/wdgtsGtk_tw_fglobal.h
1691 A tinatool/wdgts/gtk/wdgtsGtk_tw_fvalue.c
1692 A tinatool/wdgts/gtk/wdgtsGtk_tw_fvalue.h
1693 A tinatool/wdgts/gtk/wdgtsGtk_tw_hlp_btn.c
1694 A tinatool/wdgts/gtk/wdgtsGtk_tw_hlp_btn.h
1695 A tinatool/wdgts/gtk/wdgtsGtk_tw_iglobal.c
1696 A tinatool/wdgts/gtk/wdgtsGtk_tw_iglobal.h
1697 A tinatool/wdgts/gtk/wdgtsGtk_tw_init.c
1698 A tinatool/wdgts/gtk/wdgtsGtk_tw_init.h
1699 A tinatool/wdgts/gtk/wdgtsGtk_tw_ivalue.c
1700 A tinatool/wdgts/gtk/wdgtsGtk_tw_ivalue.h
1701 A tinatool/wdgts/gtk/wdgtsGtk_tw_label.c
1702 A tinatool/wdgts/gtk/wdgtsGtk_tw_label.h
1703 A tinatool/wdgts/gtk/wdgtsGtk_tw_menubar.c
1704 A tinatool/wdgts/gtk/wdgtsGtk_tw_menubar.h
1705 A tinatool/wdgts/gtk/wdgtsGtk_tw_notebook.c
1706 A tinatool/wdgts/gtk/wdgtsGtk_tw_notebook.h
1707 A tinatool/wdgts/gtk/wdgtsGtk_tw_screen.c
1708 A tinatool/wdgts/gtk/wdgtsGtk_tw_screen.h
1709 A tinatool/wdgts/gtk/wdgtsGtk_tw_set_icon.c
1710 A tinatool/wdgts/gtk/wdgtsGtk_tw_set_icon.h
1711 A tinatool/wdgts/gtk/wdgtsGtk_tw_sglobal.c
1712 A tinatool/wdgts/gtk/wdgtsGtk_tw_sglobal.h
1713 A tinatool/wdgts/gtk/wdgtsGtk_tw_sv_btn.c
1714 A tinatool/wdgts/gtk/wdgtsGtk_tw_sv_btn.h
1715 A tinatool/wdgts/gtk/wdgtsGtk_tw_svalue.c
1716 A tinatool/wdgts/gtk/wdgtsGtk_tw_svalue.h
1717 A tinatool/wdgts/gtk/wdgtsGtk_tw_textsw.c
1718 A tinatool/wdgts/gtk/wdgtsGtk_tw_textsw.h
1719 A tinatool/wdgts/gtk/wdgtsGtk_tw_toggle.c
1720 A tinatool/wdgts/gtk/wdgtsGtk_tw_toggle.h
1721 A tinatool/wdgts/gtk/wdgtsGtk_tw_tool.c
1722 A tinatool/wdgts/gtk/wdgtsGtk_tw_tool.h
1723 A tinatool/wdgts/gtk/wdgtsGtk_tw_tv.c
1724 A tinatool/wdgts/gtk/wdgtsGtk_tw_tv.h
1725 A tinatool/wdgts/gtk/wdgts_GtkDef.h
1726 A tinatool/wdgts/gtk/wdgts_GtkPro.h
1727 A tinatool/gphx/gdk/Makefile.am
1728 A tinatool/gphx/gdk/gphxGdk_activity.c
1729 A tinatool/gphx/gdk/gphxGdk_activity.h
1730 A tinatool/gphx/gdk/gphxGdk_cmap.c
1731 A tinatool/gphx/gdk/gphxGdk_cmap.h
1732 A tinatool/gphx/gdk/gphxGdk_color.c
1733 A tinatool/gphx/gdk/gphxGdk_color.h
1734 A tinatool/gphx/gdk/gphxGdk_draw.c
1735 A tinatool/gphx/gdk/gphxGdk_draw.h
1736 A tinatool/gphx/gdk/gphxGdk_dump.c
1737 A tinatool/gphx/gdk/gphxGdk_dump.h
1738 A tinatool/gphx/gdk/gphxGdk_epsf_dump.c
1739 A tinatool/gphx/gdk/gphxGdk_epsf_dump.h
1740 A tinatool/gphx/gdk/gphxGdk_fonts.c
1741 A tinatool/gphx/gdk/gphxGdk_fonts.h
1742 A tinatool/gphx/gdk/gphxGdk_globals.c
1743 A tinatool/gphx/gdk/gphxGdk_globals.h
1744 A tinatool/gphx/gdk/gphxGdk_mask.c
1745 A tinatool/gphx/gdk/gphxGdk_mask.h
1746 A tinatool/gphx/gdk/gphxGdk_mousestate.c
1747 A tinatool/gphx/gdk/gphxGdk_mousestate.h
1748 A tinatool/gphx/gdk/gphxGdk_picture.c
1749 A tinatool/gphx/gdk/gphxGdk_picture.h
1750 A tinatool/gphx/gdk/gphxGdk_props.c
1751 A tinatool/gphx/gdk/gphxGdk_props.h
1752 A tinatool/gphx/gdk/gphxGdk_size.c
1753 A tinatool/gphx/gdk/gphxGdk_size.h
1754 A tinatool/gphx/gdk/gphxGdk_tiff_dump.c
1755 A tinatool/gphx/gdk/gphxGdk_tiff_dump.h
1756 A tinatool/gphx/gdk/gphxGdk_tv_screen.c
1757 A tinatool/gphx/gdk/gphxGdk_tv_screen.h
1758 A tinatool/gphx/gdk/gphxGdk_tw_cursor.c
1759 A tinatool/gphx/gdk/gphxGdk_tw_cursor.h
1760 A tinatool/gphx/gdk/gphxGdk_tw_error.c
1761 A tinatool/gphx/gdk/gphxGdk_tw_error.h
1762 A tinatool/gphx/gdk/gphxGdk_tw_interrupt.c
1763
1764
1765 ----------------------------------------------------------------------------------------
1766 ID:20 mjs 1.10.03 (Linux 2.4.18)
1767
1768 M tinatool/tlbase/tlbaseSeq_io.c Corrected filename memory management problems
1769
1770
1771 ---------------------------------------------------------------------------------------
1772 ID:19 mjs 19.09.03 (Linux 2.4.18)
1773
1774 M tinatool/tlvision/Makefile.am Removed duplicate lines
1775
1776 ----------------------------------------------------------------------------------------
1777 ID:18 NAT 19.09.03 (Solaris)
1778
1779 . compiler errors fixed which prevented build
1780
1781 M tinatool/gphx/gphxDef.h
1782 M tinatool/gphx/gphxPro.h
1783
1784 ------------------------------------------------------------------------------------------
1785 ID:17 tony 18.09.03 (MacOSX 10.2.6)
1786
1787 . fixed build system which was broken by half finished addition of GTK/GDK.
1788
1789 Added files:
1790 A m4/gtk.m4
1791
1792 Modified files:
1793
1794 M aclocal.m4
1795 M bootstrap.sh
1796 M config.h.in
1797 M tinatool/gphx/Makefile.am
1798 M tinatool/gphx/gphxDef.h
1799 M tinatool/gphx/gphxPro.h
1800 M tinatool/gphx/null/gphxNull_globals.c
1801 M tinatool/wdgts/Makefile.am
1802 M tinatool/wdgts/xv/wdgtsXv_tw_tv.c
1803
1804 ------------------------------------------------------------------------------------------
1805 ID:16 tony 11.09.03 (MacOSX 10.2.6)
1806
1807 . comment out non-working portions of serialise code until
1808 this is fixed in tina5
1809
1810 . added code to support the use of Tk shell as well as Tcl shell
1811
1812 Modified Files:
1813
1814 M tinatool/wdgts/tcl/wdgtsTcl_tcl_serialise.c
1815 M tinatool/wdgts/tcl/wdgtsTcl_tw_init.c
1816 M tinatool/wdgts/tcl/wdgtsTcl_tw_init.h
1817
1818 ------------------------------------------------------------------------------------------
1819 ID:15 tony 9.09.03 (MacOSX 10.2.6)
1820
1821 . addition of extra gnuplot functions for web server project
1822
1823 Modified files
1824 M tinatool/draw/drawPlot_gnu.c
1825 M tinatool/draw/drawPlot_gnu.h
1826
1827
1828 ------------------------------------------------------------------------------------------
1829 ID:14 neil 2.09.03 (Solaris)
1830
1831 . inclusion of 3D wireframe model matcher tool.
1832 . inclusion of camera calibration tool.
1833 . minor bug fixes to headers to eliminate compiler warnings.
1834
1835 A tinatool/tlvision/tlvisCalib_tool.c
1836 A tinatool/tlvision/tlvisCalib_tool.h
1837 A tinatool/tlvision/tlvisSmm_draw.c
1838 A tinatool/tlvision/tlvisSmm_draw.h
1839 A tinatool/tlvision/tlvisSmm_matcher.c (main wrapper routines for object location functionality)
1840 A tinatool/tlvision/tlvisSmm_matcher.h
1841 A tinatool/tlvision/tlvisSmm_mouse.c
1842 A tinatool/tlvision/tlvisSmm_mouse.h
1843 A tinatool/tlvision/tlvisSmm_pick.c
1844 A tinatool/tlvision/tlvisSmm_pick.h
1845 A tinatool/tlvision/tlvisSmm_tool.c
1846 A tinatool/tlvision/tlvisSmm_tool.h
1847 A tinatool/tlvision/tlvisSmm_view.c
1848 A tinatool/tlvision/tlvisSmm_view.h
1849
1850 M tinatool/wdgts/wdgtsPro.h
1851
1852 -------------------------------------------------------------------------------------------
1853 ID:13 mjs 29.08.03 (Linux 2.4.18)
1854
1855 . A few minor modifications
1856
1857 Modified Files:
1858 M tinatool/tlbase/tlbaseSeq_spline.c Put missing brackets around
1859 return value
1860 M tinatool/tlmedical/tlmedAnl_mouse.c Modified to take account of new
1861 M tinatool/tlmedical/tlmedAnl_results.c sequence structure
1862
1863 -------------------------------------------------------------------------------------------
1864 ID:12 a.lacey 12.06.03 (MacOSX 10.2.6)
1865
1866 . Moved the coil correction code down into the libraries. This has
1867 lost the graphing abilities.
1868
1869 . fixes matching the ID:16 in tina-tools
1870
1871 Modified Files:
1872 M tinatool/tlbase/Makefile.am
1873 M tinatool/tlbase/tlbaseDisp_tool.c
1874 M tinatool/tlbase/tlbaseImc_imc.c
1875 M tinatool/tlbase/tlbaseImc_imc.h
1876 M tinatool/tlbase/tlbaseMono_file.c
1877 M tinatool/tlbase/tlbase_ImcPro.h
1878 M tinatool/tlmedical/tlmedAnl_mouse.c
1879 M tinatool/tlmedical/tlmedAnl_tool.c
1880 M toolkits/mri_analysis/tinaTool.c
1881
1882 Removed files:
1883 R tinatool/tlbase/tlbaseImc_norm.c
1884 R tinatool/tlbase/tlbaseImc_norm.h
1885
1886
1887 -------------------------------------------------------------------------------------------
1888 ID:11 a.lacey 22.05.03 (MacOSX 10.2.6)
1889
1890 . fix to drawPlot_hfit.c regarding shistogram fix in ID:15 of tina-libs
1891
1892 Modified files:
1893 M tinatool/draw/drawPlot_hfit.c
1894
1895 m.scott 11.03.03 (Linux 2.4.18)
1896
1897 .modified imcalc tool file to include missing math.h header
1898
1899 Modified file:
1900 M tinatool/tlbase/tlbaseImc_tool.c
1901
1902 (This added here as mjs committed under ID:11 but failed to update the
1903 configure.ac and Changelog files properly)
1904 -------------------------------------------------------------------------------------------
1905 ID:10 m.scott 27.02.03 (Linux 2.4.18)
1906
1907 . Modified files required for the SeqROI tool, to bring in line with the new sequence tool
1908 and the changes made in tina-tools ID:8 and tina-libs
1909 ID:11
1910 . Modified display and mono tools to include missing header files.
1911
1912 Modified files:
1913
1914 M tinatool/tlbase/Makefile.am
1915 M tinatool/tlbase/tlbaseDisp_tool.c
1916 M tinatool/tlbase/tlbaseMono_tool.c
1917 M tinatool/tlbase/tlbaseMono_view.c
1918 M tinatool/tlbase/tlbaseSeq_disp.c
1919 M tinatool/tlbase/tlbaseSeq_disp.h
1920 M tinatool/tlbase/tlbaseSeq_draw.c
1921 M tinatool/tlbase/tlbaseSeq_draw.h
1922 M tinatool/tlbase/tlbaseSeq_funcs.c
1923 M tinatool/tlbase/tlbaseSeq_roitool.c
1924 M tinatool/tlbase/tlbaseSeq_roitool.h
1925 M tinatool/tlbase/tlbaseSeq_spline.c
1926 M tinatool/tlbase/tlbaseSeq_spline.h
1927 M tinatool/tlbase/tlbaseSeq_tool.c
1928 M tinatool/tlbase/tlbase_SeqDef.h
1929 M tinatool/tlbase/tlbase_SeqPro.h
1930
1931 ------------------------------------------------------------------------------------------
1932 ID:9 a.lacey 25.02.03 (MacOSX 10.2.4)
1933
1934 . removed tlbaseSeq_sys.c[.h] which provided get_cvector_length. This function was
1935 equivalent to strlen
1936
1937 . moved down seq_image_get and seq_image_set into tina-libs
1938
1939 Deleted files:
1940 tinatool/tlbase/tlbaseSeq_sys.c
1941 tinatool/tlbase/tlbaseSeq_sys.h
1942
1943 Modified files:
1944 M tinatool/tlbase/tlbaseSeq_image.c
1945 M tinatool/tlbase/tlbaseSeq_image.h
1946 M tinatool/tlbase/tlbaseSeq_io.c
1947 U tinatool/tlbase/tlbaseSeq_sys.c
1948 U tinatool/tlbase/tlbaseSeq_sys.h
1949 M tinatool/tlbase/tlbaseSeq_tool.c
1950 M tinatool/tlmedical/tlmedSeg_tool.c
1951
1952 ------------------------------------------------------------------------------------------
1953 ID:8 a.lacey 22.02.03 (MacOSX 10.2.4)
1954
1955 . Sequence data structure split was incomplete as most of the support functions only existed
1956 at the tools level. These mods aim to fix this by pushing as much of the functionality
1957 down
1958 into the libs
1959
1960 . Deleted files containing duplicates of functions in sequence tool - nasty.
1961
1962 Testing:
1963
1964 . built and ran toolkit mri_analysis. successfully loaded image sequence.
1965
1966 Moved to tina-libs/tina/image with altered prefix:
1967 tinatool/tlbase/tlbaseSeq_alloc.c
1968 tinatool/tlbase/tlbaseSeq_alloc.h
1969 tinatool/tlbase/tlbaseSeq_frame.c
1970 tinatool/tlbase/tlbaseSeq_frame.h
1971 tinatool/tlbase/tlbaseSeq_imstack.c
1972 tinatool/tlbase/tlbaseSeq_imstack.h
1973 tinatool/tlbase/tlbaseSeq_voi.c
1974 tinatool/tlbase/tlbaseSeq_voi.h
1975
1976 Removed:
1977 tinatool/tlbase/tlbaseSeq_get.h
1978 tinatool/tlbase/tlbaseSeq_get.c
1979 tinatool/tlbase/tlbaseSeq_vars.c
1980 tinatool/tlbase/tlbaseSeq_vars.h
1981 tinatool/tlbase/tlbaseSeq_edit.c
1982 tinatool/tlbase/tlbaseSeq_edit.h
1983 tinatool/tlbase/tlbaseSeq_logic.c
1984 tinatool/tlbase/tlbaseSeq_logic.h
1985 tinatool/tlbase/tlbaseSeq_stack.c
1986 tinatool/tlbase/tlbaseSeq_stack.h
1987
1988 Modified files:
1989 tinatool/tlbase/tlbaseView_display.c
1990 tinatool/tlbase/tlbase_SeqPro.h
1991 tinatool/tlbase/tlbase_SeqDef.h (transfered some structures to img_SeqDef.h )
1992 tinatool/tlbase/Makefile.am
1993
1994 ------------------------------------------------------------------------------------------
1995 ID:7 g.buonaccorsi 20.02.03 (Solaris 2.8)
1996
1997 . fix for link problems with stack_push and get_stride_store
1998
1999 . simultaneous fix with tina-libs ID:10
2000
2001
2002 Modified files:
2003
2004 M tinatool/tlbase/tlbaseSeq_io.c
2005 M tinatool/tlmedical/tlmedAnl_mouse.c
2006 M tinatool/tlmedical/tlmedAnl_tool.c
2007 M tinatool/tlmedical/tlmedCoreg_tool.c
2008 M tinatool/tlmedical/tlmedSeg_tool.c
2009 M tinatool/tlvision/tlvisEdge_epi_mouse.c
2010 M tinatool/tlvision/tlvisEdge_geom_pick.c
2011 M tinatool/tlvision/tlvisEdge_order_mouse.c
2012 M tinatool/tlvision/tlvisEdge_pick.c
2013 M tinatool/tlvision/tlvisEdge_stest_tool.c
2014 M tinatool/tlvision/tlvisEdge_tool.c
2015
2016 ------------------------------------------------------------------------------------------
2017 ID:6 a.lacey 10.02.03 (MacOSX 10.2.3.)
2018
2019 . initial population of tlvision, providing corner tool, edge tool, terrain tool
2020 and the stereo test tool.
2021
2022 . needs (minimum of) build10 of tina-libs
2023
2024 Testing:
2025
2026 . successfully built and tested the bae project system
2027
2028 New files:
2029 A tinatool/tlvision/Makefile.am
2030 A tinatool/tlvision/tlvisCnr_pick.c
2031 A tinatool/tlvision/tlvisCnr_pick.h
2032 A tinatool/tlvision/tlvisCnr_tool.c
2033 A tinatool/tlvision/tlvisCnr_tool.h
2034 A tinatool/tlvision/tlvisEdge_epi_mouse.c
2035 A tinatool/tlvision/tlvisEdge_epi_mouse.h
2036 A tinatool/tlvision/tlvisEdge_geom_pick.c
2037 A tinatool/tlvision/tlvisEdge_geom_pick.h
2038 A tinatool/tlvision/tlvisEdge_order_mouse.c
2039 A tinatool/tlvision/tlvisEdge_order_mouse.h
2040 A tinatool/tlvision/tlvisEdge_pick.c
2041 A tinatool/tlvision/tlvisEdge_pick.h
2042 A tinatool/tlvision/tlvisEdge_stest_tool.c
2043 A tinatool/tlvision/tlvisEdge_stest_tool.h
2044 A tinatool/tlvision/tlvisEdge_tool.c
2045 A tinatool/tlvision/tlvisEdge_tool.h
2046 A tinatool/tlvision/tlvisTrn_grimson.c
2047 A tinatool/tlvision/tlvisTrn_grimson.h
2048 A tinatool/tlvision/tlvisTrn_procs.c
2049 A tinatool/tlvision/tlvisTrn_procs.h
2050 A tinatool/tlvision/tlvisTrn_tool.c
2051 A tinatool/tlvision/tlvisTrn_tool.h
2052 A tinatool/tlvision/tlvisTrn_triangle.c
2053 A tinatool/tlvision/tlvisTrn_triangle.h
2054
2055 Modified files:
2056 M configure.ac
2057 M tinatool/Makefile.am
2058 M tinatool/wdgts/xv/wdgtsXv_tw_screen.h
2059
2060 ------------------------------------------------------------------------------------------
2061 ID:5 ipoole 1.2.03 (Windows 2000/Cygwin)
2062
2063 . Minor changes to build/run under Cygwin with XFree86 X11 client
2064
2065 Modified files:
2066 M configure.ac // join lines broken by '\'
2067 M tinatool/draw/drawTv_activity.c // replace NULL with 0 in case statements
2068 M tinatool/draw/drawTv_zoom.c // ditto
2069 M tinatool/gphx/x11/gphxX11_activity.c // ditto
2070 M toolkits/example/Makefile.am // correct link order of libraries
2071 M toolkits/mri_analysis/Makefile.am // ditto
2072
2073 Testing:
2074 With tina-libs ID:6. Verified tinatool builds and example/tinatool launches. Haven't
2075 exercised the tool.
2076
2077 ------------------------------------------------------------------------------------------
2078 ID:4 a.lacey (MacOSX 10.2.3)
2079
2080 . added files missed from ID:3
2081
2082 New files:
2083 tinatool/draw/drawPlot_gnu.c
2084 tinatool/draw/drawPlot_gnu.h
2085
2086 ------------------------------------------------------------------------------------------
2087 ID:3 a.lacey (MacOSX 10.2.3)
2088
2089 . added group Pro.h files for tlmedical directory
2090
2091 New files:
2092 tinatool/tlmedical
2093 tlmed_AnlPro.h
2094 tlmed_SegPro.h
2095 tlmed_CoregPro.h
2096 tlmedPro.h
2097
2098 Modified files:
2099 tinatool/tlmedical/Makefile.am
2100
2101
2102 ------------------------------------------------------------------------------------------
2103 ID:2 a.lacey (MacOSX 10.2.3)
2104
2105 . Missed files from ID:1
2106
2107 . values.h removed from files and replaced by limits.h
2108
2109 . fixes to header includes in all files in tlmedical from absolute to relative
2110 pathnames
2111
2112 . renamed tlmedStim_defs.h to tlmed_StimDef.h and repaired all subsequent includes
2113
2114 . renamed tlbaseSeq_defs.h to tlbase_SeqDef.h and repaired all subsequent includes
2115
2116 . removed numerous local prototype declarations
2117
2118 . fixed several function calls as a result of previous point
2119
2120 . merged duplications 'def' files for Sequence
2121
2122 . repaired naming of #define's in .h files in tlbaseSeq*
2123
2124 . reordered sister headerfile includes in all tlbaseSeq*.c files
2125
2126 . added tlbase_SeqDef and Pro to the tlbaseSeq.h and Pro.h files
2127
2128 . numerous little fixes to correct other deviations from standard
2129
2130 . improved the toolkits/example autobuild capabilities
2131
2132 . added mri_analysis toolkit
2133
2134 New files:
2135 tinatool/draw/drawPlot_gnu.c
2136 tinatool/draw/drawPlot_gnu.h
2137 toolkits/mri_analysis
2138 Makefile.am
2139 tinaTool.c
2140 coil.cls
2141 coreg.cls
2142 mixseg.cls
2143 perf.cls
2144
2145 Modified files:
2146 tinatool/tlbase/tlbaseSeq_tool.c
2147 tinatool/tlbase/tlbaseSeq_view.c
2148 tinatool/tlbase/tlbaseSeq_alloc.c
2149 tinatool/tlbase/tlbaseSeq_disp.c
2150 tinatool/tlbase/tlbaseSeq_frame.c
2151 tinatool/tlbase/tlbaseSeq_funcs.c
2152 tinatool/tlbase/tlbaseSeq_image.c
2153 tinatool/tlbase/tlbaseSeq_io.c
2154 tinatool/tlbase/tlbaseSeq_sys.c
2155 tinatool/tlbase/tlbaseSeq_tool.c
2156 tinatool/tlbase/tlbaseSeq_tv.c
2157 tinatool/tlbase/tlbaseSeq_view.c
2158 tinatool/tlbase/tlbaseView_display.c
2159 tinatool/tlbase/tlbaseSeq_tool.h
2160 tinatool/tlbase/tlbaseSeq_view.h
2161 tinatool/tlbase/tlbaseSeq_alloc.h
2162 tinatool/tlbase/tlbaseSeq_disp.h
2163 tinatool/tlbase/tlbaseSeq_frame.h
2164 tinatool/tlbase/tlbaseSeq_funcs.h
2165 tinatool/tlbase/tlbaseSeq_image.h
2166 tinatool/tlbase/tlbaseSeq_io.h
2167 tinatool/tlbase/tlbaseSeq_sys.h
2168 tinatool/tlbase/tlbaseSeq_tool.h
2169 tinatool/tlbase/tlbaseSeq_tv.h
2170 tinatool/tlbase/tlbaseSeq_view.h
2171 tinatool/tlbase/tlbaseView_display.h
2172 tinatool/tlmedical/tlmedAnl_mouse.c
2173 tinatool/tlmedical/tlmedAnl_mouse.h
2174 tinatool/tlmedical/tlmedAnl_report.c
2175 tinatool/tlmedical/tlmedAnl_report.h
2176 tinatool/tlmedical/tlmedAnl_results.c
2177 tinatool/tlmedical/tlmedAnl_results.h
2178 tinatool/tlmedical/tlmedAnl_tool.c
2179 tinatool/tlmedical/tlmedAnl_tool.h
2180 tinatool/tlmedical/tlmedCoreg_auto.c
2181 tinatool/tlmedical/tlmedCoreg_auto.h
2182 tinatool/tlmedical/tlmedCoreg_tool.c
2183 tinatool/tlmedical/tlmedCoreg_tool.h
2184 tinatool/tlmedical/tlmedCoreg_view.c
2185 tinatool/tlmedical/tlmedCoreg_view.h
2186 tinatool/tlmedical/tlmedSeg_hist.c
2187 tinatool/tlmedical/tlmedSeg_hist.h
2188 tinatool/tlmedical/tlmedSeg_scale.c
2189 tinatool/tlmedical/tlmedSeg_scale.h
2190 tinatool/tlmedical/tlmedSeg_tool.c
2191 tinatool/tlmedical/tlmedSeg_tool.h
2192 toolkits/example/Makefile.am
2193 toolkits/Makefile.am
2194 configure.ac
2195 Makefile.ac
2196
2197
2198
2199 ------------------------------------------------------------------------------------------
2200
2201 ID:1 n.thacker (Linux 2.4.19)
2202
2203 . Populated the tinatool/tlmedical directory with code from tina4. This provides
2204 tools which complement the additions at ID:3 in tina-libs for segmentation
2205 coregistration and analysis.
2206
2207 . The new sequence tool introduced in tinatool/tlbase
2208
2209 New files:
2210 tinatool/tlbase/tlbaseSeq_defs.h
2211 tinatool/tlbase/tlbaseSeq_disp.c
2212 tinatool/tlbase/tlbaseSeq_disp.h
2213 tinatool/tlbase/tlbaseSeq_funcs.c
2214 tinatool/tlbase/tlbaseSeq_funcs.h
2215 tinatool/tlbase/tlbaseSeq_image.c
2216 tinatool/tlbase/tlbaseSeq_image.h
2217 tinatool/tlbase/tlbaseSeq_sys.c
2218 tinatool/tlbase/tlbaseSeq_sys.h
2219 tinatool/tlbase/tlbaseSeq_tv.c
2220 tinatool/tlbase/tlbaseSeq_tv.h
2221 tinatool/tlbase/tlbaseView_display.c
2222 tinatool/tlbase/tlbaseView_display.h
2223 tinatool/tlmedical/Makefile.am
2224 tinatool/tlmedical/tlmedAnl_mouse.c
2225 tinatool/tlmedical/tlmedAnl_mouse.h
2226 tinatool/tlmedical/tlmedAnl_report.c
2227 tinatool/tlmedical/tlmedAnl_report.h
2228 tinatool/tlmedical/tlmedAnl_results.c
2229 tinatool/tlmedical/tlmedAnl_results.h
2230 tinatool/tlmedical/tlmedAnl_tool.c
2231 tinatool/tlmedical/tlmedAnl_tool.h
2232 tinatool/tlmedical/tlmedCoreg_auto.c
2233 tinatool/tlmedical/tlmedCoreg_auto.h
2234 tinatool/tlmedical/tlmedCoreg_tool.c
2235 tinatool/tlmedical/tlmedCoreg_tool.h
2236 tinatool/tlmedical/tlmedCoreg_view.c
2237 tinatool/tlmedical/tlmedCoreg_view.h
2238 tinatool/tlmedical/tlmedSeg_hist.c
2239 tinatool/tlmedical/tlmedSeg_hist.h
2240 tinatool/tlmedical/tlmedSeg_scale.c
2241 tinatool/tlmedical/tlmedSeg_scale.h
2242 tinatool/tlmedical/tlmedSeg_tool.c
2243 tinatool/tlmedical/tlmedSeg_tool.h
2244
2245 Modified files:
2246 configure.ac
2247 tinatool/Makefile.am
2248 tinatool/draw/Makefile.am
2249 tinatool/tlbase/Makefile.am
2250 tinatool/tlbase/tlbaseImc_imc.c
2251 tinatool/tlbase/tlbaseImc_imc.h
2252 tinatool/tlbase/tlbaseImc_norm.c
2253 tinatool/tlbase/tlbaseSeq_frame.c
2254 tinatool/tlbase/tlbaseSeq_frame.h
2255 tinatool/tlbase/tlbaseSeq_io.c
2256 tinatool/tlbase/tlbaseSeq_io.h
2257 tinatool/tlbase/tlbaseSeq_tool.c
2258 tinatool/tlbase/tlbaseSeq_tool.h
2259 tinatool/tlbase/tlbaseSeq_vars.h
2260 tinatool/tlbase/tlbaseSeq_view.c
2261 tinatool/tlbase/tlbaseSeq_view.h
2262 tinatool/tlbase/tlbase_SeqDef.h
2263 tinatool/tlbase/tlbase_SeqPro.h
2264
2265 EOF---------------------------------------------------------------------------------------
2266
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.