mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
Comments
This commit is contained in:
6
Core.cs
6
Core.cs
@@ -1,5 +1,9 @@
|
||||
//
|
||||
//
|
||||
// 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
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
//
|
||||
// Driver.cs: Abstract and concrete interfaces to the console (curses or console)
|
||||
//
|
||||
// Authors:
|
||||
// Miguel de Icaza (miguel@gnome.org)
|
||||
//
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Mono.Terminal;
|
||||
|
||||
6
Event.cs
6
Event.cs
@@ -1,3 +1,9 @@
|
||||
//
|
||||
// Evemts.cs: Events, Key mappings
|
||||
//
|
||||
// Authors:
|
||||
// Miguel de Icaza (miguel@gnome.org)
|
||||
//
|
||||
namespace Terminal {
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -44,6 +44,7 @@
|
||||
<Compile Include="Views\Button.cs" />
|
||||
<Compile Include="Views\Checkbox.cs" />
|
||||
<Compile Include="Views\Menu.cs" />
|
||||
<Compile Include="Views\ScrollView.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="mono-curses.dll">
|
||||
|
||||
@@ -1,4 +1,11 @@
|
||||
using System;
|
||||
//
|
||||
// Button.cs: Button control
|
||||
//
|
||||
// Authors:
|
||||
// Miguel de Icaza (miguel@gnome.org)
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
using System;
|
||||
//
|
||||
// Checkbox.cs: Checkbox control
|
||||
//
|
||||
// Authors:
|
||||
// Miguel de Icaza (miguel@gnome.org)
|
||||
//
|
||||
using System;
|
||||
|
||||
namespace Terminal {
|
||||
public class CheckBox : View {
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
|
||||
//
|
||||
// Label.cs: Label control
|
||||
//
|
||||
// Authors:
|
||||
// Miguel de Icaza (miguel@gnome.org)
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
//
|
||||
// Menu.cs: application menus and submenus
|
||||
//
|
||||
// Authors:
|
||||
// Miguel de Icaza (miguel@gnome.org)
|
||||
//
|
||||
|
||||
8
Views/ScrollView.cs
Normal file
8
Views/ScrollView.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using System;
|
||||
namespace Terminal {
|
||||
public class ScrollView {
|
||||
public ScrollView ()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,11 @@
|
||||
using System;
|
||||
//
|
||||
// TextField.cs: single-line text editor with Emacs keybindings
|
||||
//
|
||||
// Authors:
|
||||
// Miguel de Icaza (miguel@gnome.org)
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user