* gdbtk/library/pointwin.it[hb] (PointWin::breakpoint): removed.
(PointWin::tracepoint): removed.
(PointWin::watchpoint): removed.
* gdbtk/library/srctextwin.it[hb] (SrcTextWin::watchpoint): removed.
return 0
}
-# ------------------------------------------------------------------
-# PUBLIC METHOD: breakpoint - Update widget when a breakpoint
-# event is received from the backend.
-# ------------------------------------------------------------------
-itcl::body PointWin::breakpoint {event} {}
-
-
-# ------------------------------------------------------------------
-# PUBLIC METHOD: tracepoint - Update widget when a tracepoint
-# event is received from the backend.
-# ------------------------------------------------------------------
-
-
-# ------------------------------------------------------------------
-# PUBLIC METHOD: watchpoint - Update widget when a watchpoint
-# event is received from the backend.
-# ------------------------------------------------------------------
-itcl::body PointWin::watchpoint {event} {}
-
-
# ------------------------------------------------------------------
# PUBLIC METHOD: forall - perform a command on all points
# ------------------------------------------------------------------
# - goto {r} Make point at row $r visible in some target
# window.
# - forall {command} Execute $command for all points.
-# - breakpoint {event} Capture breakpoint events.
-# - tracepoint {event} Capture tracepoint events.
-# - watchpoint {event} Capture watchpoint events.
itcl::class PointWin {
inherit EmbeddedWin GDBWin
method select {r}
method goto {r}
method _select_and_popup {point X Y}
-
- # GDB Events
- method breakpoint {event}
- method tracepoint {event}
- method watchpoint {event}
}
private {
[$tp_event get pass_count]
}
-# ------------------------------------------------------------------
-# PUBLIC METHOD: watchpoint - Handle a watchpoint create, delete,
-# modify event from the backend.
-# ------------------------------------------------------------------
-itcl::body SrcTextWin::watchpoint {event} {}
-
-
# ------------------------------------------------------------------
# METHOD: bp - set and remove breakpoints
#
# GDB Events
method breakpoint {event}
method tracepoint {event}
- method watchpoint {event}
method set_variable {event}
}
set auto_index(::PointWin::forall) [list source [file join $dir pointwin.itb]]
set auto_index(::PointWin::show_column) [list source [file join $dir pointwin.itb]]
set auto_index(::PointWin::hide_column) [list source [file join $dir pointwin.itb]]
-set auto_index(::PointWin::breakpoint) [list source [file join $dir pointwin.itb]]
-set auto_index(::PointWin::tracepoint) [list source [file join $dir pointwin.itb]]
-set auto_index(::PointWin::watchpoint) [list source [file join $dir pointwin.itb]]
set auto_index(::PointWin::create_event) [list source [file join $dir pointwin.itb]]
set auto_index(::PointWin::delete_point) [list source [file join $dir pointwin.itb]]
set auto_index(::PointWin::modify) [list source [file join $dir pointwin.itb]]