Introduce set_highlight method
authorTom Tromey <tom@tromey.com>
Sun, 16 Jun 2019 21:28:03 +0000 (15:28 -0600)
committerTom Tromey <tom@tromey.com>
Tue, 25 Jun 2019 13:48:36 +0000 (07:48 -0600)
This introduces the tui_win_info::set_highlight method, and changes
the highlighting-related code to use bool rather than int.

gdb/ChangeLog
2019-06-25  Tom Tromey  <tom@tromey.com>

* tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win):
Update.
* tui/tui-layout.c (make_command_window)
(show_source_disasm_command, show_data, init_and_make_win)
(show_source_or_disasm_and_command): Update.
* tui/tui-data.h (struct tui_win_info) <set_highlight>: New
method.
<can_highight, is_highlighted>: Now bool.
(tui_set_win_highlight): Don't declare.
* tui/tui-data.c (tui_set_win_highlight): Remove.

gdb/ChangeLog
gdb/tui/tui-data.c
gdb/tui/tui-data.h
gdb/tui/tui-layout.c
gdb/tui/tui-wingeneral.c

index 0d663746872e53f94a2eab280b0ec01c107ea2a3..71fe526d358138eda6a8bea4e4a2fd1f7606dbd3 100644 (file)
@@ -1,3 +1,16 @@
+2019-06-25  Tom Tromey  <tom@tromey.com>
+
+       * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win):
+       Update.
+       * tui/tui-layout.c (make_command_window)
+       (show_source_disasm_command, show_data, init_and_make_win)
+       (show_source_or_disasm_and_command): Update.
+       * tui/tui-data.h (struct tui_win_info) <set_highlight>: New
+       method.
+       <can_highight, is_highlighted>: Now bool.
+       (tui_set_win_highlight): Don't declare.
+       * tui/tui-data.c (tui_set_win_highlight): Remove.
+
 2019-06-25  Tom Tromey  <tom@tromey.com>
 
        * tui/tui-wingeneral.c (make_visible): Remove check of window
index 3298eb8248c34c6f8e8a87980f60835a34d6fb90..a351113efb974204d94beed47d5f815382a9919c 100644 (file)
@@ -69,14 +69,6 @@ tui_win_is_auxillary (enum tui_win_type win_type)
   return (win_type > MAX_MAJOR_WINDOWS);
 }
 
-void
-tui_set_win_highlight (struct tui_win_info *win_info, 
-                      int highlight)
-{
-  if (win_info != NULL)
-    win_info->is_highlighted = highlight;
-}
-
 /******************************************
 ** ACCESSORS & MUTATORS FOR PRIVATE DATA
 ******************************************/
index 08b0dad87244a85bcf71d08b33aa44a1ed14fa2e..572fea548310e6c41d91efecde105763b9c8327a 100644 (file)
@@ -276,6 +276,12 @@ public:
   /* Compute the maximum height of this window.  */
   virtual int max_height () const;
 
+  /* Set whether this window is highglighted.  */
+  void set_highlight (bool highlight)
+  {
+    is_highlighted = highlight;
+  }
+
   /* Methods to scroll the contents of this window.  Note that they
      are named with "_scroll" coming at the end because the more
      obvious "scroll_forward" is defined as a macro in term.h.  */
@@ -287,10 +293,10 @@ public:
   struct tui_gen_win_info generic;     /* General window information.  */
 
   /* Can this window ever be highlighted?  */
-  int can_highlight = 0;
+  bool can_highlight = false;
 
   /* Is this window highlighted?  */
-  int is_highlighted = 0;
+  bool is_highlighted = false;
 };
 
 /* The base class for all source-like windows, namely the source and
@@ -447,8 +453,6 @@ protected:
 };
 
 extern int tui_win_is_auxillary (enum tui_win_type win_type);
-extern void tui_set_win_highlight (struct tui_win_info *win_info,
-                                  int highlight);
 
 
 /* Global Data.  */
index 9b2bd0b7b574341dceeb72dc66a14057930f9d60..d060c5c7807710c61008c1812e7d4785ef324dbb 100644 (file)
@@ -546,7 +546,7 @@ make_command_window (int height, int origin_y)
                                                 0,
                                                 origin_y,
                                                 DONT_BOX_WINDOW);
-  result->can_highlight = FALSE;
+  result->can_highlight = false;
   return result;
 }
 
@@ -627,7 +627,7 @@ show_source_disasm_command (void)
                             TUI_SRC_WIN->generic.width,
                             TUI_SRC_WIN->execution_info->width,
                             0);
-         TUI_SRC_WIN->can_highlight = TRUE;
+         TUI_SRC_WIN->can_highlight = true;
          init_gen_win_info (TUI_SRC_WIN->execution_info,
                             EXEC_INFO_WIN,
                             src_height,
@@ -677,7 +677,7 @@ show_source_disasm_command (void)
                             3,
                             0,
                             src_height - 1);
-         TUI_DISASM_WIN->can_highlight = TRUE;
+         TUI_DISASM_WIN->can_highlight = true;
          tui_make_visible (&TUI_DISASM_WIN->generic);
          tui_make_visible (TUI_DISASM_WIN->execution_info);
        }
@@ -698,7 +698,7 @@ show_source_disasm_command (void)
                             TUI_CMD_WIN->generic.width,
                             0,
                             TUI_CMD_WIN->generic.origin.y);
-         TUI_CMD_WIN->can_highlight = FALSE;
+         TUI_CMD_WIN->can_highlight = false;
          tui_make_visible (&TUI_CMD_WIN->generic);
        }
       tui_refresh_win (&TUI_CMD_WIN->generic);
@@ -723,7 +723,7 @@ show_data (enum tui_layout_type new_layout)
   tui_make_all_invisible ();
   tui_make_invisible (locator);
   make_data_window (&tui_win_list[DATA_WIN], data_height, 0);
-  TUI_DATA_WIN->can_highlight = TRUE;
+  TUI_DATA_WIN->can_highlight = true;
   if (new_layout == SRC_DATA_COMMAND)
     win_type = SRC_WIN;
   else
@@ -835,9 +835,9 @@ init_and_make_win (void *opaque_win_info,
   if (!tui_win_is_auxillary (win_type))
     {
       if (generic->type == CMD_WIN)
-       ((struct tui_win_info *) opaque_win_info)->can_highlight = FALSE;
+       ((struct tui_win_info *) opaque_win_info)->can_highlight = false;
       else
-       ((struct tui_win_info *) opaque_win_info)->can_highlight = TRUE;
+       ((struct tui_win_info *) opaque_win_info)->can_highlight = true;
     }
   tui_make_window (generic, box_it);
 
@@ -942,7 +942,7 @@ show_source_or_disasm_and_command (enum tui_layout_type layout_type)
                             3,
                             0,
                             0);
-         base->can_highlight = TRUE;
+         base->can_highlight = true;
          tui_make_visible (&(*win_info_ptr)->generic);
          tui_make_visible (base->execution_info);
        }
@@ -966,7 +966,7 @@ show_source_or_disasm_and_command (enum tui_layout_type layout_type)
                             TUI_CMD_WIN->generic.width,
                             TUI_CMD_WIN->generic.origin.x,
                             TUI_CMD_WIN->generic.origin.y);
-         TUI_CMD_WIN->can_highlight = FALSE;
+         TUI_CMD_WIN->can_highlight = false;
          tui_make_visible (&TUI_CMD_WIN->generic);
        }
       tui_set_current_layout_to (layout_type);
index 73d77ce19f35ec70ee7f7f1991859724d7a6f37b..c17782894424cbd99dd39690b4dc91d1516ec142 100644 (file)
@@ -114,7 +114,7 @@ tui_unhighlight_win (struct tui_win_info *win_info)
     {
       box_win (&win_info->generic, NO_HILITE);
       wrefresh (win_info->generic.handle);
-      tui_set_win_highlight (win_info, 0);
+      win_info->set_highlight (false);
     }
 }
 
@@ -128,7 +128,7 @@ tui_highlight_win (struct tui_win_info *win_info)
     {
       box_win (&win_info->generic, HILITE);
       wrefresh (win_info->generic.handle);
-      tui_set_win_highlight (win_info, 1);
+      win_info->set_highlight (true);
     }
 }
 
This page took 0.033979 seconds and 4 git commands to generate.