aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Synchronization/Navigation/NavigationView.cs
blob: 4e846e96339590eff4849c211e1524793c49a648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.MachineStudio.Synchronization.Navigation
{
    /// <summary>
    /// Represents the available views to navigate to within the synchronization module.
    /// </summary>
    public enum NavigationView
    {
        MenuView,
        LocalSynchronizationView,
        RemoteSynchronizationView,
        DirectSynchronizationView,
    }
}
kground-color: transparent; padding-left: 5px; padding-right: 5px; } span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } .highlight .hll { background-color: #ffffcc } .highlight .c { color: #888888 } /* Comment */ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ .highlight .k { color: #008800; font-weight: bold } /* Keyword */ .highlight .ch { color: #888888 } /* Comment.Hashbang */ .highlight .cm { color: #888888 } /* Comment.Multiline */ .highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */ .highlight .cpf { color: #888888 } /* Comment.PreprocFile */ .highlight .c1 { color: #888888 } /* Comment.Single */ .highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */ .highlight .gr { color: #aa0000 } /* Generic.Error */ .highlight .gh { color: #333333 } /* Generic.Heading */ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ .highlight .go { color: #888888 } /* Generic.Output */ .highlight .gp { color: #555555 } /* Generic.Prompt */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #666666 } /* Generic.Subheading */ .highlight .gt { color: #aa0000 } /* Generic.Traceback */ .highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #008800 } /* Keyword.Pseudo */ .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
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;
using Tango.SharedUI.Controls;

namespace Tango.Touch.Controls
{
    public class TouchNumericTextBox : TouchInput, IValueControl
    {
        private TextBox _text_box;
        private bool _prevent_text_change;
        private TextBlock _text_block;
        private double _lastValue;
        Regex regex_integer = new Regex(@"^-?[0-9]\d*(\d+)?$");
        Regex regex_double = new Regex(@"^-?[0-9]\d*(\.\d+)?$");

        public static readonly RoutedEvent ValueChangedEvent = EventManager.RegisterRoutedEvent("ValueChanged", RoutingStrategy.Bubble, typeof(DoubleValueChangedEventHandler), typeof(TouchNumericTextBox));
        public event DoubleValueChangedEventHandler ValueChanged
        {
            add { AddHandler(ValueChangedEvent, value); }
            remove { RemoveHandler(ValueChangedEvent, value); }
        }

        public double Value
        {
            get { return (double)GetValue(ValueProperty); }
            set { SetValue(ValueProperty, value); }
        }
        public static readonly DependencyProperty ValueProperty =
            DependencyProperty.Register("Value", typeof(double), typeof(TouchNumericTextBox), new FrameworkPropertyMetadata(0.0, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault, (d, e) => (d as TouchNumericTextBox).OnValueChanged(), (d, e) => (d as TouchNumericTextBox).CoerceValue(d, e), false, UpdateSourceTrigger.Explicit));

        public String Watermark
        {
            get { return (String)GetValue(WatermarkProperty); }
            set { SetValue(WatermarkProperty, value); }
        }
        public static readonly DependencyProperty WatermarkProperty =
            DependencyProperty.Register("Watermark", typeof(String), typeof(TouchNumericTextBox), new PropertyMetadata(null));



        public bool DisplayWatermarkHint
        {
            get { return (bool)GetValue(DisplayWatermarkHintProperty); }
            set { SetValue(DisplayWatermarkHintProperty, value); }
        }
        public static readonly DependencyProperty DisplayWatermarkHintProperty =
            DependencyProperty.Register("DisplayWatermarkHint", typeof(bool), typeof(TouchNumericTextBox), new PropertyMetadata(false));



        public String StringFormat
        {
            get { return (String)GetValue(StringFormatProperty); }
            set { SetValue(StringFormatProperty, value); }
        }
        public static readonly DependencyProperty StringFormatProperty =
            DependencyProperty.Register("StringFormat", typeof(String), typeof(TouchNumericTextBox), new PropertyMetadata(null));

        public bool HasDecimalPoint
        {
            get { return (bool)GetValue(HasDecimalPointProperty); }
            set { SetValue(HasDecimalPointProperty, value); }
        }
        public static readonly DependencyProperty HasDecimalPointProperty =
            DependencyProperty.Register("HasDecimalPoint", typeof(bool), typeof(TouchNumericTextBox), new PropertyMetadata(false));

        public double Minimum
        {
            get { return (double)GetValue(MinimumProperty); }
            set { SetValue(MinimumProperty, value); }
        }
        public static readonly DependencyProperty MinimumProperty =
            DependencyProperty.Register("Minimum", typeof(double), typeof(TouchNumericTextBox), new PropertyMetadata(0.0));

        public double Maximum
        {
            get { return (double)GetValue(MaximumProperty); }
            set { SetValue(MaximumProperty, value); }
        }
        public static readonly DependencyProperty MaximumProperty =
            DependencyProperty.Register("Maximum", typeof(double), typeof(TouchNumericTextBox), new PropertyMetadata(100.0));

        public double JoggingFactor
        {
            get { return (double)GetValue(JoggingFactorProperty); }
            set { SetValue(JoggingFactorProperty, value); }
        }
        public static readonly DependencyProperty JoggingFactorProperty =
            DependencyProperty.Register("JoggingFactor", typeof(double), typeof(TouchNumericTextBox), new PropertyMetadata(1.0));

        public bool AutoCalculateJogStep
        {
            get { return (bool)GetValue(AutoCalculateJogStepProperty); }
            set { SetValue(AutoCalculateJogStepProperty, value); }
        }
        public static readonly DependencyProperty AutoCalculateJogStepProperty =
            DependencyProperty.Register("AutoCalculateJogStep", typeof(bool), typeof(TouchNumericTextBox), new PropertyMetadata(true));

        public override void OnApplyTemplate()
        {
            base.OnApplyTemplate();

            _text_box = GetTemplateChild("PART_TextBox") as TextBox;
            _text_block = GetTemplateChild("PART_TextDisplay") as TextBlock;
            _text_box.PreviewTextInput += _text_box_PreviewTextInput;
            _text_box.PreviewKeyDown += _text_box_PreviewKeyDown;
            _text_box.LostFocus += _text_box_LostFocus;
            _text_box.GotFocus += _text_box_GotFocus;
            _text_box.TextChanged += _text_box_TextChanged;

            Value = Value;

            OnValueChanged();
        }

        private async void _text_box_GotFocus(object sender, RoutedEventArgs e)
        {
            await Task.Delay(50);

            if (FocusSelectionMode == FocusSelectionMode.SelectAll)
            {
                _text_box.SelectAll();
            }
            else if (FocusSelectionMode == FocusSelectionMode.ScrollToEnd)
            {
                _text_box.CaretIndex = _text_box.Text.Length;
            }
        }

        private object CoerceValue(DependencyObject d, object e)
        {
            double value = (double)e;

            if (_text_box != null) //Min and max not being set yet...
            {
                if (!HasDecimalPoint)
                {
                    value = Math.Round(value, 0);
                }

                if (value < Minimum)
                {
                    value = Minimum;
                }
                else if (value > Maximum)
                {
                    value = Maximum;
                }
            }

            return value;
        }

        private void _text_box_LostFocus(object sender, RoutedEventArgs e)
        {
            double d = 0.0;

            if (double.TryParse(_text_box.Text, out d))
            {
                Value = d;
                _text_box.Text = Value.ToString();
            }

            _text_block.Text = Value.ToString(StringFormat);
        }

        private void _text_box_PreviewKeyDown(object sender, KeyEventArgs e)
        {
            if (e.Key == Key.Space)
            {
                e.Handled = true;
            }
        }

        private void OnValueChanged()
        {
            if (_text_box != null && !_prevent_text_change)
            {
                if (StringFormat != null)
                {
                    _text_box.Text = Value.ToString(StringFormat);
                }
                else
                {
                    _text_box.Text = Value.ToString();
                }

                _text_block.Text = _text_box.Text;
            }

            if (Value != _lastValue)
            {
                BindingExpression b = GetBindingExpression(ValueProperty);

                if (b != null)
                {
                    b.UpdateSource();
                }

                _lastValue = Value;

                DoubleValueChangedEventArgs args = new DoubleValueChangedEventArgs(ValueChangedEvent, this, Value);
                RaiseEvent(args);
            }
        }

        private void _text_box_PreviewTextInput(object sender, TextCompositionEventArgs e)
        {
            if (e.Text == "." && _text_box.Text.Contains('.'))
            {
                e.Handled = true;
                return;
            }

            if (e.Text == "-" && !_text_box.Text.Contains("-"))
            {
                e.Handled = false;
                return;
            }
            else if (e.Text == "-")
            {
                e.Handled = true;
                return;
            }

            if (HasDecimalPoint)
            {
                e.Handled = !regex_double.IsMatch(e.Text);
            }
            else
            {
                e.Handled = !regex_integer.IsMatch(e.Text);
            }
        }

        private void _text_box_TextChanged(object sender, TextChangedEventArgs e)
        {
            double d = 0.0;

            if (double.TryParse(_text_box.Text, out d))
            {
                _prevent_text_change = true;
                Value = d;
                _prevent_text_change = false;
            }
        }

        static TouchNumericTextBox()
        {
            DefaultStyleKeyProperty.OverrideMetadata(typeof(TouchNumericTextBox), new FrameworkPropertyMetadata(typeof(TouchNumericTextBox)));
        }
    }
}