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.

36 lines
863 B
Plaintext

#
# 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
}
}