File size: 3,153 Bytes
a5ffdcd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/****************************************************************************
**
* Options widget for ModifyBreakDivide action that breaks line, arc or circle
* to segments by points of intersection with other entities.

Copyright (C) 2024 LibreCAD.org
Copyright (C) 2024 sand1024

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
**********************************************************************/
#include "lc_actionmodifybreakdivide.h"
#include "lc_modifybreakdivideoptions.h"
#include "ui_lc_modifybreakdivideoptions.h"

LC_ModifyBreakDivideOptions::LC_ModifyBreakDivideOptions() :
    LC_ActionOptionsWidgetBase(RS2::ActionModifyBreakDivide, "Modify", "BreakDivide"),
    ui(new Ui::LC_ModifyBreakDivideOptions) {
    ui->setupUi(this);
    connect(ui->cbRemoveSegments, &QCheckBox::clicked, this, &LC_ModifyBreakDivideOptions::onRemoveSegmentsClicked);
    connect(ui->cbRemoveSelected, &QCheckBox::clicked, this, &LC_ModifyBreakDivideOptions::onRemoveSelectedClicked);
}

void LC_ModifyBreakDivideOptions::doSetAction(RS_ActionInterface *a, bool update){
    m_action = dynamic_cast<LC_ActionModifyBreakDivide *>(a);
    bool removeSegments;
    bool removeSelected;

    if (update){
        removeSelected = m_action->isRemoveSelected();
        removeSegments = m_action->isRemoveSegment();
    }
    else{
        removeSegments = loadBool("RemoveSegments", true);
        removeSelected = loadBool("RemoveSelected", true);
    }
    setRemoveSegmentsToActionAndView(removeSegments);
    setRemoveSelectedToActionAndView(removeSelected);
}

void LC_ModifyBreakDivideOptions::doSaveSettings() {
    save("RemoveSegments", ui->cbRemoveSegments->isChecked());
    save("RemoveSelected", ui->cbRemoveSelected->isChecked());
}

void LC_ModifyBreakDivideOptions::onRemoveSegmentsClicked(bool clicked) {
    if (m_action != nullptr) {
        setRemoveSegmentsToActionAndView(clicked);
    }
}

void LC_ModifyBreakDivideOptions::onRemoveSelectedClicked(bool clicked) {
    if (m_action != nullptr) {
        setRemoveSelectedToActionAndView(clicked);
    }
}

void LC_ModifyBreakDivideOptions::setRemoveSegmentsToActionAndView(bool val) {
    m_action->setRemoveSegment(val);
    ui->cbRemoveSegments->setChecked(val);
    ui->cbRemoveSelected->setEnabled(val);
}

void LC_ModifyBreakDivideOptions::setRemoveSelectedToActionAndView(bool val) {
    m_action->setRemoveSelected(val);
    ui->cbRemoveSelected->setChecked(val);
}

void LC_ModifyBreakDivideOptions::languageChange() {
    ui->retranslateUi(this);
}