1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
|
2001-04-20 Keith Seitz <keiths@cygnus.com>
* library/srctextwin.ith (handle_set_hook): Rename to set_variable.
* library/srctextwin.itb (set_variable): Handle SetVariableEvent.
(constructor): Remove gdb_set_hook.
(destructor): Ditto.
* library/srcbar.itcl: Inherit from GDBEventHandler.
(set_hook): Rename to set_variable and handle SetVariableEvent.
(constructor): Remove gdb_set_hook.
(destructor): Ditto.
* library/regwin.ith (handle_set_hook): Renamed to set_variable.
* library/regwin.itb (set_variable): Handle SetVariableEvent.
(constructor): Remove gdb_set_hook.
(destructor): Ditto.
* library/kod.ith (set_os): Renamed to "set_variable".
* library/kod.itb (set_variable): Handle SetVariableEvent.
(constructor): Remove gdb_set_hook.
(destructor): Ditto.
* library/tclIndex: Regenerated.
2001-04-20 Keith Seitz <keiths@cygnus.com>
* library/interface.tcl (gdbtk_tcl_set_variable): New proc.
* library/gdbevent.ith (SetVariableEvent): New event.
* library/gdbevent.itb (SetVariableEvent::get): Override
GDBEvent::get.
* library/ehandler.ith (set_variable): New public method.
* generic/gdbtk-hooks.c (gdbtk_set_hook): Let inteface function
gdbtk_tcl_set_variable do all the work.
* tclIndex: Regenerated.
2001-04-19 Keith Seitz <keiths@cygnus.com>
* library/gdbevent.ith: New file. Defines new event model.
* library/gdbevent.itb: New file. Implements new event
model.
* library/ehandler.ith: New file. Defines new event model.
* library/ehandler.itb: New file. Implements new event
model.
* library/gdbwin.ith: Inherit from GDBEventHandler.
(update): Delete unused method.
(_state): Delete unused variable.
* library/tclIndex: Regenerated.
* generic/gdbtk-cmds.c (gdb_set_bp): Use create_breakpoint_hook
to notify gui of changes.
(gdb_set_bp_addr): Ditto.
(gdb_get_breakpoint_info): Update comments to match reality.
* generic/gdbtk-hooks.c (breakpoint_notify): Only pass the
breakpoint number which generated the event.
(tracepoint_notify): Ditto for tracepoints.
* library/interface.tcl (gdb_breakpoint_change_hook): Mark
as deprecated and comment out definition.
(gdbtk_tcl_breakpoint): Use new GDBEvent event "breakpoint"
to notify rest of UI about breakpoint event.
(gdbtk_tcl_tracepoint): Ditto for "tracepoint" event.
* library/bpwin.ith (update): Renamed to "breakpoint".
(breakpoint): New public method.
(tracepoint): New public method.
(bp_add): Take event as argument instead of number.
(bp_modify): Ditto.
(bp_delete): Ditto.
* library/bpwin.itb (constructor): Remove
gdb_breakpoint_changed_hook.
(destructor): Ditto.
(build_win): Insert any existing breakpoints by
making BreakpointEvents for them.
(breakpoint): Renamed from "update" to handle
breakpoint events.
Remove code to deal with tracepoints.
(tracepoint): New method to handle tracepoint
events.
(bp_add): Deal with breakpoint events, not breakpoint
numbers.
(bp_modify): Ditto.
(bp_delete): Ditto.
* library/srctextwin.ith: Inherit from GDBWin.
(breakpoint): New public method.
(tracepoint): New public method.
* library/srctextwin.itb (constructor): Remove
gdb_breakpoint_changed_hook.
(destructor): Ditto.
(breakpoint): New method to handle breakpoint event.
(tracepoint): New method to handle tracepoint event.
(do_bp): Handle duplicate breakpoints for asm, too.
(remove_bp_at_line): Delete breakpoints by number, not
linespec. clear_command removes breakpoints from the
breakpoint_chain BEFORE deleting the breakpoint. delete_command
does this afterward (so we can call gdb_get_breakpoint_info on
an about-to-be-deleted breakpoint).
2001-04-18 Martin M. Hunt <hunt@redhat.com>
* generic/gdbtk.c (gdbtk_init): Initialize uiout.
2001-04-18 Tom Tromey <tromey@redhat.com>
* library/interface.tcl (run_executable): Use
gdb_set_inferior_args.
* library/session.tcl (session_load): Use gdb_set_inferior_args.
* generic/gdbtk-cmds.c (Gdbtk_Init): Register
gdb_set_inferior_args.
(gdb_get_inferior_args): New function.
2001-04-17 Tom Tromey <tromey@redhat.com>
* library/session.tcl (session_save): Use gdb_get_inferior_args.
* generic/gdbtk-cmds.c (inferior_args): Removed.
(Gdbtk_Init): Don't register gdb_inferior_args variable. Do
register gdb_get_inferior_args function.
(gdb_get_inferior_args): New function.
2001-04-17 Fernando Nasser <fnasser@redhat.com>
* library/variables.tcl (update): Temporary fix to the detection of
"type_changed" condition. Proper fix will require that this condition
is properly reported by the underlying code.
2001-04-12 Nicholas Duffek <nsd@redhat.com>
* generic/gdbtk-cmds.c (gdb_entry_point): New TCL command.
* library/interface.tcl (gdbtk_locate_main): Try the program's
entry point if no main function is found.
2001-04-10 Keith Seitz <keiths@cygnus.com>
From Tom Tromey (tromey@redhat.com):
* library/managedwin.itb (reveal): We actually do want to force
the focus for Windows.
2001-04-09 Martin M. Hunt <hunt@redhat.com>
* library/managedwin.itb (ManagedWin::reveal): After
deiconifying window for the first time, set its geometry
again, if the platform is unix. This fixes a problem with kde.
(ManagedWin::_create): Set a variable with the initial
geometry.
2001-04-04 Christopher Faylor <cgf@redhat.com>
* generic/gdbtk.c: Add __CYGWIN__ conditional to WIN32 test.
2001-04-04 Martin M. Hunt <hunt@redhat.com>
* generic/gdbtk-hooks.c (gdbtk_fileopen): New function.
Initialize ui_file stuff for gdbtk.
(gdbtk_fputs): Don't print if gdbtk_disable_fputs. Send
stdlog and stdtarg to their handler functions.
* generic/gdbtk.c (Gdbtk_Init): Don't set gdb_stdlog
and gdb_stdtarg to gdb_stdout,
(gdbtk_init): Unset gdbtk_disable_fputs
when ready to accept output from gdb. Remove references to
fputs_unfiltered_hook.
* generic/gdbtk.h: Declare new flag gdbtk_disable_fputs.
* generic/gdbtk-cmds.c (gdb_restore_fputs): Instead of setting
fputs_unfiltered_hook, set the new flag gdbtk_disable_fputs.
* library/prefs.tcl (pref_set_defaults): Add defaults
for log_fg and target_fg.
* library/interface.tcl (gdbtk_tcl_fputs_error): Use
err_tag.
(gdbtk_tcl_fputs_log): New function. Write log messages
to console.
(gdbtk_tcl_fputs_target): New function. Write target
IO to console.
* library/console.ith (einsert): Add tag parameter.
* library/console.itb (_build_win): Add new tags for log
and target IO.
(einsert): Add tag parameter.
2001-04-02 Martin M. Hunt <hunt@redhat.com>
* generic/gdbtk-cmds.c (gdb_loadfile): Adjust size of text_argv
array to prevent writing out of range. Remove unused variables.
Fix formatting.
(gdb_get_tracepoint_info): Remove unused variable "fname".
(gdb_load_disassembly): Remove unused variable "widget".
(gdb_loc): Remove unused variable "sym".
(gdb_set_bp_addr): Remove unused variable "line".
(gdb_get_breakpoint_info): Remove unused variable "sym".
(get_frame_name): Remove unused variable "name".
2001-03-29 Fernando Nasser <fnasser@redhat.com>
* library/variables.tcl (update): Cope with varobj type changes.
2001-03-29 Fernando Nasser <fnasser@redhat.com>
* library/variables.tcl (destructor): Remove file_changed_hook hook.
2001-03-29 Fernando Nasser <fnasser@redhat.com>
* generic/gdbtk-varobj.c (variable_obj_command): Do not cache varobj
handles as they may change -- use varobj_get_handle() instead.
2001-03-15 Martin Hunt <hunt@redhat.com>
* library/browserwin.itb: Change all references to freeze_me,
thaw_me and Top to _freeze_me, _thaw_me, and _top to match
changes to managedwin.
* library/kod.itb: Ditto.
2001-03-15 Tom Tromey <tromey@redhat.com>
* library/mempref.itb (MemPref::build_win): Correctly set initial
value of combobox.
* library/memwin.itb: Added copyright header.
(MemWin::constructor): Set defaults from preference database.
(MemWin::reconfig): Update preference database.
* library/prefs.tcl (pref_save): Save `mem' preferences.
(pref_set_defaults): Define default memory preferences.
2001-03-08 Andrew Cagney <ac131313@redhat.com>
* generic/gdbtk-cmds.c (map_arg_registers): Use REG_NUM instead of
ARCH_REG_NUM.
2001-03-01 Nicholas Duffek <nsd@redhat.com>
* README.GDBTK: Minor spelling, grammar, and formatting fixes.
2001-03-01 Keith Seitz <keiths@cygnus.com>
* library/managedwin.ith: Move all implementations into
managedwin.itb.
(public variable nosize): Delete.
(freeze_me, thaw_me, make_icon_window): Prepend with
underscore to remind people these are not public
methods/procs.
(protected variable Top, screenwidth, screenheight): Ditto
for these variables.
(protected common manage_active, mainwindow): Delete.
(enable): Delete.
(reconfig): Add empty body.
* library/managedwin.itb: Move all implementations from
header here.
Update all references to renamed variables/methods/procs.
(destructor, restart, shutdown, _open, find) Let
Itcl tell us which ManagedWins we have lying around.
(enable): Delete.
(reconfig): It's empty. Moved empty body to header.
2001-03-01 Nicholas Duffek <nsd@redhat.com>
* library/managedwin.itb (ManagedWin::shutdown): Save each
managed window's geometry as a preference.
* library/managedwin.ith (ManagedWin::destructor): Don't save
managed windows' geometries as preferences.
2001-03-01 Nicholas Duffek <nsd@redhat.com>
* library/srctextwin.itb (SrcTextWin::location): Clear previous
pane's cursor after switching panes.
2001-03-01 Nicholas Duffek <nsd@redhat.com>
* library/srctextwin.itb (config_win): Give focus to $win.
Tue Feb 27 23:56:23 2001 Andrew Cagney <ac131313@redhat.com>
* generic/gdbtk-cmds.c: Include recently created "regcache.h"
2001-02-27 Keith Seitz <kseitz@nwlink.com>
* generic/gdbtk-cmds.c (gdb_fetch_registers): Mark
the result as generating a list only if it really does
generate a list.
2001-02-21 Fernando Nasser <fnasser@redhat.com>
* TODO: New file. Initial version of the TODO file, as posted to the
insight list circa October 2000.
2001-02-14 Fernando Nasser <fnasser@redhat.com>
From 2001-02-09 Martin Hunt <hunt@redhat.com>
* generic/gdbtk-cmds.c (gdb_load_disassembly): In mixed
mode, source lines should be tagged with source_tag2.
2001-02-08 Fernando Nasser <fnasser@redhat.com>
From 2001-02-06 Martin Hunt <hunt@redhat.com>
* library/debugwin.itb: Change window name to "Insight Debug"
* library/embeddedwin.ith: Fix debug messages.
* library/locals.tcl: Ditto.
* library/watch.tcl (postMenu): Ditto.
* library/variables.tcl: Ditto.
* library/interface.tcl: Ditto.
* library/regwin.itb: Ditto.
* library/gdbwin.ith: Ditto.
* library/srcbar.itcl: Ditto.
2001-02-06 Fernando Nasser <fnasser@redhat.com>
Originally from Martin Hunt <hunt@redhat.com>, with modifications
* library/srcwin.itb (_name): Check for errors when invoking
gdb_find_file.
* library/srctextwin.itb (_mtime_changed, location): Ditto.
* generic/gdbtk-cmds.c (gdb_find_file_command): Better error checking.
(full_lookup_symtab): Fix misleading comment.
2001-02-04 Fernando Nasser <fnasser@redhat.com>
* library/plugins/plugins.tcl: Fix typos and remove "-transient"
parameter from open command.
* library/plugins/HOW-TO: New file. Describes how to add a plug-in
window to Insight.
2001-02-01 Fernando Nasser <fnasser@redhat.com>
* library/images/insight.gif: New splash screen/about graphics.
* library/images2/insight.gif: New splash screen/about graphics.
* library/about.tcl: Update copyright, window title and change colors
to match new splash screen/about images.
2001-02-01 Fernando Nasser <fnasser@redhat.com>
* library/gdbtoolbar.itcl (add): New method. Emulate the style of the
toolbar iwidget commands.
(toolbar_show): Old name.
(show): New name.
(toolbar_create_button): Old name.
(create): New name.
(toolbar_configure_button): Old name.
(itemconfigure): New name.
(toolbar_bind_button): Old name.
(itembind): New name.
(toolbar_set_button_balloon): Old name.
(itemballoon): New name.
(toolbar_add_button): Make private.
(toolbar_add_label): Ditto.
(toolbar_add_button_separator): Ditto.
(toolbar_remove_button): Ditto.
(tollbar_insert_button): Ditto.
* library/srcbar.itcl: Adjust to the above syntax.
* library/plugins/rhabout/rhabout.itcl: Ditto.
2001-02-01 Fernando Nasser <fnasser@redhat.com>
* library/gdbmenubar.itcl (constructor): Remove unused code.
(add): New method. Emulate the style of the menubar iwidget commands.
(menubar_show): Old name.
(show): New name.
(menubar_menu_exists): Old name.
(exists): New name.
(menubar_clear_menu): Old name.
(clear): New name.
(menubar_delete_menu): Old name.
(delete): New name.
(menubar_new_menu): Make private. Does not return anything.
(menubar_add_menu_command): Make private.
(menubar_add_menu_separator): Ditto.
(menubar_change_menu_state): Ditto.
* library/srcbar.itcl: Adjust to the above syntax.
* library/plugins/plugins.tcl: Ditto.
* library/plugins/rhabout/rhabout.itcl: Ditto.
2001-02-01 Fernando Nasser <fnasser@redhat.com>
* library/pluginwin.itcl (contrucdtor, destructor): Use "code" to
specify callbacks.
(running, stopped, no_inferior): Make it a protected method.
(childsite): Explicitly mark as a public method.
* library/plugins/rhabout/rhabout.itcl (constructor): Add a label
widget to show status messages.
(running, stopped): Overload versions of the base class; display
status messages as an example.
2001-01-31 Fernando Nasser <fnasser@redhat.com>
* library/pluginwin.itcl: New file. Implements the PluginWindow
class that provides some basic functionality for plug-ins.
* library/plugins/rhabout/rhabout.itcl: Inherit from the new
PluginWindow class. Remove code dependent on ModalDlg.
(constructor): Creates menus and a toolbar to show how these
PluginWindow components are used.
* library/tclIndex: Regenerate.
2001-01-31 Fernando Nasser <fnasser@redhat.com>
* library/plugins/rhabout.tcl: Add load for optional sample C command
procedure.
* library/plugins/rhabout/rhabout.itcl (constructor): Try calling
optional sample C command procedure rhabout_extra_text.
* library/plugins/rhabout/rhabout.c: New file. Implement an example
plug-in shared library with a sample C command procedure.
* library/plugins/rhabout/Makefile: New file. Makefile for the sample
shared library above (Linux only).
2001-01-28 Fernando Nasser <fnasser@redhat.com>
* library/plugins: New directory. Sample plug-in directory to help
developers of Insight plug-ins. See README file in that directory.
* library/plugins/plugins.tcl: New file. Sample version of a code
fragment file which adds entries to the PlugIn menu of the Source
Window to activate custom plug-in windows.
* library/plugins/pkgIndex.tcl: New file. Sample version of a file
with package information for the installed plug-ins.
* library/plugins/rhabout.tcl: New file. Sample file providing a
plug-in package.
* library/plugins/rhabout: New directory. Sample plug-in.
* library/plugins/rhabout/rhabout.itcl: New file. Sample class
implementing a plug-in window.
* library/plugins/rhabout/tclIndex: New file. Tcl index for the sample
plug-in implementation.
2001-01-28 Fernando Nasser <fnasser@redhat.com>
* library/main.tcl: Add plugin subdirectory, if existent, to auto_path.
* library/srcbar.itcl (create_plugin_menu): New method. Create a pull
down menu for plugins if there are any for this target configuration.
(create_menu_items): Invoke the new method above.
2001-01-28 Fernando Nasser <fnasser@redhat.com>
* library/gdbmenubar.itcl (menubar_new_menu): Save lable of a menu to
use as index.
(menubar_delete_menu): New function. Delete a menu.
2001-01-28 Fernando Nasser <fnasser@redhat.com>
* library/gdbmenubar.itcl (menu_list): Add missing declararion for
global variable.
2001-01-28 Fernando Nasser <fnasser@redhat.com>
* library/gdbmenubar.itcl (set_class_state): Turn off verbose debug
messages.
* library/gdbtoolbar.itcl (set_class_state): Ditto.
2001-01-26 Fernando Nasser <fnasser@redhat.com>
* generic/gdbtk-cmds.c (gdb_clear_file): Call exec_file_clear() and
symbol_file_clear() instead of exec_file_command() and
symbol_file_command().
(gdb_find_file_command): Return the proper error text.
2001-01-25 Fernando Nasser <fnasser@redhat.com>
* library/srcbar.itcl: New file. Implement SrcBar, a menu and toolbar
for the Source Window (code previously in srcmenubar.itcl and
srctoolbar.itcl).
* library/srcmenubar.itcl: Remove obsolete file.
* library/srctoolbar.itcl: Remove obsolete file.
* library/srcbar.tcl: Remove obsolete file.
* library/gdbmenubar.itcl (menubar_show): New method. Associate the
menu with the toplevel window.
* library/srcwin.itb (_build_win): Use SrcBar.
* library/tclIndex: Regenerate.
2001-01-24 Fernando Nasser <fnasser@redhat.com>
From Martin Hunt <hunt@cygnus.com>
* generic/gdbtk-cmds.c (gdb_set_bp_addr, gdb_set_bp): Change
strsave() to xstrdup().
2001-01-24 Fernando Nasser <fnasser@redhat.com>
From Martin Hunt <hunt@cygnus.com>
* generic/gdbtk-cmds.c (gdbtk_dis_asm_read_memory): Fix call
to xfer_memory().
2001-01-19 Fernando Nasser <fnasser@redhat.com>
* library/prefs.tcl (pref_set_defaults): Set default value of
gdb/src/top_control to place the source window controls at the top.
2001-01-18 Fernando Nasser <fnasser@redhat.com>
* library/srctextwin.itb (_highlightAsmLine): Add missing FUNCNAME
parameter.
(FillAssembly, FillMixed): Pass the FUNCNAME parameter that is
needed by the above method.
* library/srctextwin.ith (_highlightAsmLine): Add FUNCNAME parameter
to method definition.
2001-01-17 Fernando Nasser <fnasser@redhat.com>
* library/srctextwin.itb (_highlightAsmLine): Add missing FILENAME
parameter.
(FillAssembly, FillMixed): Pass the FILENAME parameter that is
needed by the above method.
* library/srctextwin.ith (_highlightAsmLine): Add FILENAME parameter
to method definition.
2001-01-15 Fernando Nasser <fnasser@redhat.com>
* srcwin.itb (clear_file): Pass the appropriate value to the GO
argument of mode() so it does not try to read a source file when
no executable is loaded.
2001-01-09 Fernando Nasser <fnasser@redhat.com>
* library/srcmenubar.itcl (create_file_menu): Add missing incr for
session numbers.
2001-01-04 Fernando Nasser <fnasser@redhat.com>
The following changes fix the problem of having to click on a splash
window to make it disapear.
* modal.tcl (post): Take as an argument "expire", the time a modal
window is displayed.
* managedwin.itb (open): Check for an "expire" argument and pass the
value down to modal post method.
2001-01-04 Fernando Nasser <fnasser@redhat.com>
* library/gdbmenubar.itcl (set_class_state): New public method.
Standard method to control state by class.
(menubar_menu_class_find): Delete public accessor method.
(menubar_change_menu_state): Change the state of a menu item
not of a whole class list.
* library/srcmenubar.itcl (enable_ui): Use set_class_state instead
of prying into base class internal data.
* library/gdbtoolbar.itcl (set_class_state): New public method.
Standard method to control state by class.
(toolbar_button_class_find): Delete public accessor method.
* library/srctoolbar.itcl (enable_ui): Use set_class_state instead
of prying into base class internal data.
2001-01-04 Fernando Nasser <fnasser@redhat.com>
* library/interface.tcl (gdbtk_connect): New proc. Connects to ai
remote target (code previously at library/gdbmenubar.itcl).
(disconnect): Rename to...
(gdbtk_disconnect): New name for proc disconnect.
* library/srcmenubar.itcl (do_connect): Remove the code mentioned
above and call the new interface proc gdbtk_connect.
Also, call ::update idletasks after changing the state of the
menu entries.
(do_detach): Call gdbtk_disconnect, not ::disconnect (old name).
(do_disconnect): Call gdbtk_disconnect, not disconnect (old name).
2001-01-03 Fernando Nasser <fnasser@redhat.com>
* library/prefs.tcl (pref_set_defaults): Define gdb/src/top_control
to allow the source window controls to be placed at the top.
* library/srcwin.itb (_build_win): Test for gdb/src/top_control
and place the controls accordingly.
2001-01-02 Fernando Nasser <fnasser@redhat.com>
* library/gdbmenubar.itcl: New file. Define the GDBMenuBar class,
a generic menubar building facility for Insight windows (WIP).
* library/gdbtoolbar.itcl: New file. Define the GDBToolBar class,
a generic toolbar building facility for Insight windows (WIP).
* library/srcmenubar.itcl: New file. Define the SrcMenuBar class,
which implements the Source Window menubar (inherits GDBMenuBar).
* library/srctoolbar.itcl: New file. Define the SrcToolBar class,
which implements the Source Window toolbar (inherits GDBToolBar).
* library/srcwin.itb (_build_win): Use SrcMenuBar and SrcToolBar
instead of the obsolete GDBSrcBar.
* library/srcbar.tcl: Mark as OBSOLETE.
* library/toolbar.tcl: Mark as OBSOLETE. Rename class GDBToolBar
to avoid conflict with new class with the same name.
* library/Makefile (TCL): Include .itcl files.
* library/tclIndex: Regenerate.
2001-01-02 Fernando Nasser <fnasser@redhat.com>
* library/srcwin.itb (_build_win): If gdb is running a program, load
the window with source for that location (if available).
(download_progress): Calls to "update" must refer to the global
namespace.
2001-01-02 Fernando Nasser <fnasser@redhat.com>
* library/interface.tcl (gdbtk_quit_check): Save session whenever
possible.
2001-01-01 Fernando Nasser <fnasser@redhat.com>
* library/ChangeLog-2000: New file. Entries dated 2000 moved here
from library/ChangeLog.
* library/ChangeLog: Removed.
* generic/ChangeLog-2000: New file. Entries dated 2000 moved here
from library/ChangeLog.
* generic/ChangeLog: Removed.
2000-12-14 Fernando Nasser <fnasser@redhat.com>
* library/ChangeLog-1999: New file. Entries dated 1999 moved here
from library/ChangeLog.
* library/ChangeLog-1998: New file. Similar change for 1998.
* library/ChangeLog-1997: New file. Similar change for 1997.
* library/ChangeLog: Removed entries previous to 2000.
* generic/ChangeLog-1999: New file. Entries dated 1999 moved here
from library/ChangeLog.
* generic/ChangeLog-1998: New file. Similar change for 1998.
* generic/ChangeLog-1997: New file. Similar change for 1997.
* generic/ChangeLog: Removed entries previous to 2000.
2000-04-17 Jonathan Larmour <jlarmour@redhat.co.uk>
* ChangeLog-gdbtk: Renamed to ChangeLog
* ChangeLog: New file
* README.GDBTK: No need for changelog-default-name hint for Emacs now
Sat Feb 5 00:14:30 2000 Andrew Cagney <cagney@b1.cygnus.com>
* gdb.rc, gdbtool.ico, README.GDBTK: To here from top level GDB
directory.
* gdb/gdbtcl2: Directory moved to gdbtk/library.
* gdb/gdbtk/generic: New directory.
|