// // FrameView.cs: Frame control // // Authors: // Miguel de Icaza (miguel@gnome.org) // using System; using System.Collections; using System.Collections.Generic; using NStack; namespace Terminal.Gui { /// /// The FrameView is a container frame that draws a frame around the contents /// public class FrameView : View { View contentView; ustring title; /// /// The title to be displayed for this window. /// /// The title. public ustring Title { get => title; set { title = value; SetNeedsDisplay (); } } class ContentView : View { public ContentView (Rect frame) : base (frame) { } public ContentView () : base () { } } /// /// Initializes a new instance of the class with /// an absolute position and a title. /// /// Frame. /// Title. public FrameView (Rect frame, ustring title) : base (frame) { var cFrame = new Rect (1, 1 , frame.Width - 2, frame.Height - 2); contentView = new ContentView (cFrame); base.Add (contentView); Title = title; } /// /// Initializes a new instance of the class with /// a title and the result is suitable to have its X, Y, Width and Height properties computed. /// /// Title. public FrameView (ustring title) { contentView = new ContentView () { X = 1, Y = 1, Width = Dim.Fill (2), Height = Dim.Fill (2) }; base.Add (contentView); Title = title; } void DrawFrame () { DrawFrame (new Rect (0, 0, Frame.Width, Frame.Height), 0, fill: true); } /// /// Add the specified view to the ContentView. /// /// View to add to the window. public override void Add (View view) { contentView.Add (view); if (view.CanFocus) CanFocus = true; } /// /// Removes a widget from this container. /// /// /// public override void Remove (View view) { if (view == null) return; SetNeedsDisplay (); var touched = view.Frame; contentView.Remove (view); if (contentView.InternalSubviews.Count < 1) this.CanFocus = false; } /// /// Removes all widgets from this container. /// /// /// public override void RemoveAll() { contentView.RemoveAll(); } public override void Redraw (Rect bounds) { if (!NeedDisplay.IsEmpty) { Driver.SetAttribute (ColorScheme.Normal); DrawFrame (); if (HasFocus) Driver.SetAttribute (ColorScheme.Normal); var width = Frame.Width; if (Title != null && width > 4) { Move (1, 0); Driver.AddRune (' '); var str = Title.Length > width ? Title [0, width - 4] : Title; Driver.AddStr (str); Driver.AddRune (' '); } Driver.SetAttribute (ColorScheme.Normal); } contentView.Redraw (contentView.Bounds); ClearNeedsDisplay (); } } }