1
0
Fork 0
This repository has been archived on 2019-12-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
arduinisten/arduino-0018-windows/hardware/tools/avr/share/insight1.0/attachdlg.ith
2010-03-30 21:53:44 +02:00

35 lines
863 B
Text

#
# attachdlg.ith - itcl declarations for class AttachDlg
# ----------------------------------------------------------------------
# Implements Attach to process window
#
# ----------------------------------------------------------------------
# Copyright (C) 1999 Cygnus Solutions
#
itcl::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
}
}