aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2024-05-31 14:25:09 -0600
committerTom Tromey <tom@tromey.com>2024-06-15 20:54:04 -0600
commita6687ef35cda4c85683682a55f75e5fed896f45a (patch)
treed08cc833da9a1cab8804da88b5f2e97654d7b363 /gdb
parent28775f62b963d148b87a0b4a08016f971fd1c4df (diff)
downloadgdb-a6687ef35cda4c85683682a55f75e5fed896f45a.zip
gdb-a6687ef35cda4c85683682a55f75e5fed896f45a.tar.gz
gdb-a6687ef35cda4c85683682a55f75e5fed896f45a.tar.bz2
Make tui_register_info::highlight private
This changes tui_register_info::highlight to be private, renaming it to m_highlight.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/tui/tui-regs.c18
-rw-r--r--gdb/tui/tui-regs.h8
2 files changed, 14 insertions, 12 deletions
diff --git a/gdb/tui/tui-regs.c b/gdb/tui/tui-regs.c
index 43b519a..2be8187 100644
--- a/gdb/tui/tui-regs.c
+++ b/gdb/tui/tui-regs.c
@@ -95,13 +95,13 @@ tui_register_format (const frame_info_ptr &frame, int regnum)
}
/* Compute the register value from the given frame and format it for
- the display. update 'content' and set 'highlight' if the contents
- changed. */
+ the display. Update 'content' and set 'm_highlight' if the
+ contents changed. */
void
tui_register_info::update (const frame_info_ptr &frame)
{
std::string new_content = tui_register_format (frame, m_regno);
- highlight = content != new_content;
+ m_highlight = content != new_content;
content = std::move (new_content);
}
@@ -404,12 +404,11 @@ tui_data_window::check_register_values (const frame_info_ptr &frame)
{
for (tui_register_info &data_item_win : m_regs_content)
{
- bool was_hilighted = data_item_win.highlight;
+ bool was_hilighted = data_item_win.highlighted ();
data_item_win.update (frame);
- /* Register windows whose y == 0 are outside the visible area. */
- if ((data_item_win.highlight || was_hilighted)
+ if ((data_item_win.highlighted () || was_hilighted)
&& data_item_win.visible ())
data_item_win.rerender (handle.get (), m_item_width);
}
@@ -418,12 +417,11 @@ tui_data_window::check_register_values (const frame_info_ptr &frame)
}
}
-/* Display a register in a window. If hilite is TRUE, then the value
- will be displayed in reverse video. */
+/* Display a register in a window. */
void
tui_register_info::rerender (WINDOW *handle, int field_width)
{
- if (highlight)
+ if (m_highlight)
/* We ignore the return value, casting it to void in order to avoid
a compiler warning. The warning itself was introduced by a patch
to ncurses 5.7 dated 2009-08-29, changing this macro to expand
@@ -435,7 +433,7 @@ tui_register_info::rerender (WINDOW *handle, int field_width)
if (content.size () < field_width)
waddstr (handle, n_spaces (field_width - content.size ()));
- if (highlight)
+ if (m_highlight)
/* We ignore the return value, casting it to void in order to avoid
a compiler warning. The warning itself was introduced by a patch
to ncurses 5.7 dated 2009-08-29, changing this macro to expand
diff --git a/gdb/tui/tui-regs.h b/gdb/tui/tui-regs.h
index 69ba107..61bfdd2 100644
--- a/gdb/tui/tui-regs.h
+++ b/gdb/tui/tui-regs.h
@@ -34,7 +34,6 @@ struct tui_register_info
: m_regno (regno)
{
update (frame);
- highlight = false;
}
DISABLE_COPY_AND_ASSIGN (tui_register_info);
@@ -48,14 +47,19 @@ struct tui_register_info
bool visible () const
{ return y > 0; }
+ bool highlighted () const
+ { return m_highlight; }
+
/* Location. */
int x = 0;
int y = 0;
- bool highlight = false;
std::string content;
private:
+ /* True if currently highlighted. */
+ bool m_highlight = false;
+
/* The register number. */
const int m_regno;
};