diff options
| author | a1xd <[email protected]> | 2021-07-05 23:33:41 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-07-05 23:33:41 -0400 |
| commit | 31efc792f5895d7ef3533390875de3c480add996 (patch) | |
| tree | 8db5b16a88f50448cb525ba8ae56801985294f63 /grapher/grapher.csproj | |
| parent | Merge pull request #87 from matthewstrasiotto/streamer_mode (diff) | |
| parent | Handle power\exponent correctly in GUI (diff) | |
| download | rawaccel-31efc792f5895d7ef3533390875de3c480add996.tar.xz rawaccel-31efc792f5895d7ef3533390875de3c480add996.zip | |
merge lut2
Diffstat (limited to 'grapher/grapher.csproj')
| -rw-r--r-- | grapher/grapher.csproj | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/grapher/grapher.csproj b/grapher/grapher.csproj index 1160ba8..7b0ab02 100644 --- a/grapher/grapher.csproj +++ b/grapher/grapher.csproj @@ -78,8 +78,10 @@ <DependentUpon>AboutBox.cs</DependentUpon> </Compile> <Compile Include="Constants\Constants.cs" /> + <Compile Include="Layouts\LUTLayout.cs" /> <Compile Include="Layouts\MotivityLayout.cs" /> - <Compile Include="Layouts\NaturalGainLayout.cs" /> + <Compile Include="Layouts\JumpLayout.cs" /> + <Compile Include="Layouts\UnsupportedLayout.cs" /> <Compile Include="MessageDialog.cs"> <SubType>Form</SubType> </Compile> @@ -111,7 +113,6 @@ <Compile Include="Models\Options\ActiveValueLabel.cs" /> <Compile Include="Models\Options\ActiveValueLabelXY.cs" /> <Compile Include="Models\Options\ApplyOptions.cs" /> - <Compile Include="Models\Options\CapOptions.cs" /> <Compile Include="Models\Charts\ChartXY.cs" /> <Compile Include="Models\Fields\Field.cs" /> <Compile Include="Models\Fields\FieldXY.cs" /> @@ -128,15 +129,18 @@ <Compile Include="Layouts\NaturalLayout.cs" /> <Compile Include="Layouts\OffLayout.cs" /> <Compile Include="Layouts\PowerLayout.cs" /> + <Compile Include="Models\Options\CheckBoxOption.cs" /> <Compile Include="Models\Options\Directionality\DirectionalityOptions.cs" /> + <Compile Include="Models\Options\LUT\LutApplyOptions.cs" /> <Compile Include="Models\Options\IOption.cs" /> + <Compile Include="Models\Options\LUT\LUTPanelOptions.cs" /> <Compile Include="Models\Options\OffsetOptions.cs" /> <Compile Include="Models\Options\Option.cs" /> <Compile Include="Layouts\OptionLayout.cs" /> <Compile Include="Models\Options\OptionBase.cs" /> <Compile Include="Models\Options\OptionXY.cs" /> + <Compile Include="Models\Options\TextOption.cs" /> <Compile Include="Models\Serialized\GUISettings.cs" /> - <Compile Include="Models\Serialized\RawAccelSettings.cs" /> <Compile Include="Models\Serialized\SettingsManager.cs" /> <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> |