neingeist
/
arduinisten
Archived
1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

60 lines
1.6 KiB
Plaintext

# Breakpoint window class definition for Insight
# Copyright (C) 1997, 1998, 1999, 2001 Red Hat, Inc.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License (GPL) as published by
# the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
itcl::class BpWin {
inherit EmbeddedWin GDBWin
public {
variable tracepoints 0
method constructor {args}
method destructor {}
method bp_select {r}
method bp_able { i }
method bp_remove { i }
method bp_restore {}
method bp_store {}
method bp_type { i }
method bp_all { command }
method get_actions {bpnum}
method toggle_threads {}
method reconfig {}
method goto_bp {r}
# GDB Events
method breakpoint {event}
method tracepoint {event}
}
private {
variable twin
variable next_row 0
variable index_to_bpnum
variable Index_to_bptype
variable temp
variable mbar 1
variable selected 0
variable bg1
variable Menu
variable show_threads ;#cached copy of [pref get gdb/bp/show_threads]
method build_win {}
method bp_add {bp_event {tracepoint 0}}
method bp_modify {bp_event {tracepoint 0}}
method bp_delete {bp_event}
method _select_and_popup {bp X Y}
}
}