Comments
Patch
@@ -1,5 +1,10 @@
2019-11-12 Tom Tromey <tom@tromey.com>
+ * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
+ (struct tui_win_info) <can_box>: Update.
+
+2019-11-12 Tom Tromey <tom@tromey.com>
+
* tui/tui-stack.h (struct tui_locator_window) <max_height>: New
method.
* tui/tui-regs.h (struct tui_data_item_window) <max_height>: New
@@ -85,6 +85,12 @@
/* Compute the maximum height of this window. */
virtual int max_height () const = 0;
+ /* Return true if this window can be boxed. */
+ virtual bool can_box () const
+ {
+ return false;
+ }
+
/* Resize this window. The parameters are used to set the window's
size and position. */
virtual void resize (int height, int width,
@@ -203,7 +209,7 @@
return true;
}
- virtual bool can_box () const
+ bool can_box () const override
{
return true;
}