URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [insight/] [gdb/] [gdbtcl/] [attachdlg.ith] - Rev 1774
Go to most recent revision | Compare with Previous | Blame | View Log
#
# attachdlg.ith - itcl declarations for class AttachDlg
# ----------------------------------------------------------------------
# Implements Attach to process window
#
# ----------------------------------------------------------------------
# Copyright (C) 1999 Cygnus Solutions
#
class AttachDlg {
inherit ModalDialog ManagedWin
public {
method constructor {args}
proc last_button {} {return $last_button}
proc pid {} {return $last_pid}
proc symbol_file {} {return $symbol_file}
}
protected {
method build_win {args}
method cancel {}
method choose_symbol_file {}
method doit {}
method list_pids {{pattern *}}
method select_pid {}
method clear_pid_selection {}
method filter_pid_selection {}
variable pid_list
common last_button 0
common last_pid {}
common symbol_file
}
}
Go to most recent revision | Compare with Previous | Blame | View Log