source: EcnlProtoTool/trunk/webapp/webmrbc/Ace.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: 1.4 KB
Line 
1using System;
2using Bridge;
3using Bridge.jQuery2;
4
5[External]
6public class ace
7{
8 internal static AceEditor edit(string v)
9 {
10 throw new NotImplementedException();
11 }
12}
13
14[External]
15public class AceEditor : jQuery
16{
17 public AceSession session;
18
19 internal AceSession getSession()
20 {
21 return session;
22 }
23
24 internal string getValue()
25 {
26 throw new NotImplementedException();
27 }
28
29 internal void setValue(string responseText)
30 {
31 throw new NotImplementedException();
32 }
33
34 internal void moveCursorTo(int x, int y)
35 {
36 throw new NotImplementedException();
37 }
38
39 internal void setTheme(string v)
40 {
41 throw new NotImplementedException();
42 }
43
44 internal void setShowInvisibles(bool v)
45 {
46 throw new NotImplementedException();
47 }
48
49 internal void gotoLine(int v1, int v2)
50 {
51 throw new NotImplementedException();
52 }
53
54 internal void setReadOnly(bool v)
55 {
56 throw new NotImplementedException();
57 }
58}
59
60[External]
61public class AceSession
62{
63 internal void setMode(string dynamic)
64 {
65 throw new NotImplementedException();
66 }
67
68 internal void setTabSize(int v)
69 {
70 throw new NotImplementedException();
71 }
72
73 internal void setUseSoftTabs(bool v)
74 {
75 throw new NotImplementedException();
76 }
77
78 internal AceDocument getDocument()
79 {
80 throw new NotImplementedException();
81 }
82}
83
84[External]
85public class AceDocument
86{
87 internal void setValue(string v)
88 {
89 throw new NotImplementedException();
90 }
91}
Note: See TracBrowser for help on using the repository browser.