From: Eli Zaretskii <eliz@gnu.org>
To: Tom Tromey <tom@tromey.com>
Cc: midenok@gmail.com, gdb@sourceware.org, gdb-patches@sourceware.org
Subject: Re: GDB 9 TUI mode broken
Date: Sat, 22 Feb 2020 11:33:00 -0000 [thread overview]
Message-ID: <83mu9aj1pj.fsf@gnu.org> (raw)
In-Reply-To: <835zg5m7ib.fsf@gnu.org> (message from Eli Zaretskii on Mon, 17 Feb 2020 19:46:36 +0200)
> Date: Mon, 17 Feb 2020 19:46:36 +0200
> From: Eli Zaretskii <eliz@gnu.org>
> CC: gdb@sourceware.org
>
> > From: Aleksey Midenkov <midenok@gmail.com>
> > Date: Mon, 17 Feb 2020 19:26:07 +0300
> >
> > Now the window molders away after `winheight src +8` command.
>
> This looks like a bug, and is probably unrelated to colors. Suggest
> to make a bug report.
The patch below seems to fix some of the problem, but not all of it:
the position of the status line (the one that shows the process
information) is not updated correctly.
Tom, where's the position update of the status line supposed to be
handled?
And btw, the meaning of the 'locator' object in tui_adjust_win_heights
is unclear: to which window does it pertain, and what is the
significance of this line:
TUI_CMD_WIN->origin.y = locator->origin.y + 1;
I think we could use some additional comments in tui-stack.c or
tui-stack.h, to explain what is the meaning and expected use of
tui_locator_window.
--- gdb/tui/tui-win.c~0 2020-02-08 14:50:14.000000000 +0200
+++ gdb/tui/tui-win.c 2020-02-22 13:28:37.003625000 +0200
@@ -1077,20 +1077,25 @@ tui_adjust_win_heights (struct tui_win_i
{
struct tui_win_info *src_win_info;
- primary_win_info->resize (new_height, width,
- 0, primary_win_info->origin.y);
if (primary_win_info->type == CMD_WIN)
{
win_info = *(tui_source_windows ().begin ());
src_win_info = win_info;
+ primary_win_info->resize (new_height, width,
+ 0,
+ primary_win_info->origin.y + diff);
+ win_info->resize (win_info->height + diff, width,
+ 0, win_info->origin.y);
}
else
{
win_info = tui_win_list[CMD_WIN];
src_win_info = primary_win_info;
- }
+ primary_win_info->resize (new_height, width,
+ 0, primary_win_info->origin.y);
win_info->resize (win_info->height + diff, width,
- 0, win_info->origin.y);
+ 0, win_info->origin.y - diff);
+ }
TUI_CMD_WIN->origin.y = locator->origin.y + 1;
if ((src_win_info->type == SRC_WIN
|| src_win_info->type == DISASSEM_WIN))
next parent reply other threads:[~2020-02-22 11:33 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CAF8BazBni=TZWTc5fbpdHU5bv1eM=24xpML46GCC2u4pFTkSAw@mail.gmail.com>
[not found] ` <835zg5m7ib.fsf@gnu.org>
2020-02-22 11:33 ` Eli Zaretskii [this message]
2020-02-22 15:55 ` Simon Marchi
2020-02-22 16:04 ` Eli Zaretskii
2020-02-22 16:37 ` Eli Zaretskii
2020-02-22 18:06 ` Tom Tromey
2020-02-22 18:05 ` Tom Tromey
2020-02-22 18:23 ` Eli Zaretskii
2020-02-22 18:46 ` Eli Zaretskii
2020-02-22 19:10 ` Tom Tromey
2020-02-22 20:19 ` Eli Zaretskii
2020-02-22 19:02 ` Tom Tromey
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=83mu9aj1pj.fsf@gnu.org \
--to=eliz@gnu.org \
--cc=gdb-patches@sourceware.org \
--cc=gdb@sourceware.org \
--cc=midenok@gmail.com \
--cc=tom@tromey.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox