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

FrmToolLayerReHeight.cs « Forms « UVtools.GUI - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7d0c86285e6999248fd4223292e5cca587afce1 (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
/*
 *                     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;


namespace UVtools.GUI.Forms
{
    public partial class FrmToolLayerReHeight : Form
    {
        private uint LayerCount { get; }
        private decimal LayerHeight { get; }

        #region Constructors
        public FrmToolLayerReHeight(uint layerCount, float layerHeight)
        {
            InitializeComponent();
            DialogResult = DialogResult.Cancel;

            LayerCount = layerCount;
            LayerHeight = (decimal) layerHeight;

            lbCurrent.Text = $"Current layers: {LayerCount} at {layerHeight}mm";

            for (byte i = 2; i < 255; i++)
            {
                var countStr = (LayerCount / (decimal)i).ToString();
                if (countStr.IndexOf(".") >= 0) continue; // Cant multiply layers
                countStr = (LayerHeight / i).ToString();
                int decimalCount = countStr.Substring(countStr.IndexOf(".")).Length;
                if (decimalCount > 2) continue; // Cant multiply height

                cbMultiplier.Items.Add($"/ {i}");
            }

            for (byte i = 2; i < 255; i++)
            {
                var countStr = (LayerCount / (decimal)i).ToString(CultureInfo.InvariantCulture);
                if (countStr.IndexOf(".", StringComparison.Ordinal) >= 0) continue; // Cant multiply layers
                if(LayerHeight * i > 0.2m) break;

                countStr = (LayerHeight * i).ToString(CultureInfo.InvariantCulture);
                int decimalCount = countStr.Substring(countStr.IndexOf(".", StringComparison.Ordinal)).Length;
                if (decimalCount > 2) continue; // Cant multiply height

                cbMultiplier.Items.Add($"x {i}");
            }
        }
        #endregion

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

        #endregion

        #region Events
        private void EventClick(object sender, EventArgs e)
        {
            if (ReferenceEquals(sender, btnOk))
            {
                if (!btnOk.Enabled) return;


                if (MessageBox.Show($"Are you sure you want change layer height?", Text, MessageBoxButtons.YesNo,
                    MessageBoxIcon.Question) == DialogResult.Yes)
                {
                    DialogResult = DialogResult.OK;
                    Close();
                }

                return;
            }

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

        #endregion

        #region Methods


        #endregion

        
    }
}