//
// Core.cs: The core engine for gui.cs
//
// Authors:
// Miguel de Icaza (miguel@gnome.org)
//
// Pending:
// - Check for NeedDisplay on the hierarchy and repaint
// - Layout support
// - "Colors" type or "Attributes" type?
// - What to surface as "BackgroundCOlor" when clearing a window, an attribute or colors?
//
// Optimizations
// - Add rendering limitation to the exposed area
using System;
namespace Terminal.Gui {
///
/// Event arguments for the event.
///
public class ResizedEventArgs : EventArgs {
///
/// The number of rows in the resized terminal.
///
public int Rows { get; set; }
///
/// The number of columns in the resized terminal.
///
public int Cols { get; set; }
}
}