source: EcnlProtoTool/trunk/webapp/webmrbc/XTerm.cs@ 270

Last change on this file since 270 was 270, checked in by coas-nagasima, 7 years ago

mruby版ECNLプロトタイピング・ツールを追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-csharp
File size: 749 bytes
Line 
1using System;
2using Bridge;
3using Bridge.Html5;
4
5[External]
6public class Terminal
7{
8 public Terminal(object setting)
9 {
10 throw new NotImplementedException();
11 }
12
13 internal void on(string v, Action<object> action)
14 {
15 throw new NotImplementedException();
16 }
17
18 internal void on(string v, Action<string> action)
19 {
20 throw new NotImplementedException();
21 }
22
23 internal void open(HTMLElement termElement)
24 {
25 throw new NotImplementedException();
26 }
27
28 internal void write(string v)
29 {
30 throw new NotImplementedException();
31 }
32
33 internal void fit()
34 {
35 throw new NotImplementedException();
36 }
37}
38
39public class TerminalOption
40{
41 internal int cols;
42 internal bool cursorBlink;
43 internal int rows;
44 internal bool screenKeys;
45 internal bool useStyle;
46}
Note: See TracBrowser for help on using the repository browser.