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

ToolPatternControl.axaml.cs « Tools « Controls « UVtools.WPF - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb29ad4f8d6f5e735282c55f2b1257d3c9303cdb (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
using System;
using Avalonia.Markup.Xaml;
using UVtools.Core.Operations;
using UVtools.WPF.Extensions;
using UVtools.WPF.Windows;

namespace UVtools.WPF.Controls.Tools
{
    public class ToolPatternControl : ToolControl
    {
        public OperationPattern Operation => BaseOperation as OperationPattern;
        private bool _isDefaultAnchorChecked = true;

        public bool IsDefaultAnchorChecked
        {
            get => _isDefaultAnchorChecked;
            set => RaiseAndSetIfChanged(ref _isDefaultAnchorChecked, value);
        }

        public ToolPatternControl()
        {
            InitializeComponent();
            var roi = App.MainWindow.ROI;
            BaseOperation = new OperationPattern(roi.IsEmpty ? App.SlicerFile.LayerManager.BoundingRectangle : roi, App.SlicerFile.Resolution);

            if (Operation.MaxRows < 2 && Operation.MaxCols < 2)
            {
                App.MainWindow.MessageBoxInfo("The available free volume is not enough to pattern this object.\n" +
                                              "To run this tool the free space must allow at least 1 copy.", "Unable to pattern");
                CanRun = false;
                return;
            }


            Operation.PropertyChanged += (sender, e) =>
            {
                if (e.PropertyName.Equals(nameof(Operation.IsWithinBoundary)))
                {
                    ParentWindow.ButtonOkEnabled = Operation.IsWithinBoundary;
                }
            };
        }

        private void InitializeComponent()
        {
            AvaloniaXamlLoader.Load(this);
        }

        public override void Callback(ToolWindow.Callbacks callback)
        {
            switch (callback)
            {
                case ToolWindow.Callbacks.Init:
                    ParentWindow.IsButton1Visible = true;
                    break;
                case ToolWindow.Callbacks.ClearROI:
                    Operation.SetRoi(App.SlicerFile.LayerManager.BoundingRectangle);
                    break;
                case ToolWindow.Callbacks.Button1:
                    Operation.Fill();
                    IsDefaultAnchorChecked = true;
                    break;
            }
        }
    }
}