aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Controls/JobSummeryViewer.xaml
blob: eeb25dc835d4355cb7838a52df233ae204640ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<UserControl x:Class="Tango.MachineStudio.Developer.Controls.JobSummeryViewer"
             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:enumerations="clr-namespace:Tango.BL.Enumerations;assembly=Tango.BL"
             xmlns:converters="clr-namespace:Tango.SharedUI.Converters;assembly=Tango.SharedUI"
             xmlns:entities="clr-namespace:Tango.BL.Entities;assembly=Tango.BL"
             xmlns:local="clr-namespace:Tango.MachineStudio.Developer.Controls"
             mc:Ignorable="d" 
             d:DesignHeight="60" d:DesignWidth="500" Height="38" d:DataContext="{d:DesignInstance Type=entities:Job, IsDesignTimeCreatable=False}" x:Name="control">

    <UserControl.Resources>
        <converters:BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
        <converters:SegmentLengthToWidthConverter x:Key="SegmentLengthToWidthConverter" />
        <converters:SmallerThanToBooleanConverter x:Key="SmallerThanToBooleanConverter" />
        <converters:WidthHeightToRectConverter x:Key="WidthHeightToRectConverter" />

    </UserControl.Resources>
    

    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="1*"/>
            <ColumnDefinition Width="Auto"/>
        </Grid.ColumnDefinitions>
        <Grid>
            <Grid.RowDefinitions>
                <RowDefinition Height="Auto" />
                <RowDefinition Height="1*" />
            </Grid.RowDefinitions>

            <ItemsControl ClipToBounds="False" ItemsSource="{Binding EffectiveSegments,IsAsync=True}" Visibility="{Binding RelativeSource={RelativeSource AncestorType=UserControl},Path=DisplayMarkers,Converter={StaticResource BooleanToVisibilityConverter}}">
                <ItemsControl.ItemsPanel>
                    <ItemsPanelTemplate>
                        <StackPanel Orientation="Horizontal" ClipToBounds="False"></StackPanel>
                    </ItemsPanelTemplate>
                </ItemsControl.ItemsPanel>
                <ItemsControl.ItemTemplate>
                    <DataTemplate>
                        <Grid x:Name="grid">
                            <Grid.Width>
                                <MultiBinding Converter="{StaticResource SegmentLengthToWidthConverter}">
                                    <Binding RelativeSource="{RelativeSource AncestorType=UserControl}" Path="DataContext.Length"></Binding>
                                    <Binding RelativeSource="{RelativeSource AncestorType=ItemsControl}" Path="ActualWidth"></Binding>
                                    <Binding Path="LengthWithFactor"></Binding>
                                </MultiBinding>
                            </Grid.Width>

                            <TextBlock HorizontalAlignment="Center" FontSize="10">
                                <TextBlock.Style>
                                    <Style TargetType="TextBlock">
                                        <Setter Property="Visibility" Value="Visible"></Setter>
                                        <Style.Triggers>
                                            <DataTrigger Binding="{Binding ElementName=grid,Path=ActualWidth,Converter={StaticResource SmallerThanToBooleanConverter},ConverterParameter=20}" Value="True">
                                                <Setter Property="Visibility" Value="Collapsed"></Setter>
                                            </DataTrigger>
                                        </Style.Triggers>
                                    </Style>
                                </TextBlock.Style>
                                 <Run Text="{Binding LengthWithFactor,Mode=OneWay,StringFormat=N0,IsAsync=True}"></Run><Run Text="m"></Run>
                            </TextBlock>
                        </Grid>
                    </DataTemplate>
                </ItemsControl.ItemTemplate>
            </ItemsControl>

            <Border Grid.Row="1" x:Name="brush_border" ClipToBounds="False" CornerRadius="10" Margin="0 5 0 0">
                <Border.Clip>
                    <RectangleGeometry RadiusX="10" RadiusY="10">
                        <RectangleGeometry.Rect>
                            <MultiBinding Converter="{StaticResource WidthHeightToRectConverter}">
                                <Binding ElementName="brush_border" Path="ActualWidth"  />
                                <Binding ElementName="brush_border" Path="ActualHeight"  />
                            </MultiBinding>
                        </RectangleGeometry.Rect>
                    </RectangleGeometry>
                </Border.Clip>
                <!--<Border.Background>
                    --><!--<ImageBrush ImageSource="../Images/JobView/transparent_small.jpg" Stretch="None" TileMode="Tile" AlignmentX="Left" ViewportUnits="Absolute" Viewport="0,0,94,30" />--><!--
                </Border.Background>-->
                <Grid>
                    <ItemsControl ClipToBounds="False" ItemsSource="{Binding EffectiveSegments,IsAsync=True}">
                        <ItemsControl.ItemsPanel>
                            <ItemsPanelTemplate>
                                <StackPanel Orientation="Horizontal" ClipToBounds="False"></StackPanel>
                            </ItemsPanelTemplate>
                        </ItemsControl.ItemsPanel>
                        <ItemsControl.ItemTemplate>
                            <DataTemplate>
                                <Grid>
                                    <Grid.Width>
                                        <MultiBinding Converter="{StaticResource SegmentLengthToWidthConverter}">
                                            <Binding RelativeSource="{RelativeSource AncestorType=UserControl}" Path="DataContext.Length"></Binding>
                                            <Binding RelativeSource="{RelativeSource AncestorType=ItemsControl}" Path="ActualWidth"></Binding>
                                            <Binding Path="LengthWithFactor"></Binding>
                                        </MultiBinding>
                                    </Grid.Width>
                                    <Rectangle Fill="{Binding SegmentBrush}"></Rectangle>
                                </Grid>
                            </DataTemplate>
                        </ItemsControl.ItemTemplate>
                    </ItemsControl>

                    <Rectangle Stroke="{StaticResource GrayBrush}" StrokeThickness="1" StrokeDashArray="5 5 5 5" RadiusX="8" RadiusY="8" />
                </Grid>
            </Border>
        </Grid>

        <Grid Grid.Column="1" VerticalAlignment="Bottom">
            <Grid.Style>
                <Style TargetType="Grid">
                    <Setter Property="Visibility" Value="Collapsed"></Setter>
                    <Style.Triggers>
                        <MultiDataTrigger>
                            <MultiDataTrigger.Conditions>
                                <Condition Binding="{Binding JobType}" Value="{x:Static enumerations:JobTypes.Embroidery}" />
                                <Condition Binding="{Binding ElementName=control,Path=IsActive}" Value="False" />
                            </MultiDataTrigger.Conditions>
                            <Setter Property="Visibility" Value="Visible"></Setter>
                        </MultiDataTrigger>
                    </Style.Triggers>
                </Style>
            </Grid.Style>

            <TextBlock Margin="10 0 0 -2" VerticalAlignment="Center" FontSize="16">
                <Run Text="x"></Run><Run Text="{Binding NumberOfUnits}"></Run>
            </TextBlock>
        </Grid>
    </Grid>
</UserControl>
"k">throw new ArgumentNullException("textArea"); if (textArea.Document.GetOffset(start.Location) == textArea.Document.GetOffset(end.Location) && start.VisualColumn == end.VisualColumn) return textArea.emptySelection; else return new SimpleSelection(textArea, start, end); } /// <summary> /// Creates a new simple selection that selects the text in the specified segment. /// </summary> public static Selection Create(TextArea textArea, ISegment segment) { if (segment == null) throw new ArgumentNullException("segment"); return Create(textArea, segment.Offset, segment.EndOffset); } internal readonly TextArea textArea; /// <summary> /// Constructor for Selection. /// </summary> protected Selection(TextArea textArea) { if (textArea == null) throw new ArgumentNullException("textArea"); this.textArea = textArea; } /// <summary> /// Gets the start position of the selection. /// </summary> public abstract TextViewPosition StartPosition { get; } /// <summary> /// Gets the end position of the selection. /// </summary> public abstract TextViewPosition EndPosition { get; } /// <summary> /// Gets the selected text segments. /// </summary> public abstract IEnumerable<SelectionSegment> Segments { get; } /// <summary> /// Gets the smallest segment that contains all segments in this selection. /// May return null if the selection is empty. /// </summary> public abstract ISegment SurroundingSegment { get; } /// <summary> /// Replaces the selection with the specified text. /// </summary> public abstract void ReplaceSelectionWithText(string newText); internal string AddSpacesIfRequired(string newText, TextViewPosition start, TextViewPosition end) { if (EnableVirtualSpace && InsertVirtualSpaces(newText, start, end)) { var line = textArea.Document.GetLineByNumber(start.Line); string lineText = textArea.Document.GetText(line); var vLine = textArea.TextView.GetOrConstructVisualLine(line); int colDiff = start.VisualColumn - vLine.VisualLengthWithEndOfLineMarker; if (colDiff > 0) { string additionalSpaces = ""; if (!textArea.Options.ConvertTabsToSpaces && lineText.Trim('\t').Length == 0) { int tabCount = (int)(colDiff / textArea.Options.IndentationSize); additionalSpaces = new string('\t', tabCount); colDiff -= tabCount * textArea.Options.IndentationSize; } additionalSpaces += new string(' ', colDiff); return additionalSpaces + newText; } } return newText; } bool InsertVirtualSpaces(string newText, TextViewPosition start, TextViewPosition end) { return (!string.IsNullOrEmpty(newText) || !(IsInVirtualSpace(start) && IsInVirtualSpace(end))) && newText != "\r\n" && newText != "\n" && newText != "\r"; } bool IsInVirtualSpace(TextViewPosition pos) { return pos.VisualColumn > textArea.TextView.GetOrConstructVisualLine(textArea.Document.GetLineByNumber(pos.Line)).VisualLength; } /// <summary> /// Updates the selection when the document changes. /// </summary> public abstract Selection UpdateOnDocumentChange(DocumentChangeEventArgs e); /// <summary> /// Gets whether the selection is empty. /// </summary> public virtual bool IsEmpty { get { return Length == 0; } } /// <summary> /// Gets whether virtual space is enabled for this selection. /// </summary> public virtual bool EnableVirtualSpace { get { return textArea.Options.EnableVirtualSpace; } } /// <summary> /// Gets the selection length. /// </summary> public abstract int Length { get; } /// <summary> /// Returns a new selection with the changed end point. /// </summary> /// <exception cref="NotSupportedException">Cannot set endpoint for empty selection</exception> public abstract Selection SetEndpoint(TextViewPosition endPosition); /// <summary> /// If this selection is empty, starts a new selection from <paramref name="startPosition"/> to /// <paramref name="endPosition"/>, otherwise, changes the endpoint of this selection. /// </summary> public abstract Selection StartSelectionOrSetEndpoint(TextViewPosition startPosition, TextViewPosition endPosition); /// <summary> /// Gets whether the selection is multi-line. /// </summary> public virtual bool IsMultiline { get { ISegment surroundingSegment = this.SurroundingSegment; if (surroundingSegment == null) return false; int start = surroundingSegment.Offset; int end = start + surroundingSegment.Length; var document = textArea.Document; if (document == null) throw ThrowUtil.NoDocumentAssigned(); return document.GetLineByOffset(start) != document.GetLineByOffset(end); } } /// <summary> /// Gets the selected text. /// </summary> public virtual string GetText() { var document = textArea.Document; if (document == null) throw ThrowUtil.NoDocumentAssigned(); StringBuilder b = null; string text = null; foreach (ISegment s in Segments) { if (text != null) { if (b == null) b = new StringBuilder(text); else b.Append(text); } text = document.GetText(s); } if (b != null) { if (text != null) b.Append(text); return b.ToString(); } else { return text ?? string.Empty; } } /// <summary> /// Creates a HTML fragment for the selected text. /// </summary> public string CreateHtmlFragment(HtmlOptions options) { if (options == null) throw new ArgumentNullException("options"); IHighlighter highlighter = textArea.GetService(typeof(IHighlighter)) as IHighlighter; StringBuilder html = new StringBuilder(); bool first = true; foreach (ISegment selectedSegment in this.Segments) { if (first) first = false; else html.AppendLine("<br>"); html.Append(HtmlClipboard.CreateHtmlFragment(textArea.Document, highlighter, selectedSegment, options)); } return html.ToString(); } /// <inheritdoc/> public abstract override bool Equals(object obj); /// <inheritdoc/> public abstract override int GetHashCode(); /// <summary> /// Gets whether the specified offset is included in the selection. /// </summary> /// <returns>True, if the selection contains the offset (selection borders inclusive); /// otherwise, false.</returns> public virtual bool Contains(int offset) { if (this.IsEmpty) return false; if (this.SurroundingSegment.Contains(offset)) { foreach (ISegment s in this.Segments) { if (s.Contains(offset)) { return true; } } } return false; } /// <summary> /// Creates a data object containing the selection's text. /// </summary> public virtual DataObject CreateDataObject(TextArea textArea) { string text = GetText(); // Ensure we use the appropriate newline sequence for the OS DataObject data = new DataObject(TextUtilities.NormalizeNewLines(text, Environment.NewLine)); // we cannot use DataObject.SetText - then we cannot drag to SciTe // (but dragging to Word works in both cases) // Also copy text in HTML format to clipboard - good for pasting text into Word // or to the SharpDevelop forums. HtmlClipboard.SetHtml(data, CreateHtmlFragment(new HtmlOptions(textArea.Options))); return data; } } }