Reformatting.

This commit is contained in:
BDisp
2023-03-17 17:08:37 +00:00
parent df3a012b77
commit 663a92dd97
9 changed files with 5 additions and 20 deletions

View File

@@ -14,5 +14,5 @@ namespace Terminal.Gui.Configuration {
public ConfigurationManagerEventArgs ()
{
}
}
}
}

View File

@@ -21,5 +21,4 @@ namespace Terminal.Gui {
/// </summary>
public bool Handled { get; set; } = false;
}
}

View File

@@ -1,14 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Terminal.Gui {
/// <summary>
/// Args for events that describe a change in <see cref="MouseFlags"/>
/// </summary>
public class MouseFlagsChangedEventArgs : EventArgs{
public class MouseFlagsChangedEventArgs : EventArgs {
/// <summary>
/// Creates a new instance of the <see cref="MouseFlagsChangedEventArgs"/> class.

View File

@@ -1,14 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Terminal.Gui {
/// <summary>
/// Event args for events which relate to a single <see cref="Point"/>
/// </summary>
public class PointEventArgs : EventArgs{
public class PointEventArgs : EventArgs {
/// <summary>
/// Creates a new instance of the <see cref="PointEventArgs"/> class

View File

@@ -3,7 +3,7 @@
namespace Terminal.Gui {
/// <summary>
/// Args for events about about Size (e.g. Resized)
/// Args for events about Size (e.g. Resized)
/// </summary>
public class SizeChangedEventArgs : EventArgs {

View File

@@ -30,4 +30,3 @@ namespace Terminal.Gui {
}
}
}

View File

@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Terminal.Gui {
/// <summary>

View File

@@ -5,7 +5,7 @@ using Rune = System.Rune;
namespace Terminal.Gui {
partial class HistoryText {
public class HistoryTextItem : EventArgs{
public class HistoryTextItem : EventArgs {
public List<List<Rune>> Lines;
public Point CursorPosition;
public LineStatus LineStatus;

View File

@@ -32,5 +32,4 @@ namespace Terminal.Gui {
MouseEvent = mouseEvent;
}
}
}