From: "Hannes Domani via gdb-patches" <gdb-patches@sourceware.org>
To: GDB Patches <gdb-patches@sourceware.org>
Subject: Re: [PATCH] Improve/fix the TUI's current source line highlight
Date: Fri, 15 Mar 2019 16:39:00 -0000 [thread overview]
Message-ID: <186859064.9289078.1552667917410@mail.yahoo.com> (raw)
In-Reply-To: <6ada07d6-ff84-e215-19ff-0a17563390c6@redhat.com>
Am Donnerstag, 14. März 2019, 18:47:56 MEZ hat Pedro Alves <palves@redhat.com> Folgendes geschrieben:
> WDYT?
The result looks very nice.
> +/* If true, we're highlighting the current source line in reverse
> + video mode. */
> +static bool reverse_mode_p = true;
Shouldn't this variable be initialized to false?
Weird things happen on my end with true (sometimes the cmd window contents are reversed).
Also, I had to add the following to make it work on windows
(but beware, I'm using pdcurses, not ncurses, and I don't know if ncurses
for windows needs this as well):
--- a/gdb/tui/tui-io.c
+++ b/gdb/tui/tui-io.c
@@ -369,6 +386,17 @@ apply_ansi_escape (WINDOW *w, const char *buf)
if (reverse_mode_p)
{
+#if defined(__MINGW32__)
+ if (style.get_foreground ().is_basic ()
+ && style.get_foreground ().get_value ()
+ == (ncurses_norm_attr & 15))
+ style.set_fg (ui_file_style::NONE);
+ if (style.get_background ().is_basic ()
+ && style.get_background ().get_value ()
+ == ((ncurses_norm_attr >> 4) & 15))
+ style.set_bg (ui_file_style::NONE);
+#endif
+
/* We want to reverse _only_ the default foreground/background
colors. If the foreground color is not the default (because
the text was styled), we want to leave it as is. If e.g.,
next prev parent reply other threads:[~2019-03-15 16:39 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-14 17:47 Pedro Alves
2019-03-14 19:55 ` John Baldwin
2019-03-14 20:10 ` Pedro Alves
2019-03-15 16:39 ` Hannes Domani via gdb-patches [this message]
2019-03-15 16:45 ` Pedro Alves
2019-03-17 16:07 ` Eli Zaretskii
2019-03-17 16:46 ` Hannes Domani via gdb-patches
2019-03-17 16:53 ` Eli Zaretskii
2019-03-18 14:45 ` Pedro Alves
2019-03-15 21:41 ` Tom Tromey
[not found] <24ebd86d-ac47-bc8d-042a-e29ae2b4301e@redhat.com>
2019-03-14 19:49 ` Eli Zaretskii
2019-03-14 20:14 ` Pedro Alves
2019-03-17 15:57 ` Eli Zaretskii
2019-03-18 14:42 ` Pedro Alves
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=186859064.9289078.1552667917410@mail.yahoo.com \
--to=gdb-patches@sourceware.org \
--cc=ssbssa@yahoo.de \
/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