This introduces a new method, tui_gen_win_info::min_height, to fetch
the minimum height of a window. This is used in the subsequent
unified layout patch.
gdb/ChangeLog
2019-12-11 Tom Tromey <tom@tromey.com>
* tui/tui-stack.h (struct tui_locator_window) <min_height>:
Implement.
* tui/tui-regs.h (struct tui_data_item_window) <min_height>:
Implement.
* tui/tui-data.h (struct tui_gen_win_info) <min_height>: New
method.
(struct tui_win_info) <min_height>: Implement.
Change-Id: Id33baffdf041fde072e15c1ff89b75f8b8118adb
+2019-12-11 Tom Tromey <tom@tromey.com>
+
+ * tui/tui-stack.h (struct tui_locator_window) <min_height>:
+ Implement.
+ * tui/tui-regs.h (struct tui_data_item_window) <min_height>:
+ Implement.
+ * tui/tui-data.h (struct tui_gen_win_info) <min_height>: New
+ method.
+ (struct tui_win_info) <min_height>: Implement.
+
2019-12-11 Tom Tromey <tom@tromey.com>
* tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
/* Compute the maximum height of this window. */
virtual int max_height () const = 0;
+ /* Compute the minimum height of this window. */
+ virtual int min_height () const = 0;
+
/* Return true if this window can be boxed. */
virtual bool can_box () const
{
int max_height () const override;
+ int min_height () const override
+ {
+ return MIN_WIN_HEIGHT;
+ }
+
/* Called after the tab width has been changed. */
virtual void update_tab_width ()
{
return 1;
}
+ int min_height () const override
+ {
+ return 1;
+ }
+
const char *name = nullptr;
/* The register number, or data display number. */
int item_no = -1;
return 1;
}
+ int min_height () const override
+ {
+ return 1;
+ }
+
void rerender () override;
/* Update the locator, with the provided arguments.