summaryrefslogtreecommitdiff
path: root/gdb/gdbtk
diff options
context:
space:
mode:
authorKeith Seitz <keiths@redhat.com>2005-09-01 05:11:05 +0000
committerKeith Seitz <keiths@redhat.com>2005-09-01 05:11:05 +0000
commitc7f9008e8d1008c8f8b777cfd2b1b7c012a855e6 (patch)
treecca11482e9560494c43fe82ce86d5a29faa2870b /gdb/gdbtk
parent77b3d39108c00b49c94e936e917058782a190358 (diff)
downloadgdb-c7f9008e8d1008c8f8b777cfd2b1b7c012a855e6.tar.gz
* library/help/target.html: Update dialog options.
* library/targetselection.itb (help): Implement. (build_win): Don't disable help button. Only display "use tty" option on unix hosts.
Diffstat (limited to 'gdb/gdbtk')
-rw-r--r--gdb/gdbtk/ChangeLog7
-rw-r--r--gdb/gdbtk/library/help/target.html8
-rw-r--r--gdb/gdbtk/library/targetselection.itb16
3 files changed, 25 insertions, 6 deletions
diff --git a/gdb/gdbtk/ChangeLog b/gdb/gdbtk/ChangeLog
index c87ed55c959..1a55da41f35 100644
--- a/gdb/gdbtk/ChangeLog
+++ b/gdb/gdbtk/ChangeLog
@@ -1,5 +1,12 @@
2005-08-31 Keith Seitz <keiths@redhat.com>
+ * library/help/target.html: Update dialog options.
+ * library/targetselection.itb (help): Implement.
+ (build_win): Don't disable help button.
+ Only display "use tty" option on unix hosts.
+
+2005-08-31 Keith Seitz <keiths@redhat.com>
+
* library/bpwin.itb (bp_store): gdb_get_breakpoint_info outputs
the breakpoint condition, too -- include it in the lassign.
diff --git a/gdb/gdbtk/library/help/target.html b/gdb/gdbtk/library/help/target.html
index c60ed47a251..b56821b0cff 100644
--- a/gdb/gdbtk/library/help/target.html
+++ b/gdb/gdbtk/library/help/target.html
@@ -20,7 +20,10 @@ options.</P>
<UL>
<LI><A HREF="#options_run_until_main">Run until 'main'</A></LI>
<LI><A HREF="#options_bp_at_exit">Set breakpoint at 'exit'</A></LI>
+<LI><A HREF="#options_set_bp_at">Set user-specifid breakpoint</A></LI>
<LI><A HREF="#options_download_dialog">Display Download Dialog</A></LI>
+<LI><A HREF="#options_use_xterm">Use xterm for inferior's tty (unix only)
+ </A></LI>
</UL>
<h3><A HREF="#more_options">More Options</A></h3>
@@ -60,9 +63,14 @@ Three run options which may be selected include:
<DD>Sets a breakpoint at main()
<DT><A NAME="options_bp_at_exit">Set breakpoint at 'exit'</A>
<DD>Sets a breakpoint at exit()
+ <DT><A NAME="options_set_bp_at">Set breakpoint at</A>
+ <DD>Sets a breakpoint at a user-specified locaiton</A>
<DT><A NAME="options_download_dialog">Display Download Dialog</A>
<DD>Displays a dialog showing the progress of the download to
the target section by section
+ <DT><A NAME="options_use_xterm">Use xterm as inferior's tty</A>
+ <DD>Causes insight to open a tty for inferior I/O (unix versions
+ only)
</DL>
<BR>
<H3><A NAME="more_options">More Options</A></H3>
diff --git a/gdb/gdbtk/library/targetselection.itb b/gdb/gdbtk/library/targetselection.itb
index 898992cd127..0de066d45e2 100644
--- a/gdb/gdbtk/library/targetselection.itb
+++ b/gdb/gdbtk/library/targetselection.itb
@@ -1,5 +1,5 @@
# Target selection dialog for Insight.
-# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Red Hat, Inc.
+# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 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
@@ -485,9 +485,12 @@ itcl::body TargetSelection::build_win {} {
entry $f.fr.bp.func -textvariable [pref varname gdb/load/bp_func] -width 20
checkbutton $f.fr.verb -text [gettext "Display Download Dialog"] \
-variable [pref varname gdb/load/$target-verbose]
- checkbutton $f.fr.xterm -text [gettext "Use xterm as inferior's tty"] \
- -variable [pref varname gdb/process/xtermtty] \
- -onvalue yes -offvalue no
+
+ if {$tcl_platform(platform) == "unix"} {
+ checkbutton $f.fr.xterm -text [gettext "Use xterm as inferior's tty"] \
+ -variable [pref varname gdb/process/xtermtty] \
+ -onvalue yes -offvalue no
+ }
if {![pref get gdb/control_target]} {
$f.fr.main configure -state disabled
@@ -585,8 +588,8 @@ itcl::body TargetSelection::build_win {} {
-default active
button $btns.cancel -text [gettext Cancel] -width 7 \
-command [code $this cancel]
- button $btns.help -text [gettext Help] -width 7 -command [code $this help] \
- -state disabled
+ button $btns.help -text [gettext Help] -width 7 -command [code $this help]
+
standard_button_box $btns
bind $btns.ok <Return> "$btns.ok flash; $btns.ok invoke"
bind $btns.cancel <Return> "$btns.cancel flash; $btns.cancel invoke"
@@ -974,6 +977,7 @@ itcl::body TargetSelection::set_check_button {name} {
# METHOD: help - launches context sensitive help.
# ------------------------------------------------------------------
itcl::body TargetSelection::help {} {
+ open_help target.html
}
# ------------------------------------------------------------------