diff options
| author | Jacob Palecki <[email protected]> | 2021-01-10 23:49:28 -0800 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-01-10 23:49:28 -0800 |
| commit | de6b18db8226650cee9726c4694931bdc4b89fad (patch) | |
| tree | c5bffd4d1eaad53842394c92d4907acb65c6ff84 /grapher/Form1.cs | |
| parent | Add to stigma, directional to settings (diff) | |
| download | rawaccel-de6b18db8226650cee9726c4694931bdc4b89fad.tar.xz rawaccel-de6b18db8226650cee9726c4694931bdc4b89fad.zip | |
Implement direcitonality UI
Diffstat (limited to 'grapher/Form1.cs')
| -rw-r--r-- | grapher/Form1.cs | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/grapher/Form1.cs b/grapher/Form1.cs index 0c12b86..06f76f1 100644 --- a/grapher/Form1.cs +++ b/grapher/Form1.cs @@ -64,8 +64,6 @@ namespace grapher toggleButton, showVelocityGainToolStripMenuItem, showLastMouseMoveToolStripMenuItem, - wholeVectorToolStripMenuItem, - byVectorComponentToolStripMenuItem, gainCapToolStripMenuItem, legacyCapToolStripMenuItem, gainOffsetToolStripMenuItem, @@ -74,6 +72,7 @@ namespace grapher ScaleMenuItem, DPITextBox, PollRateTextBox, + DirectionalityPanel, sensitivityBoxX, sensitivityBoxY, rotationBox, @@ -93,8 +92,16 @@ namespace grapher expBoxY, midpointBoxX, midpointBoxY, + DomainBoxX, + DomainBoxY, + RangeBoxX, + RangeBoxY, + LpNormBox, sensXYLock, ByComponentXYLock, + FakeBox, + WholeCheckBox, + ByComponentCheckBox, LockXYLabel, sensitivityLabel, rotationLabel, @@ -139,7 +146,19 @@ namespace grapher AccelTypeActiveLabelY, OptionSetXTitle, OptionSetYTitle, - MouseLabel); + MouseLabel, + DirectionalityLabel, + DirectionalityX, + DirectionalityY, + DirectionalityActiveValueTitle, + LPNormLabel, + LpNormActiveValue, + DirectionalDomainLabel, + DomainActiveValueX, + DomainActiveValueY, + DirectionalityRangeLabel, + RangeActiveValueX, + RangeActiveValueY); } #endregion Constructor |