-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #160 from africanmathsinitiative/master
Updating master
- Loading branch information
Showing
48 changed files
with
2,766 additions
and
1,876 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
theme: jekyll-theme-minimal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
theme: jekyll-theme-minimal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
' Instat-R | ||
' Copyright (C) 2015 | ||
' | ||
' This program is free software: you can redistribute it and/or modify | ||
' it under the terms of the GNU General Public License as published by | ||
' the Free Software Foundation, either version 3 of the License, or | ||
' (at your option) any later version. | ||
' | ||
' This program is distributed in the hope that it will be useful, | ||
' but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
' GNU General Public License for more details. | ||
' | ||
' You should have received a copy of the GNU General Public License k | ||
' along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
Public Class clsInstatOptionsDefaults | ||
Public Shared ReadOnly DEFAULTbIncludeRDefaultParameters As Boolean = False | ||
Public Shared ReadOnly DEFAULTbCommandsinOutput As Boolean = True | ||
Public Shared ReadOnly DEFAULTbIncludeCommentDefault As Boolean = True | ||
Public Shared ReadOnly DEFAULTfntOutput As Font = New Font(FontFamily.GenericMonospace, 11, FontStyle.Regular) | ||
Public Shared ReadOnly DEFAULTclrOutput As Color = Color.Blue | ||
Public Shared ReadOnly DEFAULTfntComment As Font = New Font(FontFamily.GenericSansSerif, 11, FontStyle.Regular) | ||
Public Shared ReadOnly DEFAULTclrComment As Color = Color.Green | ||
Public Shared ReadOnly DEFAULTfntScript As Font = New Font(FontFamily.GenericSansSerif, 11, FontStyle.Regular) | ||
Public Shared ReadOnly DEFAULTclrScript As Color = Color.Black | ||
Public Shared ReadOnly DEFAULTfntEditor As Font = New Font(FontFamily.GenericSansSerif, 10, FontStyle.Regular) | ||
Public Shared ReadOnly DEFAULTclrEditor As Color = Color.Black | ||
Public Shared ReadOnly DEFAULTiPreviewRows As Integer = 10 | ||
Public Shared ReadOnly DEFAULTiMaxRows As Integer = 1000 | ||
Public Shared ReadOnly DEFAULTiMaxCols As Integer = 30 | ||
Public Shared ReadOnly DEFAULTstrComment As String = "code generated by the dialog" | ||
Public Shared ReadOnly DEFAULTstrGraphDisplayOption As String = "view_output_window" | ||
Public Shared ReadOnly DEFAULTbChangeDataFrame As Boolean = False | ||
'TODO is this sensible? | ||
Public Shared ReadOnly DEFAULTstrLanguageCultureCode As String = Threading.Thread.CurrentThread.CurrentCulture.Name | ||
Public Shared ReadOnly DEFAULTstrWorkingDirectory As String = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) | ||
Public Shared ReadOnly DEFAULTlstColourPalette As List(Of Color) = ({Color.Aqua, Color.Gray, Color.LightGreen, Color.AliceBlue, Color.Maroon, Color.Green, Color.LightPink, Color.LightSkyBlue, Color.Brown, Color.MediumPurple, Color.White}).ToList | ||
Public Shared ReadOnly DEFAULTiDigits As Integer = 4 | ||
Public Shared ReadOnly DEFAULTbShowSignifStars As Boolean = False | ||
End Class |
Oops, something went wrong.