87 lines
3.1 KiB
C++
87 lines
3.1 KiB
C++
|
#include "dialogpointofintersection.h"
|
||
|
#include "ui_dialogpointofintersection.h"
|
||
|
|
||
|
DialogPointOfIntersection::DialogPointOfIntersection(const VContainer *data, Draw::Draws mode, QWidget *parent) :
|
||
|
DialogTool(data, mode, parent), ui(new Ui::DialogPointOfIntersection), number(0), pointName(QString()),
|
||
|
firstPointId(0), secondPointId(0){
|
||
|
ui->setupUi(this);
|
||
|
labelEditNamePoint = ui->labelEditNamePoint;
|
||
|
bOk = ui->buttonBox->button(QDialogButtonBox::Ok);
|
||
|
connect(bOk, &QPushButton::clicked, this, &DialogPointOfIntersection::DialogAccepted);
|
||
|
flagName = false;
|
||
|
CheckState();
|
||
|
QPushButton *bCansel = ui->buttonBox->button(QDialogButtonBox::Cancel);
|
||
|
connect(bCansel, &QPushButton::clicked, this, &DialogPointOfIntersection::DialogRejected);
|
||
|
FillComboBoxPoints(ui->comboBoxFirstPoint);
|
||
|
FillComboBoxPoints(ui->comboBoxSecondPoint);
|
||
|
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogPointOfIntersection::NamePointChanged);
|
||
|
}
|
||
|
|
||
|
DialogPointOfIntersection::~DialogPointOfIntersection(){
|
||
|
delete ui;
|
||
|
}
|
||
|
|
||
|
void DialogPointOfIntersection::setSecondPointId(const qint64 &value, const qint64 &id){
|
||
|
secondPointId = value;
|
||
|
setCurrentPointId(ui->comboBoxSecondPoint, secondPointId, value, id);
|
||
|
}
|
||
|
|
||
|
void DialogPointOfIntersection::ChoosedObject(qint64 id, Scene::Scenes type){
|
||
|
if(idDetail == 0 && mode == Draw::Modeling){
|
||
|
if(type == Scene::Detail){
|
||
|
idDetail = id;
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
if(mode == Draw::Modeling){
|
||
|
if(!CheckObject(id)){
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
if(type == Scene::Point){
|
||
|
VPointF point;
|
||
|
if(mode == Draw::Calculation){
|
||
|
point = data->GetPoint(id);
|
||
|
} else {
|
||
|
point = data->GetModelingPoint(id);
|
||
|
}
|
||
|
if(number == 0){
|
||
|
qint32 index = ui->comboBoxFirstPoint->findText(point.name());
|
||
|
if ( index != -1 ) { // -1 for not found
|
||
|
ui->comboBoxFirstPoint->setCurrentIndex(index);
|
||
|
number++;
|
||
|
emit ToolTip(tr("Select point horizontally"));
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
if(number == 1){
|
||
|
qint32 index = ui->comboBoxSecondPoint->findText(point.name());
|
||
|
if ( index != -1 ) { // -1 for not found
|
||
|
ui->comboBoxSecondPoint->setCurrentIndex(index);
|
||
|
number = 0;
|
||
|
emit ToolTip("");
|
||
|
}
|
||
|
if(!isInitialized){
|
||
|
this->show();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void DialogPointOfIntersection::DialogAccepted(){
|
||
|
pointName = ui->lineEditNamePoint->text();
|
||
|
firstPointId = getCurrentPointId(ui->comboBoxFirstPoint);
|
||
|
secondPointId = getCurrentPointId(ui->comboBoxSecondPoint);
|
||
|
emit DialogClosed(QDialog::Accepted);
|
||
|
}
|
||
|
|
||
|
void DialogPointOfIntersection::setFirstPointId(const qint64 &value, const qint64 &id){
|
||
|
firstPointId = value;
|
||
|
setCurrentPointId(ui->comboBoxFirstPoint, firstPointId, value, id);
|
||
|
}
|
||
|
|
||
|
void DialogPointOfIntersection::setPointName(const QString &value){
|
||
|
pointName = value;
|
||
|
ui->lineEditNamePoint->setText(pointName);
|
||
|
}
|