Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FrmInputBox.cs « Forms « UVtools.GUI - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d014dc5877d73033496ddf0347593ad449b899c (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
/*
 *                     GNU AFFERO GENERAL PUBLIC LICENSE
 *                       Version 3, 19 November 2007
 *  Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 *  Everyone is permitted to copy and distribute verbatim copies
 *  of this license document, but changing it is not allowed.
 */

using System;
using System.Globalization;
using System.Windows.Forms;
using UVtools.Core;

namespace UVtools.GUI.Forms
{
    public partial class FrmInputBox : Form
    {
        #region Properties
        private string _description;
        public string Description
        {
            get => _description;
            set { 
                lbDescription.Text = value;
                _description = value;
            }
        }

        public string ValueUint { get; }
        public decimal NewValue
        {
            get => numNewValue.Value;
            private set => numNewValue.Value = value;
        }

        private decimal _currentValue;
        public decimal CurrentValue
        {
            get => _currentValue;
            set { _currentValue = value; tbCurrentValue.Text = value.ToString(CultureInfo.InvariantCulture)+ValueUint; }
        }
        #endregion

        #region Constructors
        public FrmInputBox()
        {
            InitializeComponent();
            DialogResult = DialogResult.Cancel;
            numNewValue.Select();

            
        }

        public FrmInputBox(FileFormat.PrintParameterModifier modifier, decimal currentValue, byte decimals = 2) : this(modifier.Name,
            modifier.Description, currentValue, modifier.ValueUnit, modifier.Minimum, modifier.Maximum, decimals)
        { }
        public FrmInputBox(string title, string description, decimal currentValue, string valueUnit = null, decimal minValue = 0, decimal maxValue = 100, byte decimals = 2, string valueLabel = "Value") : this()
        {
            Text = title;
            lbCurrentValue.Text = $"Current {valueLabel}";
            lbNewValue.Text = $"New {valueLabel}";
            Description = description;
            ValueUint = valueUnit ?? string.Empty;
            CurrentValue = currentValue;
            numNewValue.Minimum = minValue;
            numNewValue.Maximum = maxValue;
            numNewValue.DecimalPlaces = decimals;
            NewValue = currentValue;
        }
        #endregion

        #region Overrides
        protected override void OnKeyUp(KeyEventArgs e)
        {
            base.OnKeyUp(e);
            if (e.KeyCode == Keys.Enter)
            {
                btnModify.PerformClick();
                e.Handled = true;
            }
        }

        #endregion

        #region Events
        private void ValueChanged(object sender, EventArgs e)
        {
            if (ReferenceEquals(sender, numNewValue))
            {
                btnModify.Enabled = numNewValue.Value != CurrentValue;

                return;
            }
        }

        private void ItemClicked(object sender, EventArgs e)
        {
            if (ReferenceEquals(sender, btnModify))
            {
                if (!btnModify.Enabled) return;
                if (MessageBox.Show($"Are you sure you want to {Description}?\nFrom {CurrentValue}{ValueUint} to {NewValue}{ValueUint}", Text, MessageBoxButtons.YesNo,
                    MessageBoxIcon.Question) == DialogResult.Yes)
                {
                    DialogResult = DialogResult.OK;
                    if (NewValue == CurrentValue) // Should never happen!
                    {
                        DialogResult = DialogResult.Cancel;
                    }
                    Close();
                }

                return;
            }

            if (ReferenceEquals(sender, btnCancel))
            {
                DialogResult = DialogResult.Cancel;
                return;
            }
        }
        #endregion
    }
}