-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathPythonConsolePad.cs
More file actions
44 lines (37 loc) · 1022 Bytes
/
PythonConsolePad.cs
File metadata and controls
44 lines (37 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (c) 2010 Joe Moorhouse
using ICSharpCode.AvalonEdit;
using System.Windows.Media;
namespace PythonConsoleControl
{
public class PythonConsolePad
{
private PythonTextEditor pythonTextEditor;
private TextEditor textEditor;
private PythonConsoleHost host;
public PythonConsolePad()
{
textEditor = new TextEditor();
pythonTextEditor = new PythonTextEditor(textEditor);
host = new PythonConsoleHost(pythonTextEditor);
host.Run();
textEditor.FontFamily = new FontFamily("Consolas");
textEditor.FontSize = 12;
}
public TextEditor Control
{
get { return textEditor; }
}
public PythonConsoleHost Host
{
get { return host; }
}
public PythonConsole Console
{
get { return host.Console; }
}
public void Dispose()
{
host.Dispose();
}
}
}