FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
NavisPythonShell/NavisPythonShell/ConsoleOptions.cs at master · dimven/NavisPythonShell · GitHub
dimven
/
NavisPythonShell
Public
Notifications
You must be signed in to change notification settings
Fork
19
Star
84
Code
Issues
11
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
NavisPythonShell
/
NavisPythonShell
/
ConsoleOptions.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
74 lines (64 loc) · 2.05 KB
Breadcrumbs
NavisPythonShell
/
NavisPythonShell
/
ConsoleOptions.cs
Copy path
File metadata and controls
74 lines (64 loc) · 2.05 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Copyright (c) 2010 Joe Moorhouse
using
System
;
using
System
.
Collections
.
Generic
;
using
System
.
Linq
;
using
System
.
Text
;
using
System
.
ComponentModel
;
using
ICSharpCode
.
AvalonEdit
;
using
System
.
Windows
.
Media
;
using
PythonConsoleControl
;
namespace
NavisPythonShell
{
public
class
ConsoleOptions
{
TextEditor
textEditor
;
PythonConsolePad
pad
;
public
ConsoleOptions
(
PythonConsolePad
pad
)
{
this
.
textEditor
=
pad
.
Control
;
this
.
pad
=
pad
;
}
[
DefaultValue
(
false
)
]
public
bool
ShowSpaces
{
get
{
return
textEditor
.
TextArea
.
Options
.
ShowSpaces
;
}
set
{
textEditor
.
TextArea
.
Options
.
ShowSpaces
=
value
;
}
}
[
DefaultValue
(
false
)
]
public
bool
ShowTabs
{
get
{
return
textEditor
.
TextArea
.
Options
.
ShowTabs
;
}
set
{
textEditor
.
TextArea
.
Options
.
ShowTabs
=
value
;
}
}
[
DefaultValue
(
false
)
]
public
bool
AllowScrollBelowDocument
{
get
{
return
textEditor
.
TextArea
.
Options
.
AllowScrollBelowDocument
;
}
set
{
textEditor
.
TextArea
.
Options
.
AllowScrollBelowDocument
=
value
;
}
}
[
DefaultValue
(
"Consolas"
)
]
public
string
FontFamily
{
get
{
return
textEditor
.
TextArea
.
FontFamily
.
ToString
(
)
;
}
set
{
textEditor
.
TextArea
.
FontFamily
=
new
FontFamily
(
value
)
;
}
}
[
DefaultValue
(
12.0
)
]
public
double
FontSize
{
get
{
return
textEditor
.
TextArea
.
FontSize
;
}
set
{
textEditor
.
TextArea
.
FontSize
=
value
;
}
}
[
DefaultValue
(
false
)
]
public
bool
FullAutocompletion
{
get
{
return
pad
.
Console
.
AllowFullAutocompletion
;
}
set
{
pad
.
Console
.
AllowFullAutocompletion
=
value
;
}
}
[
DefaultValue
(
true
)
]
public
bool
CtrlSpaceAutocompletion
{
get
{
return
pad
.
Console
.
AllowCtrlSpaceAutocompletion
;
}
set
{
pad
.
Console
.
AllowCtrlSpaceAutocompletion
=
value
;
}
}
}
}
Back
|
FazBrowse Home
|
New Git URL