Add horizontal splitting to TUI layout
[deliverable/binutils-gdb.git] / gdb / tui / tui-data.h
index 2badcd4f1a65486cc5c1fb0168f18c98ea10d360..e15ac585c980c8cfb04cb66f17b4b72babbe2327 100644 (file)
@@ -82,6 +82,15 @@ public:
   /* Compute the minimum height of this window.  */
   virtual int min_height () const = 0;
 
+  /* Compute the maximum width of this window.  */
+  int max_width () const;
+
+  /* Compute the minimum width of this window.  */
+  int min_width () const
+  {
+    return 3;
+  }
+
   /* Return true if this window can be boxed.  */
   virtual bool can_box () const
   {
This page took 0.023022 seconds and 4 git commands to generate.