diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2018-07-02 13:54:10 +0300 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2018-07-02 13:54:10 +0300 |
| commit | 2dfca3d422f3537e3685d06906472f704e2eeb10 (patch) | |
| tree | 19f5e6c115df6301e251a2febe940e80727a34e2 /Software/Visual_Studio/PPC/Modules | |
| parent | b1de1d1f0a74cb1c2541e972c802fd967ec59e0a (diff) | |
| parent | 57d2810dae9d6d40c52ec33508a324582ac3113b (diff) | |
| download | Tango-2dfca3d422f3537e3685d06906472f704e2eeb10.tar.gz Tango-2dfca3d422f3537e3685d06906472f704e2eeb10.zip | |
Merge branch 'master' of https://twinetfs.visualstudio.com/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules')
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Controls/TwineCatalogControl.xaml | 12 | ||||
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Controls/TwineCatalogControl.xaml.cs | 28 | ||||
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/AdvancedColorCorrectionView.xaml | 123 | ||||
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/AdvancedColorCorrectionViewVM.cs | 56 | ||||
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/BasicColorCorrectionView.xaml | 4 | ||||
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/BasicColorCorrectionViewVM.cs | 12 | ||||
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/JobView/twine-catalog.png | bin | 0 -> 1408 bytes | |||
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Models/ColorConversionSuggestion.cs (renamed from Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Models/ColorConversionResult.cs) | 9 | ||||
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj | 16 |
9 files changed, 192 insertions, 68 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Controls/TwineCatalogControl.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Controls/TwineCatalogControl.xaml new file mode 100644 index 000000000..51917b594 --- /dev/null +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Controls/TwineCatalogControl.xaml @@ -0,0 +1,12 @@ +<UserControl x:Class="Tango.PPC.Jobs.Controls.TwineCatalogControl" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" + xmlns:local="clr-namespace:Tango.PPC.Jobs.Controls" + mc:Ignorable="d" + d:DesignHeight="300" d:DesignWidth="300"> + <Grid> + + </Grid> +</UserControl> diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Controls/TwineCatalogControl.xaml.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Controls/TwineCatalogControl.xaml.cs new file mode 100644 index 000000000..b1a109a75 --- /dev/null +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Controls/TwineCatalogControl.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace Tango.PPC.Jobs.Controls +{ + /// <summary> + /// Interaction logic for TwineCatalogControl.xaml + /// </summary> + public partial class TwineCatalogControl : UserControl + { + public TwineCatalogControl() + { + InitializeComponent(); + } + } +} diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/AdvancedColorCorrectionView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/AdvancedColorCorrectionView.xaml index 9267e07c3..f707397a4 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/AdvancedColorCorrectionView.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/AdvancedColorCorrectionView.xaml @@ -5,10 +5,11 @@ xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:Tango.PPC.Jobs.Dialogs" xmlns:models="clr-namespace:Tango.PPC.Jobs.Models" + xmlns:hive="clr-namespace:Tango.Hive;assembly=Tango.Hive" xmlns:pmr="clr-namespace:Tango.PMR.ColorLab;assembly=Tango.PMR" xmlns:touch="clr-namespace:Tango.Touch.Controls;assembly=Tango.Touch" mc:Ignorable="d" - Background="{StaticResource TangoPrimaryBackgroundBrush}" d:DesignHeight="630" d:DesignWidth="560" MinWidth="560" Height="630" d:DataContext="{d:DesignInstance Type=local:AdvancedColorCorrectionViewVM, IsDesignTimeCreatable=False}"> + Background="{StaticResource TangoPrimaryBackgroundBrush}" d:DesignHeight="630" d:DesignWidth="560" MinWidth="560" Height="700" d:DataContext="{d:DesignInstance Type=local:AdvancedColorCorrectionViewVM, IsDesignTimeCreatable=False}"> <Grid> <Grid Margin="20"> <Grid.RowDefinitions> @@ -19,7 +20,7 @@ </Grid.RowDefinitions> <Grid> - <TextBlock VerticalAlignment="Center" FontSize="{StaticResource TangoMessageBoxTitleFontSize}" Foreground="{StaticResource TangoErrorBrush}">Color is out of gamut</TextBlock> + <TextBlock VerticalAlignment="Center" FontSize="{StaticResource TangoMessageBoxTitleFontSize}" Foreground="{StaticResource TangoErrorBrush}">Color is out of range</TextBlock> <touch:TouchIconButton Command="{Binding CloseCommand}" HorizontalAlignment="Right" Icon="Close" CornerRadius="50" Foreground="{StaticResource TangoDarkForegroundBrush}" Padding="25" /> </Grid> @@ -37,68 +38,74 @@ <DockPanel Grid.Row="2" Margin="0 0 0 0"> <TextBlock DockPanel.Dock="Top" Margin="40 0 0 0">Please select the best alternative</TextBlock> - <touch:TouchListBox SelectionMode="Single" Style="{StaticResource TangoNoRippleListBox}" ItemsSource="{Binding Suggestions}" Margin="0 20 0 0"> - <touch:TouchListBox.ItemContainerStyle> - <Style TargetType="touch:TouchListBoxItem"> + <hive:HexList Width="340" Height="460" Margin="0 20 0 0" RowCount="6" ColumnCount="5" ItemsSource="{Binding Suggestions}" SelectedItem="{Binding SelectedSuggestion,Mode=TwoWay}"> + <hive:HexList.ItemContainerStyle> + <Style TargetType="ListBoxItem"> + <Setter Property="HorizontalContentAlignment" Value="Stretch"></Setter> + <Setter Property="VerticalContentAlignment" Value="Stretch"></Setter> <Setter Property="Background" Value="Transparent"></Setter> - <Setter Property="Margin" Value="0 10"></Setter> + <Setter Property="Grid.Column" Value="{Binding Path=Column}"></Setter> + <Setter Property="Grid.Row" Value="{Binding Path=Row}"></Setter> + <Setter Property="Template"> + <Setter.Value> + <ControlTemplate TargetType="ListBoxItem"> + <Grid Margin="10" RenderTransformOrigin="0.5,0.5"> + <Grid.Style> + <Style TargetType="Grid"> + <Setter Property="RenderTransform"> + <Setter.Value> + <ScaleTransform ScaleX="1" ScaleY="1" /> + </Setter.Value> + </Setter> + <Setter Property="Effect"> + <Setter.Value> + <DropShadowEffect Color="{StaticResource TangoDarkForegroundColor}" ShadowDepth="0" BlurRadius="10" Opacity="0" /> + </Setter.Value> + </Setter> + <Style.Triggers> + <DataTrigger Binding="{Binding RelativeSource={RelativeSource AncestorType=ListBoxItem},Path=IsSelected}" Value="True"> + <DataTrigger.EnterActions> + <BeginStoryboard> + <Storyboard> + <DoubleAnimation Storyboard.TargetProperty="RenderTransform.ScaleX" To="1.2" Duration="00:00:0.2" /> + <DoubleAnimation Storyboard.TargetProperty="RenderTransform.ScaleY" To="1.2" Duration="00:00:0.2" /> + <DoubleAnimation Storyboard.TargetProperty="Effect.Opacity" To="1" Duration="00:00:0.2" /> + </Storyboard> + </BeginStoryboard> + </DataTrigger.EnterActions> + <DataTrigger.ExitActions> + <BeginStoryboard> + <Storyboard> + <DoubleAnimation Storyboard.TargetProperty="RenderTransform.ScaleX" To="1" Duration="00:00:0.2" /> + <DoubleAnimation Storyboard.TargetProperty="RenderTransform.ScaleY" To="1" Duration="00:00:0.2" /> + <DoubleAnimation Storyboard.TargetProperty="Effect.Opacity" To="0" Duration="00:00:0.2" /> + </Storyboard> + </BeginStoryboard> + </DataTrigger.ExitActions> + </DataTrigger> + </Style.Triggers> + </Style> + </Grid.Style> + <Ellipse Fill="{Binding Brush}"></Ellipse> + <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Visibility="{Binding DisplayIndices,Converter={StaticResource BooleanToVisibilityConverter}}"> + <Run Text="{Binding Column}"></Run><Run>,</Run> + <Run Text="{Binding Row}"></Run> + </TextBlock> + </Grid> + </ControlTemplate> + </Setter.Value> + </Setter> </Style> - </touch:TouchListBox.ItemContainerStyle> - <touch:TouchListBox.ItemTemplate> - <DataTemplate DataType="{x:Type models:ColorConversionResult}"> - <StackPanel Orientation="Horizontal"> - <Ellipse Width="60" Height="60" Margin="40 0 0 0" Fill="{Binding Brush}" RenderTransformOrigin="0.5,0.5"> - <Ellipse.Style> - <Style TargetType="Ellipse"> - <Setter Property="RenderTransform"> - <Setter.Value> - <ScaleTransform ScaleX="1" ScaleY="1" /> - </Setter.Value> - </Setter> - <Setter Property="Effect"> - <Setter.Value> - <DropShadowEffect Color="{StaticResource TangoDropShadowColor}" ShadowDepth="0" BlurRadius="10" Opacity="0" /> - </Setter.Value> - </Setter> - <Style.Triggers> - <DataTrigger Binding="{Binding RelativeSource={RelativeSource AncestorType=touch:TouchListBoxItem},Path=IsSelected}" Value="True"> - <DataTrigger.EnterActions> - <BeginStoryboard> - <Storyboard> - <DoubleAnimation Storyboard.TargetProperty="RenderTransform.ScaleX" To="1.2" Duration="00:00:0.2" /> - <DoubleAnimation Storyboard.TargetProperty="RenderTransform.ScaleY" To="1.2" Duration="00:00:0.2" /> - <DoubleAnimation Storyboard.TargetProperty="Effect.Opacity" To="1" Duration="00:00:0.2" /> - </Storyboard> - </BeginStoryboard> - </DataTrigger.EnterActions> - <DataTrigger.ExitActions> - <BeginStoryboard> - <Storyboard> - <DoubleAnimation Storyboard.TargetProperty="RenderTransform.ScaleX" To="1" Duration="00:00:0.2" /> - <DoubleAnimation Storyboard.TargetProperty="RenderTransform.ScaleY" To="1" Duration="00:00:0.2" /> - <DoubleAnimation Storyboard.TargetProperty="Effect.Opacity" To="0" Duration="00:00:0.2" /> - </Storyboard> - </BeginStoryboard> - </DataTrigger.ExitActions> - </DataTrigger> - </Style.Triggers> - </Style> - </Ellipse.Style> - </Ellipse> - <TextBlock VerticalAlignment="Center" Margin="20 0 0 0"> - <Run Text="{Binding Color.R}"></Run><Run>,</Run> - <Run Text="{Binding Color.G}"></Run><Run>,</Run> - <Run Text="{Binding Color.B}"></Run> - </TextBlock> - </StackPanel> - </DataTemplate> - </touch:TouchListBox.ItemTemplate> - </touch:TouchListBox> + </hive:HexList.ItemContainerStyle> + </hive:HexList> </DockPanel> <DockPanel Grid.Row="3" Margin="40 10 20 0" LastChildFill="False"> <touch:TouchButton Command="{Binding MoreOptionsCommand}" VerticalAlignment="Top" Style="{StaticResource TangoLinkButton}" DockPanel.Dock="Left" Foreground="{StaticResource TangoPrimaryAccentBrush}"> - Twine Catalog + <StackPanel Orientation="Horizontal"> + <Image Source="../Images/JobView/twine-catalog.png" Stretch="None" /> + <TextBlock Margin="10 0 0 0" VerticalAlignment="Bottom">Twine Catalog</TextBlock> + </StackPanel> </touch:TouchButton> <touch:TouchButton Command="{Binding OKCommand}" CornerRadius="25" Style="{StaticResource TangoHollowButton}" DockPanel.Dock="Right" Width="170" Height="50" VerticalAlignment="Bottom"> diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/AdvancedColorCorrectionViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/AdvancedColorCorrectionViewVM.cs index d48c36c34..fe510622c 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/AdvancedColorCorrectionViewVM.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/AdvancedColorCorrectionViewVM.cs @@ -3,12 +3,68 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using Tango.PMR.ColorLab; +using Tango.PPC.Jobs.Models; using Tango.SharedUI; namespace Tango.PPC.Jobs.Dialogs { public class AdvancedColorCorrectionViewVM : BasicColorCorrectionViewVM { + private static Random rnd = new Random(); + + private static OutputCoordinates GetRandomCoordinates() + { + OutputCoordinates coords = new OutputCoordinates(); + coords.Red = rnd.Next(0, 255); + coords.Green = rnd.Next(0, 255); + coords.Blue = rnd.Next(0, 255); + + return coords; + } + + private static ColorConversionSuggestion CreateSuggestion(int row, int column) + { + ColorConversionSuggestion s = new ColorConversionSuggestion(); + s.Row = row; + s.Column = column; + s.Coordinates = GetRandomCoordinates(); + + return s; + } + + public AdvancedColorCorrectionViewVM() + { + //Create Hive. + Suggestions = new List<ColorConversionSuggestion>(); + + Suggestions.Add(CreateSuggestion(0, 1)); + Suggestions.Add(CreateSuggestion(0, 2)); + Suggestions.Add(CreateSuggestion(0, 3)); + + Suggestions.Add(CreateSuggestion(1, 0)); + Suggestions.Add(CreateSuggestion(1, 1)); + Suggestions.Add(CreateSuggestion(1, 2)); + Suggestions.Add(CreateSuggestion(1, 3)); + Suggestions.Add(CreateSuggestion(1, 4)); + + Suggestions.Add(CreateSuggestion(2, 0)); + Suggestions.Add(CreateSuggestion(2, 1)); + Suggestions.Add(CreateSuggestion(2, 2)); + Suggestions.Add(CreateSuggestion(2, 3)); + Suggestions.Add(CreateSuggestion(2, 4)); + + Suggestions.Add(CreateSuggestion(3, 0)); + Suggestions.Add(CreateSuggestion(3, 1)); + Suggestions.Add(CreateSuggestion(3, 2)); + Suggestions.Add(CreateSuggestion(3, 3)); + Suggestions.Add(CreateSuggestion(3, 4)); + + Suggestions.Add(CreateSuggestion(4, 2)); + + //Select Center Hex. + } + } } diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/BasicColorCorrectionView.xaml b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/BasicColorCorrectionView.xaml index ffeea1b48..32759d292 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/BasicColorCorrectionView.xaml +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/BasicColorCorrectionView.xaml @@ -19,7 +19,7 @@ </Grid.RowDefinitions> <Grid> - <TextBlock VerticalAlignment="Center" FontSize="{StaticResource TangoMessageBoxTitleFontSize}" Foreground="{StaticResource TangoErrorBrush}">Color is out of gamut</TextBlock> + <TextBlock VerticalAlignment="Center" FontSize="{StaticResource TangoMessageBoxTitleFontSize}" Foreground="{StaticResource TangoErrorBrush}">Color is out of range</TextBlock> <touch:TouchIconButton Command="{Binding CloseCommand}" HorizontalAlignment="Right" Icon="Close" CornerRadius="50" RippleBrush="{StaticResource TangoRippleDarkBrush}" Foreground="{StaticResource TangoDarkForegroundBrush}" Padding="22" /> </Grid> @@ -45,7 +45,7 @@ </Style> </touch:TouchListBox.ItemContainerStyle> <touch:TouchListBox.ItemTemplate> - <DataTemplate DataType="{x:Type models:ColorConversionResult}"> + <DataTemplate DataType="{x:Type models:ColorConversionSuggestion}"> <StackPanel Orientation="Horizontal"> <Ellipse Width="60" Height="60" Margin="40 0 0 0" Fill="{Binding Brush}" RenderTransformOrigin="0.5,0.5"> <Ellipse.Style> diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/BasicColorCorrectionViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/BasicColorCorrectionViewVM.cs index ecc32cd00..0012ac71d 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/BasicColorCorrectionViewVM.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Dialogs/BasicColorCorrectionViewVM.cs @@ -25,9 +25,9 @@ namespace Tango.PPC.Jobs.Dialogs public BasicColorCorrectionResult Result { get; private set; } - public List<ColorConversionResult> Suggestions { get; set; } + public List<ColorConversionSuggestion> Suggestions { get; set; } - public ColorConversionResult SelectedSuggestion { get; set; } + public ColorConversionSuggestion SelectedSuggestion { get; set; } public RelayCommand MoreOptionsCommand { get; set; } @@ -39,9 +39,9 @@ namespace Tango.PPC.Jobs.Dialogs Accept(); }); - Suggestions = new List<ColorConversionResult>(); + Suggestions = new List<ColorConversionSuggestion>(); - Suggestions.Add(new ColorConversionResult() + Suggestions.Add(new ColorConversionSuggestion() { Coordinates = new PMR.ColorLab.OutputCoordinates() { @@ -51,7 +51,7 @@ namespace Tango.PPC.Jobs.Dialogs }, }); - Suggestions.Add(new ColorConversionResult() + Suggestions.Add(new ColorConversionSuggestion() { Coordinates = new PMR.ColorLab.OutputCoordinates() { @@ -61,7 +61,7 @@ namespace Tango.PPC.Jobs.Dialogs }, }); - Suggestions.Add(new ColorConversionResult() + Suggestions.Add(new ColorConversionSuggestion() { Coordinates = new PMR.ColorLab.OutputCoordinates() { diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/JobView/twine-catalog.png b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/JobView/twine-catalog.png Binary files differnew file mode 100644 index 000000000..35d9b69cd --- /dev/null +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Images/JobView/twine-catalog.png diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Models/ColorConversionResult.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Models/ColorConversionSuggestion.cs index deeb363dc..8d88070d7 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Models/ColorConversionResult.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Models/ColorConversionSuggestion.cs @@ -9,7 +9,7 @@ using Tango.PMR.ColorLab; namespace Tango.PPC.Jobs.Models { - public class ColorConversionResult : ExtendedObject + public class ColorConversionSuggestion : ExtendedObject { public Color Color { @@ -34,5 +34,12 @@ namespace Tango.PPC.Jobs.Models public int Column { get; set; } public int Row { get; set; } + + public bool DisplayIndices { get; set; } + + public ColorConversionSuggestion() + { + DisplayIndices = false; + } } } diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj index d1999608d..7e8dc94b3 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/Tango.PPC.Jobs.csproj @@ -72,6 +72,10 @@ <SubType>Designer</SubType> <Generator>MSBuild:Compile</Generator> </Page> + <Page Include="Controls\TwineCatalogControl.xaml"> + <SubType>Designer</SubType> + <Generator>MSBuild:Compile</Generator> + </Page> <Page Include="Dialogs\AdvancedColorCorrectionView.xaml"> <Generator>MSBuild:Compile</Generator> <SubType>Designer</SubType> @@ -108,6 +112,9 @@ <Compile Include="Controls\JobSummeryViewer.xaml.cs"> <DependentUpon>JobSummeryViewer.xaml</DependentUpon> </Compile> + <Compile Include="Controls\TwineCatalogControl.xaml.cs"> + <DependentUpon>TwineCatalogControl.xaml</DependentUpon> + </Compile> <Compile Include="Converters\JobCollectionToCategoryCountConverter.cs" /> <Compile Include="Converters\JobToPieImageConverter.cs" /> <Compile Include="Dialogs\AdvancedColorCorrectionView.xaml.cs"> @@ -122,7 +129,7 @@ <Compile Include="Messages\JobRemovedMessage.cs" /> <Compile Include="Messages\JobSavedMessage.cs" /> <Compile Include="Messages\JobSelectedMessage.cs" /> - <Compile Include="Models\ColorConversionResult.cs" /> + <Compile Include="Models\ColorConversionSuggestion.cs" /> <Compile Include="Properties\AssemblyInfo.cs"> <SubType>Code</SubType> </Compile> @@ -177,6 +184,10 @@ <Project>{b112d89a-a106-41ae-a0c1-4abc84c477f5}</Project> <Name>Tango.DragAndDrop</Name> </ProjectReference> + <ProjectReference Include="..\..\..\Tango.Hive\Tango.Hive.csproj"> + <Project>{942134ac-6ea2-4500-8f22-0f739b70a05f}</Project> + <Name>Tango.Hive</Name> + </ProjectReference> <ProjectReference Include="..\..\..\Tango.Logging\Tango.Logging.csproj"> <Project>{bc932dbd-7cdb-488c-99e4-f02cf441f55e}</Project> <Name>Tango.Logging</Name> @@ -254,5 +265,8 @@ <ItemGroup> <Resource Include="Images\JobView\replace-color.png" /> </ItemGroup> + <ItemGroup> + <Resource Include="Images\JobView\twine-catalog.png" /> + </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> </Project>
\ No newline at end of file |
