summaryrefslogtreecommitdiff
path: root/grapher/Layouts/DefaultLayout.cs
diff options
context:
space:
mode:
Diffstat (limited to 'grapher/Layouts/DefaultLayout.cs')
-rw-r--r--grapher/Layouts/DefaultLayout.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/grapher/Layouts/DefaultLayout.cs b/grapher/Layouts/DefaultLayout.cs
new file mode 100644
index 0000000..095afdf
--- /dev/null
+++ b/grapher/Layouts/DefaultLayout.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace grapher.Layouts
+{
+ public class DefaultLayout : LayoutBase
+ {
+ public DefaultLayout()
+ : base()
+ {
+ Name = "Default";
+ Index = 0;
+ ShowOptions = new bool[] { true, true, true, true };
+ OptionNames = new string[] { Offset, Acceleration, $"{Limit}\\{Exponent}", Midpoint };
+ ButtonEnabled = false;
+ }
+ }
+}