2015-07-24 12:06:39 +02:00
|
|
|
|
/************************************************************************
|
2015-07-10 11:49:37 +02:00
|
|
|
|
**
|
|
|
|
|
** @file tmainwindow.cpp
|
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
|
** @date 10 7, 2015
|
|
|
|
|
**
|
|
|
|
|
** @brief
|
|
|
|
|
** @copyright
|
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
|
** Copyright (C) 2015 Valentina project
|
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
|
|
|
**
|
|
|
|
|
** Valentina 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 3 of the License, or
|
|
|
|
|
** (at your option) any later version.
|
|
|
|
|
**
|
|
|
|
|
** Valentina 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 Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
**
|
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "tmainwindow.h"
|
|
|
|
|
#include "ui_tmainwindow.h"
|
2015-07-12 19:38:30 +02:00
|
|
|
|
#include "dialogs/dialogabouttape.h"
|
2015-07-13 12:48:29 +02:00
|
|
|
|
#include "dialogs/dialognewmeasurements.h"
|
2015-07-21 17:28:20 +02:00
|
|
|
|
#include "../vpatterndb/calculator.h"
|
2015-07-22 11:44:31 +02:00
|
|
|
|
#include "../ifc/ifcdef.h"
|
2015-07-22 11:47:51 +02:00
|
|
|
|
#include "../qmuparser/qmudef.h"
|
2015-07-24 14:06:53 +02:00
|
|
|
|
#include "../vtools/dialogs/support/dialogeditwrongformula.h"
|
|
|
|
|
#include "mapplication.h" // Should be last because of definning qApp
|
2015-07-10 11:49:37 +02:00
|
|
|
|
|
2015-07-18 14:39:33 +02:00
|
|
|
|
#include <QFileDialog>
|
|
|
|
|
#include <QFileInfo>
|
|
|
|
|
#include <QMessageBox>
|
2015-07-21 15:18:10 +02:00
|
|
|
|
#include <QComboBox>
|
2015-07-18 14:39:33 +02:00
|
|
|
|
|
2015-07-21 18:24:47 +02:00
|
|
|
|
#define DIALOG_MAX_FORMULA_HEIGHT 64
|
|
|
|
|
|
2015-07-10 11:49:37 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
TMainWindow::TMainWindow(QWidget *parent)
|
|
|
|
|
:QMainWindow(parent),
|
2015-07-15 09:16:59 +02:00
|
|
|
|
ui(new Ui::TMainWindow),
|
|
|
|
|
m(nullptr),
|
2015-07-16 11:38:54 +02:00
|
|
|
|
data(nullptr),
|
|
|
|
|
mUnit(Unit::Cm),
|
2015-07-18 14:39:33 +02:00
|
|
|
|
mType(MeasurementsType::Individual),
|
2015-07-21 15:18:10 +02:00
|
|
|
|
curFile(),
|
|
|
|
|
gradationHeights(nullptr),
|
2015-07-21 18:24:47 +02:00
|
|
|
|
gradationSizes(nullptr),
|
|
|
|
|
formulaBaseHeight(0)
|
2015-07-10 11:49:37 +02:00
|
|
|
|
{
|
|
|
|
|
ui->setupUi(this);
|
2015-07-10 13:22:46 +02:00
|
|
|
|
ui->tabWidget->setVisible(false);
|
2015-07-12 16:19:53 +02:00
|
|
|
|
|
2015-07-21 15:18:10 +02:00
|
|
|
|
ui->mainToolBar->setContextMenuPolicy(Qt::PreventContextMenu);
|
|
|
|
|
ui->toolBarGradation->setContextMenuPolicy(Qt::PreventContextMenu);
|
|
|
|
|
ui->toolBarGradation->setVisible(false);
|
|
|
|
|
|
2015-07-12 16:19:53 +02:00
|
|
|
|
SetupMenu();
|
2015-07-18 14:50:34 +02:00
|
|
|
|
|
|
|
|
|
setWindowTitle(tr("untitled"));
|
2015-07-10 11:49:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
TMainWindow::~TMainWindow()
|
|
|
|
|
{
|
2015-07-15 09:16:59 +02:00
|
|
|
|
delete data;
|
|
|
|
|
delete m;
|
2015-07-10 11:49:37 +02:00
|
|
|
|
delete ui;
|
|
|
|
|
}
|
2015-07-10 13:14:55 +02:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::LoadFile(const QString &path)
|
2015-07-12 16:19:53 +02:00
|
|
|
|
{
|
|
|
|
|
ui->labelToolTip->setVisible(false);
|
|
|
|
|
ui->tabWidget->setVisible(true);
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-13 12:48:29 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::FileNew()
|
|
|
|
|
{
|
2015-07-15 09:16:59 +02:00
|
|
|
|
if (m == nullptr)
|
2015-07-13 12:48:29 +02:00
|
|
|
|
{
|
2015-07-15 09:16:59 +02:00
|
|
|
|
DialogNewMeasurements measurements(this);
|
|
|
|
|
if (measurements.exec() == QDialog::Rejected)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-07-13 12:48:29 +02:00
|
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
|
mUnit = measurements.MUnit();
|
|
|
|
|
mType = measurements.Type();
|
|
|
|
|
|
|
|
|
|
data = new VContainer(qApp->TrVars(), &mUnit);
|
2015-07-21 15:18:10 +02:00
|
|
|
|
data->SetHeight(measurements.BaseHeight());
|
|
|
|
|
data->SetSize(measurements.BaseSize());
|
2015-07-16 11:38:54 +02:00
|
|
|
|
|
|
|
|
|
if (mType == MeasurementsType::Standard)
|
|
|
|
|
{
|
|
|
|
|
m = new VMeasurements(mUnit, measurements.BaseSize(), measurements.BaseHeight(), data);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
m = new VMeasurements(mUnit, data);
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-18 14:39:33 +02:00
|
|
|
|
SetCurrentFile("");
|
|
|
|
|
MeasurementsWasSaved(false);
|
|
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
|
InitWindow();
|
2015-07-15 09:16:59 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
qApp->NewMainWindow();
|
|
|
|
|
qApp->MainWindow()->FileNew();
|
|
|
|
|
}
|
2015-07-13 12:48:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-12 17:56:34 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::FileOpen()
|
|
|
|
|
{
|
2015-07-15 09:16:59 +02:00
|
|
|
|
if (m == nullptr)
|
|
|
|
|
{
|
2015-07-12 17:56:34 +02:00
|
|
|
|
|
2015-07-15 09:16:59 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
qApp->NewMainWindow();
|
|
|
|
|
qApp->MainWindow()->FileOpen();
|
|
|
|
|
}
|
2015-07-12 17:56:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-18 15:01:57 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::closeEvent(QCloseEvent *event)
|
|
|
|
|
{
|
|
|
|
|
if (MaybeSave())
|
|
|
|
|
{
|
|
|
|
|
event->accept();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
event->ignore();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-12 17:56:34 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::FileSave()
|
|
|
|
|
{
|
2015-07-18 14:39:33 +02:00
|
|
|
|
if (curFile.isEmpty())
|
|
|
|
|
{
|
|
|
|
|
return FileSaveAs();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
QString error;
|
|
|
|
|
bool result = SaveMeasurements(curFile, error);
|
|
|
|
|
if (not result)
|
|
|
|
|
{
|
|
|
|
|
QMessageBox messageBox;
|
|
|
|
|
messageBox.setIcon(QMessageBox::Warning);
|
|
|
|
|
messageBox.setInformativeText(tr("Could not save file"));
|
|
|
|
|
messageBox.setDefaultButton(QMessageBox::Ok);
|
|
|
|
|
messageBox.setDetailedText(error);
|
|
|
|
|
messageBox.setStandardButtons(QMessageBox::Ok);
|
|
|
|
|
messageBox.exec();
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-07-12 17:56:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::FileSaveAs()
|
|
|
|
|
{
|
2015-07-18 14:39:33 +02:00
|
|
|
|
QString filters;
|
|
|
|
|
QString fName = tr("measurements");
|
|
|
|
|
QString suffix;
|
|
|
|
|
if (mType == MeasurementsType::Individual)
|
|
|
|
|
{
|
|
|
|
|
filters = tr("Standard measurements (*.vst)");
|
|
|
|
|
suffix = "vst";
|
|
|
|
|
fName += "." + suffix;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
filters = tr("Individual measurements (*.vit)");
|
|
|
|
|
suffix = "vit";
|
|
|
|
|
fName += "." + suffix;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString dir;
|
|
|
|
|
if (curFile.isEmpty())
|
|
|
|
|
{
|
|
|
|
|
if (mType == MeasurementsType::Individual)
|
|
|
|
|
{
|
2015-07-24 14:06:53 +02:00
|
|
|
|
dir = qApp->TapeSettings()->GetPathStandardMeasurements() + "/" + fName;
|
2015-07-18 14:39:33 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-07-24 14:06:53 +02:00
|
|
|
|
dir = qApp->TapeSettings()->GetPathIndividualMeasurements() + "/" + fName;
|
2015-07-18 14:39:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
dir = QFileInfo(curFile).absolutePath() + "/" + fName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString fileName = QFileDialog::getSaveFileName(this, tr("Save as"), dir, filters);
|
|
|
|
|
|
|
|
|
|
if (fileName.isEmpty())
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-07-12 17:56:34 +02:00
|
|
|
|
|
2015-07-18 14:39:33 +02:00
|
|
|
|
QFileInfo f( fileName );
|
|
|
|
|
if (f.suffix().isEmpty() && f.suffix() != suffix)
|
|
|
|
|
{
|
|
|
|
|
fileName += "." + suffix;
|
|
|
|
|
}
|
|
|
|
|
QString error;
|
|
|
|
|
bool result = SaveMeasurements(fileName, error);
|
|
|
|
|
if (result == false)
|
|
|
|
|
{
|
|
|
|
|
QMessageBox messageBox;
|
|
|
|
|
messageBox.setIcon(QMessageBox::Warning);
|
|
|
|
|
messageBox.setInformativeText(tr("Could not save file"));
|
|
|
|
|
messageBox.setDefaultButton(QMessageBox::Ok);
|
|
|
|
|
messageBox.setDetailedText(error);
|
|
|
|
|
messageBox.setStandardButtons(QMessageBox::Ok);
|
|
|
|
|
messageBox.exec();
|
|
|
|
|
}
|
2015-07-12 17:56:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::AboutToShowWindowMenu()
|
|
|
|
|
{
|
|
|
|
|
ui->menuWindow->clear();
|
2015-07-15 09:16:59 +02:00
|
|
|
|
QList<TMainWindow*> windows = qApp->MainWindows();
|
2015-07-12 17:56:34 +02:00
|
|
|
|
for (int i = 0; i < windows.count(); ++i)
|
|
|
|
|
{
|
|
|
|
|
TMainWindow *window = windows.at(i);
|
2015-07-18 14:50:34 +02:00
|
|
|
|
|
|
|
|
|
QString title = window->windowTitle();
|
|
|
|
|
const int index = title.lastIndexOf("[*]");
|
|
|
|
|
if (index != -1)
|
|
|
|
|
{
|
|
|
|
|
title.replace(index, 3, "*");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAction *action = ui->menuWindow->addAction(title, this, SLOT(ShowWindow()));
|
2015-07-12 17:56:34 +02:00
|
|
|
|
action->setData(i);
|
|
|
|
|
action->setCheckable(true);
|
|
|
|
|
if (window == this)
|
|
|
|
|
{
|
|
|
|
|
action->setChecked(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::ShowWindow()
|
|
|
|
|
{
|
|
|
|
|
if (QAction *action = qobject_cast<QAction*>(sender()))
|
|
|
|
|
{
|
|
|
|
|
const QVariant v = action->data();
|
|
|
|
|
if (v.canConvert<int>())
|
|
|
|
|
{
|
|
|
|
|
const int offset = qvariant_cast<int>(v);
|
2015-07-15 09:16:59 +02:00
|
|
|
|
QList<TMainWindow*> windows = qApp->MainWindows();
|
2015-07-12 17:56:34 +02:00
|
|
|
|
windows.at(offset)->activateWindow();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::AboutApplication()
|
|
|
|
|
{
|
2015-07-12 19:38:30 +02:00
|
|
|
|
DialogAboutTape * aboutDialog = new DialogAboutTape(this);
|
|
|
|
|
aboutDialog->setAttribute(Qt::WA_DeleteOnClose, true);
|
|
|
|
|
aboutDialog->show();
|
2015-07-12 17:56:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-18 13:08:44 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SaveGivenName()
|
|
|
|
|
{
|
|
|
|
|
m->SetGivenName(ui->lineEditGivenName->text());
|
2015-07-18 14:53:37 +02:00
|
|
|
|
MeasurementsWasSaved(false);
|
2015-07-18 13:08:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SaveFamilyName()
|
|
|
|
|
{
|
|
|
|
|
m->SetFamilyName(ui->lineEditFamilyName->text());
|
2015-07-18 14:53:37 +02:00
|
|
|
|
MeasurementsWasSaved(false);
|
2015-07-18 13:08:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SaveEmail()
|
|
|
|
|
{
|
|
|
|
|
m->SetEmail(ui->lineEditEmail->text());
|
2015-07-18 14:53:37 +02:00
|
|
|
|
MeasurementsWasSaved(false);
|
2015-07-18 13:08:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SaveSex(int index)
|
|
|
|
|
{
|
|
|
|
|
m->SetSex(static_cast<SexType>(ui->comboBoxSex->itemData(index).toInt()));
|
2015-07-18 14:53:37 +02:00
|
|
|
|
MeasurementsWasSaved(false);
|
2015-07-18 13:08:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SaveBirthDate(const QDate &date)
|
|
|
|
|
{
|
|
|
|
|
m->SetBirthDate(date);
|
2015-07-18 14:53:37 +02:00
|
|
|
|
MeasurementsWasSaved(false);
|
2015-07-18 13:08:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SaveNotes()
|
|
|
|
|
{
|
|
|
|
|
m->SetNotes(ui->plainTextEditNotes->toPlainText());
|
2015-07-18 14:53:37 +02:00
|
|
|
|
MeasurementsWasSaved(false);
|
2015-07-18 13:08:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::ReadOnly(bool ro)
|
|
|
|
|
{
|
|
|
|
|
ui->actionReadOnly->setChecked(ro);
|
|
|
|
|
if (ro)
|
|
|
|
|
{
|
|
|
|
|
ui->actionReadOnly->setIcon(QIcon("://tapeicon/24x24/padlock_locked.png"));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->actionReadOnly->setIcon(QIcon("://tapeicon/24x24/padlock_opened.png"));
|
|
|
|
|
}
|
|
|
|
|
m->SetReadOnly(ro);
|
2015-07-18 15:23:18 +02:00
|
|
|
|
MeasurementsWasSaved(false);
|
|
|
|
|
|
|
|
|
|
ui->plainTextEditNotes->setDisabled(ro);
|
|
|
|
|
ui->actionAddCustom->setDisabled(ro);
|
|
|
|
|
ui->actionAddKnown->setDisabled(ro);
|
|
|
|
|
|
|
|
|
|
if (mType == MeasurementsType::Individual)
|
|
|
|
|
{
|
|
|
|
|
ui->lineEditGivenName->setDisabled(ro);
|
|
|
|
|
ui->lineEditFamilyName->setDisabled(ro);
|
|
|
|
|
ui->dateEditBirthDate->setDisabled(ro);
|
|
|
|
|
ui->comboBoxSex->setDisabled(ro);
|
|
|
|
|
ui->lineEditEmail->setDisabled(ro);
|
|
|
|
|
}
|
2015-07-21 17:28:20 +02:00
|
|
|
|
|
|
|
|
|
ui->groupBoxDetails->setDisabled(ro);
|
2015-07-18 13:08:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-22 08:41:04 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::Remove()
|
|
|
|
|
{
|
|
|
|
|
const int row = ui->tableWidget->currentRow();
|
|
|
|
|
|
|
|
|
|
if (row == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QTableWidgetItem *nameField = ui->tableWidget->item(ui->tableWidget->currentRow(), 0);
|
|
|
|
|
m->Remove(nameField->text());
|
|
|
|
|
|
|
|
|
|
MeasurementsWasSaved(false);
|
|
|
|
|
|
|
|
|
|
RefreshData();
|
2015-07-24 12:20:38 +02:00
|
|
|
|
|
|
|
|
|
if (ui->tableWidget->rowCount() > 0)
|
|
|
|
|
{
|
|
|
|
|
ui->tableWidget->selectRow(0);
|
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->groupBoxDetails->setEnabled(false);
|
|
|
|
|
|
|
|
|
|
ui->lineEditName->blockSignals(true);
|
|
|
|
|
ui->lineEditName->setText("");
|
|
|
|
|
ui->lineEditName->blockSignals(false);
|
|
|
|
|
|
|
|
|
|
ui->plainTextEditDescription->blockSignals(true);
|
|
|
|
|
ui->plainTextEditDescription->setPlainText("");
|
|
|
|
|
ui->plainTextEditDescription->blockSignals(false);
|
|
|
|
|
|
|
|
|
|
if (mType == MeasurementsType::Standard)
|
|
|
|
|
{
|
|
|
|
|
ui->labelCalculatedValue->blockSignals(true);
|
|
|
|
|
ui->spinBoxBaseValue->blockSignals(true);
|
|
|
|
|
ui->spinBoxInSizes->blockSignals(true);
|
|
|
|
|
ui->spinBoxInHeights->blockSignals(true);
|
|
|
|
|
|
|
|
|
|
ui->labelCalculatedValue->setText("");
|
|
|
|
|
ui->spinBoxBaseValue->setValue(0);
|
|
|
|
|
ui->spinBoxInSizes->setValue(0);
|
|
|
|
|
ui->spinBoxInHeights->setValue(0);
|
|
|
|
|
|
|
|
|
|
ui->labelCalculatedValue->blockSignals(false);
|
|
|
|
|
ui->spinBoxBaseValue->blockSignals(false);
|
|
|
|
|
ui->spinBoxInSizes->blockSignals(false);
|
|
|
|
|
ui->spinBoxInHeights->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->labelCalculatedValue->blockSignals(true);
|
|
|
|
|
ui->labelCalculatedValue->setText("");
|
|
|
|
|
ui->labelCalculatedValue->blockSignals(false);
|
|
|
|
|
|
|
|
|
|
ui->plainTextEditFormula->blockSignals(true);
|
|
|
|
|
ui->plainTextEditFormula->setPlainText("");
|
|
|
|
|
ui->plainTextEditFormula->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-07-22 08:41:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-22 09:01:34 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::MoveUp()
|
|
|
|
|
{
|
|
|
|
|
const int row = ui->tableWidget->currentRow();
|
|
|
|
|
|
|
|
|
|
if (row == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QTableWidgetItem *nameField = ui->tableWidget->item(ui->tableWidget->currentRow(), 0);
|
|
|
|
|
m->MoveUp(nameField->text());
|
|
|
|
|
|
|
|
|
|
MeasurementsWasSaved(false);
|
|
|
|
|
|
|
|
|
|
RefreshData();
|
2015-07-24 12:11:03 +02:00
|
|
|
|
|
|
|
|
|
ui->tableWidget->blockSignals(true);
|
|
|
|
|
ui->tableWidget->selectRow(row-1);
|
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
|
|
|
|
|
ui->tableWidget->blockSignals(false);
|
|
|
|
|
|
|
|
|
|
Controls(); // Buttons remove, up, down
|
2015-07-22 09:01:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::MoveDown()
|
|
|
|
|
{
|
|
|
|
|
const int row = ui->tableWidget->currentRow();
|
|
|
|
|
|
|
|
|
|
if (row == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QTableWidgetItem *nameField = ui->tableWidget->item(ui->tableWidget->currentRow(), 0);
|
|
|
|
|
m->MoveDown(nameField->text());
|
|
|
|
|
|
|
|
|
|
MeasurementsWasSaved(false);
|
|
|
|
|
|
|
|
|
|
RefreshData();
|
2015-07-24 12:11:03 +02:00
|
|
|
|
|
|
|
|
|
ui->tableWidget->blockSignals(true);
|
|
|
|
|
ui->tableWidget->selectRow(row+1);
|
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
|
|
|
|
|
ui->tableWidget->blockSignals(false);
|
|
|
|
|
|
|
|
|
|
Controls(); // Buttons remove, up, down
|
2015-07-22 09:01:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-24 14:06:53 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::Fx()
|
|
|
|
|
{
|
|
|
|
|
const int row = ui->tableWidget->currentRow();
|
|
|
|
|
|
|
|
|
|
if (row == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QTableWidgetItem *nameField = ui->tableWidget->item(row, 0);
|
|
|
|
|
QSharedPointer<VMeasurement> meash = data->GetVariable<VMeasurement>(nameField->text());
|
|
|
|
|
|
|
|
|
|
DialogEditWrongFormula *dialog = new DialogEditWrongFormula(meash->GetData(), NULL_ID, this);
|
|
|
|
|
dialog->setWindowTitle(tr("Edit measurement"));
|
|
|
|
|
|
|
|
|
|
QString text = ui->plainTextEditFormula->toPlainText();
|
|
|
|
|
text.replace("\n", " ");
|
|
|
|
|
|
|
|
|
|
dialog->SetFormula(text);
|
|
|
|
|
const QString postfix = VDomDocument::UnitsToStr(mUnit, true);//Show unit in dialog lable (cm, mm or inch)
|
|
|
|
|
dialog->setPostfix(postfix);
|
|
|
|
|
|
|
|
|
|
if (dialog->exec() == QDialog::Accepted)
|
|
|
|
|
{
|
|
|
|
|
m->SetMValue(nameField->text(), dialog->GetFormula());
|
|
|
|
|
|
|
|
|
|
MeasurementsWasSaved(false);
|
|
|
|
|
|
|
|
|
|
RefreshData();
|
|
|
|
|
|
|
|
|
|
ui->tableWidget->selectRow(row);
|
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
|
|
|
|
|
}
|
|
|
|
|
delete dialog;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-19 14:28:01 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::AddCustom()
|
|
|
|
|
{
|
|
|
|
|
ui->tableWidget->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
ui->tableWidget->blockSignals(true);
|
|
|
|
|
|
|
|
|
|
qint32 num = 1;
|
|
|
|
|
QString name;
|
|
|
|
|
do
|
|
|
|
|
{
|
2015-07-22 11:44:31 +02:00
|
|
|
|
name = QString(CustomSign + tr("M_%1")).arg(num);
|
2015-07-19 14:28:01 +02:00
|
|
|
|
num++;
|
|
|
|
|
} while (data->IsUnique(name) == false);
|
|
|
|
|
|
2015-07-21 19:26:33 +02:00
|
|
|
|
qint32 currentRow;
|
|
|
|
|
|
|
|
|
|
if (ui->tableWidget->currentRow() == -1)
|
|
|
|
|
{
|
|
|
|
|
currentRow = ui->tableWidget->rowCount();
|
|
|
|
|
ui->tableWidget->insertRow( currentRow );
|
|
|
|
|
m->AddEmpty(name);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
currentRow = ui->tableWidget->currentRow()+1;
|
|
|
|
|
ui->tableWidget->insertRow( currentRow );
|
|
|
|
|
QTableWidgetItem *nameField = ui->tableWidget->item(ui->tableWidget->currentRow(), 0);
|
|
|
|
|
m->AddEmptyAfter(nameField->text(), name);
|
|
|
|
|
}
|
2015-07-19 14:28:01 +02:00
|
|
|
|
|
|
|
|
|
VMeasurement *meash;
|
|
|
|
|
if (mType == MeasurementsType::Standard)
|
|
|
|
|
{
|
2015-07-25 07:41:04 +02:00
|
|
|
|
meash = new VMeasurement(currentRow, name, m->BaseSize(), m->BaseHeight(), 0, 0, 0);
|
2015-07-19 14:28:01 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-07-24 12:06:39 +02:00
|
|
|
|
meash = new VMeasurement(data, currentRow, name, 0, "0", true);
|
2015-07-19 14:28:01 +02:00
|
|
|
|
}
|
|
|
|
|
data->AddVariable(name, meash);
|
|
|
|
|
|
|
|
|
|
if (mType == MeasurementsType::Individual)
|
|
|
|
|
{
|
2015-07-21 19:26:33 +02:00
|
|
|
|
AddCell(name, currentRow, 0); // name
|
2015-07-21 18:13:09 +02:00
|
|
|
|
AddCell("0", currentRow, 1); // calculated value
|
|
|
|
|
AddCell("0", currentRow, 2); // formula
|
2015-07-19 14:28:01 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
AddCell(name, currentRow, 0); // name
|
|
|
|
|
AddCell("0", currentRow, 1); // calculated value
|
|
|
|
|
AddCell("0", currentRow, 3); // base value
|
|
|
|
|
AddCell("0", currentRow, 4); // in sizes
|
|
|
|
|
AddCell("0", currentRow, 5); // in heights
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ui->tableWidget->blockSignals(false);
|
|
|
|
|
|
|
|
|
|
ui->tableWidget->selectRow(currentRow);
|
2015-07-21 18:13:09 +02:00
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
|
2015-07-19 14:28:01 +02:00
|
|
|
|
|
|
|
|
|
MeasurementsWasSaved(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::AddKnown()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-21 15:18:10 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::ChangedSize(const QString &text)
|
|
|
|
|
{
|
2015-07-25 07:41:04 +02:00
|
|
|
|
const int row = ui->tableWidget->currentRow();
|
|
|
|
|
|
|
|
|
|
if (row == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-21 15:18:10 +02:00
|
|
|
|
data->SetSize(text.toInt());
|
|
|
|
|
RefreshData();
|
2015-07-25 07:41:04 +02:00
|
|
|
|
|
|
|
|
|
ui->tableWidget->blockSignals(true);
|
|
|
|
|
ui->tableWidget->selectRow(row);
|
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
|
|
|
|
|
ui->tableWidget->blockSignals(false);
|
2015-07-21 15:18:10 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::ChangedHeight(const QString &text)
|
|
|
|
|
{
|
2015-07-25 07:41:04 +02:00
|
|
|
|
const int row = ui->tableWidget->currentRow();
|
|
|
|
|
|
|
|
|
|
if (row == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-21 15:18:10 +02:00
|
|
|
|
data->SetHeight(text.toInt());
|
|
|
|
|
RefreshData();
|
2015-07-25 07:41:04 +02:00
|
|
|
|
|
|
|
|
|
ui->tableWidget->blockSignals(true);
|
|
|
|
|
ui->tableWidget->selectRow(row);
|
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
|
|
|
|
|
ui->tableWidget->blockSignals(false);
|
2015-07-21 15:18:10 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-21 17:28:20 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::ShowMData()
|
|
|
|
|
{
|
|
|
|
|
Controls(); // Buttons remove, up, down
|
|
|
|
|
|
|
|
|
|
if (ui->tableWidget->rowCount() > 0)
|
|
|
|
|
{
|
2015-07-24 12:20:38 +02:00
|
|
|
|
ui->groupBoxDetails->setEnabled(true);
|
|
|
|
|
|
2015-07-21 17:28:20 +02:00
|
|
|
|
QTableWidgetItem *nameField = ui->tableWidget->item(ui->tableWidget->currentRow(), 0);
|
|
|
|
|
QSharedPointer<VMeasurement> meash = data->GetVariable<VMeasurement>(nameField->text());
|
|
|
|
|
|
2015-07-24 12:06:39 +02:00
|
|
|
|
ui->lineEditName->blockSignals(true);
|
2015-07-21 17:28:20 +02:00
|
|
|
|
ui->lineEditName->setText(ClearCustomName(meash->GetName()));
|
2015-07-24 12:06:39 +02:00
|
|
|
|
ui->lineEditName->blockSignals(false);
|
|
|
|
|
|
|
|
|
|
ui->plainTextEditDescription->blockSignals(true);
|
2015-07-21 17:28:20 +02:00
|
|
|
|
if (meash->IsCustom())
|
|
|
|
|
{
|
|
|
|
|
ui->plainTextEditDescription->setPlainText(meash->GetDescription());
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
//Show from known description
|
|
|
|
|
ui->plainTextEditDescription->setPlainText("");
|
|
|
|
|
}
|
2015-07-24 12:06:39 +02:00
|
|
|
|
ui->plainTextEditDescription->blockSignals(false);
|
2015-07-21 17:28:20 +02:00
|
|
|
|
|
|
|
|
|
if (mType == MeasurementsType::Standard)
|
|
|
|
|
{
|
2015-07-24 12:06:39 +02:00
|
|
|
|
ui->labelCalculatedValue->blockSignals(true);
|
|
|
|
|
ui->spinBoxBaseValue->blockSignals(true);
|
|
|
|
|
ui->spinBoxInSizes->blockSignals(true);
|
|
|
|
|
ui->spinBoxInHeights->blockSignals(true);
|
|
|
|
|
|
2015-07-21 17:28:20 +02:00
|
|
|
|
ui->labelCalculatedValue->setText(QString().setNum(data->GetTableValue(nameField->text(), mType)));
|
2015-07-22 11:44:31 +02:00
|
|
|
|
ui->spinBoxBaseValue->setValue(static_cast<int>(meash->GetBase()));
|
|
|
|
|
ui->spinBoxInSizes->setValue(static_cast<int>(meash->GetKsize()));
|
|
|
|
|
ui->spinBoxInHeights->setValue(static_cast<int>(meash->GetKheight()));
|
2015-07-24 12:06:39 +02:00
|
|
|
|
|
|
|
|
|
ui->labelCalculatedValue->blockSignals(false);
|
|
|
|
|
ui->spinBoxBaseValue->blockSignals(false);
|
|
|
|
|
ui->spinBoxInSizes->blockSignals(false);
|
|
|
|
|
ui->spinBoxInHeights->blockSignals(false);
|
2015-07-21 17:28:20 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
EvalFormula(meash->GetFormula(), meash->GetData(), ui->labelCalculatedValue);
|
2015-07-24 12:06:39 +02:00
|
|
|
|
|
|
|
|
|
ui->plainTextEditFormula->blockSignals(true);
|
|
|
|
|
|
|
|
|
|
QString formula;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
formula = qApp->TrVars()->FormulaToUser(meash->GetFormula());
|
|
|
|
|
}
|
|
|
|
|
catch (qmu::QmuParserError &e)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(e);
|
|
|
|
|
formula = meash->GetFormula();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ui->plainTextEditFormula->setPlainText(formula);
|
|
|
|
|
ui->plainTextEditFormula->blockSignals(false);
|
2015-07-21 17:28:20 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m->ReadOnly())
|
|
|
|
|
{
|
|
|
|
|
MFields(false);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
MFields(true);
|
|
|
|
|
|
2015-07-24 12:06:39 +02:00
|
|
|
|
if (meash->IsCustom())
|
|
|
|
|
{
|
|
|
|
|
ui->plainTextEditDescription->setReadOnly(false);
|
|
|
|
|
ui->lineEditName->setReadOnly(false);
|
|
|
|
|
}
|
|
|
|
|
else
|
2015-07-21 17:28:20 +02:00
|
|
|
|
{
|
2015-07-24 12:06:39 +02:00
|
|
|
|
ui->plainTextEditDescription->setReadOnly(false);
|
|
|
|
|
ui->lineEditName->setReadOnly(false);
|
2015-07-21 17:28:20 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-21 18:24:47 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::DeployFormula()
|
|
|
|
|
{
|
|
|
|
|
SCASSERT(ui->plainTextEditFormula != nullptr);
|
|
|
|
|
SCASSERT(ui->pushButtonGrow != nullptr)
|
|
|
|
|
if (ui->plainTextEditFormula->height() < DIALOG_MAX_FORMULA_HEIGHT)
|
|
|
|
|
{
|
|
|
|
|
ui->plainTextEditFormula->setFixedHeight(DIALOG_MAX_FORMULA_HEIGHT);
|
|
|
|
|
//Set icon from theme (internal for Windows system)
|
|
|
|
|
ui->pushButtonGrow->setIcon(QIcon::fromTheme("go-next",
|
|
|
|
|
QIcon(":/icons/win.icon.theme/16x16/actions/go-next.png")));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->plainTextEditFormula->setFixedHeight(formulaBaseHeight);
|
|
|
|
|
//Set icon from theme (internal for Windows system)
|
|
|
|
|
ui->pushButtonGrow->setIcon(QIcon::fromTheme("go-down",
|
|
|
|
|
QIcon(":/icons/win.icon.theme/16x16/actions/go-down.png")));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// I found that after change size of formula field, it was filed for angle formula, field for formula became black.
|
|
|
|
|
// This code prevent this.
|
|
|
|
|
setUpdatesEnabled(false);
|
|
|
|
|
repaint();
|
|
|
|
|
setUpdatesEnabled(true);
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-22 11:44:31 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SaveMName()
|
|
|
|
|
{
|
|
|
|
|
const int row = ui->tableWidget->currentRow();
|
|
|
|
|
|
|
|
|
|
if (row == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QTableWidgetItem *nameField = ui->tableWidget->item(ui->tableWidget->currentRow(), 0);
|
|
|
|
|
QSharedPointer<VMeasurement> meash = data->GetVariable<VMeasurement>(nameField->text());
|
|
|
|
|
|
|
|
|
|
QString newName = ui->lineEditName->text();
|
|
|
|
|
if (meash->IsCustom())
|
|
|
|
|
{
|
|
|
|
|
newName = CustomSign + newName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (data->IsUnique(newName))
|
|
|
|
|
{
|
|
|
|
|
m->SetMName(nameField->text(), newName);
|
|
|
|
|
MeasurementsWasSaved(false);
|
|
|
|
|
RefreshData();
|
|
|
|
|
|
2015-07-24 12:06:39 +02:00
|
|
|
|
ui->tableWidget->blockSignals(true);
|
2015-07-22 11:44:31 +02:00
|
|
|
|
ui->tableWidget->selectRow(row);
|
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
|
2015-07-24 12:06:39 +02:00
|
|
|
|
ui->tableWidget->blockSignals(false);
|
2015-07-22 11:44:31 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->lineEditName->setText(ClearCustomName(nameField->text()));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SaveMValue()
|
|
|
|
|
{
|
|
|
|
|
const int row = ui->tableWidget->currentRow();
|
|
|
|
|
|
|
|
|
|
if (row == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-24 14:06:53 +02:00
|
|
|
|
QTableWidgetItem *nameField = ui->tableWidget->item(row, 0);
|
2015-07-24 12:06:39 +02:00
|
|
|
|
|
|
|
|
|
// Replace line return character with spaces for calc if exist
|
|
|
|
|
QString text = ui->plainTextEditFormula->toPlainText();
|
|
|
|
|
text.replace("\n", " ");
|
|
|
|
|
|
2015-07-24 14:06:53 +02:00
|
|
|
|
QTableWidgetItem *formulaField = ui->tableWidget->item(row, 2);
|
2015-07-24 12:06:39 +02:00
|
|
|
|
if (formulaField->text() == text)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (text.isEmpty())
|
|
|
|
|
{
|
|
|
|
|
const QString postfix = VDomDocument::UnitsToStr(mUnit);//Show unit in dialog lable (cm, mm or inch)
|
|
|
|
|
ui->labelCalculatedValue->setText(tr("Error") + " (" + postfix + "). " + tr("Empty field."));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString formula;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
// Translate to internal look.
|
|
|
|
|
formula = qApp->TrVars()->FormulaFromUser(text, true);
|
|
|
|
|
QSharedPointer<VMeasurement> meash = data->GetVariable<VMeasurement>(nameField->text());
|
|
|
|
|
EvalFormula(formula, meash->GetData(), ui->labelCalculatedValue);
|
|
|
|
|
}
|
|
|
|
|
catch (qmu::QmuParserError &e)
|
|
|
|
|
{
|
|
|
|
|
const QString postfix = VDomDocument::UnitsToStr(mUnit);//Show unit in dialog lable (cm, mm or inch)
|
|
|
|
|
ui->labelCalculatedValue->setText(tr("Error") + " (" + postfix + "). " +
|
|
|
|
|
tr("Parser error: %1").arg(e.GetMsg()));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m->SetMValue(nameField->text(), formula);
|
2015-07-22 11:44:31 +02:00
|
|
|
|
|
|
|
|
|
MeasurementsWasSaved(false);
|
|
|
|
|
|
2015-07-24 12:06:39 +02:00
|
|
|
|
const QTextCursor cursor = ui->plainTextEditFormula->textCursor();
|
|
|
|
|
|
2015-07-22 11:44:31 +02:00
|
|
|
|
RefreshData();
|
|
|
|
|
|
2015-07-24 12:06:39 +02:00
|
|
|
|
ui->tableWidget->blockSignals(true);
|
2015-07-22 11:44:31 +02:00
|
|
|
|
ui->tableWidget->selectRow(row);
|
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
|
2015-07-24 12:06:39 +02:00
|
|
|
|
ui->tableWidget->blockSignals(false);
|
|
|
|
|
|
|
|
|
|
ui->plainTextEditFormula->setTextCursor(cursor);
|
2015-07-22 11:44:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SaveMBaseValue(int value)
|
|
|
|
|
{
|
|
|
|
|
const int row = ui->tableWidget->currentRow();
|
|
|
|
|
|
|
|
|
|
if (row == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QTableWidgetItem *nameField = ui->tableWidget->item(ui->tableWidget->currentRow(), 0);
|
|
|
|
|
m->SetMBaseValue(nameField->text(), value);
|
|
|
|
|
|
|
|
|
|
MeasurementsWasSaved(false);
|
|
|
|
|
|
|
|
|
|
RefreshData();
|
|
|
|
|
|
2015-07-25 07:41:04 +02:00
|
|
|
|
ui->tableWidget->blockSignals(true);
|
2015-07-22 11:44:31 +02:00
|
|
|
|
ui->tableWidget->selectRow(row);
|
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
|
2015-07-25 07:41:04 +02:00
|
|
|
|
ui->tableWidget->blockSignals(false);
|
2015-07-22 11:44:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SaveMSizeIncrease(int value)
|
|
|
|
|
{
|
|
|
|
|
const int row = ui->tableWidget->currentRow();
|
|
|
|
|
|
|
|
|
|
if (row == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QTableWidgetItem *nameField = ui->tableWidget->item(ui->tableWidget->currentRow(), 0);
|
|
|
|
|
m->SetMSizeIncrease(nameField->text(), value);
|
|
|
|
|
|
|
|
|
|
MeasurementsWasSaved(false);
|
|
|
|
|
|
|
|
|
|
RefreshData();
|
|
|
|
|
|
2015-07-25 07:41:04 +02:00
|
|
|
|
ui->tableWidget->blockSignals(true);
|
2015-07-22 11:44:31 +02:00
|
|
|
|
ui->tableWidget->selectRow(row);
|
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
|
2015-07-25 07:41:04 +02:00
|
|
|
|
ui->tableWidget->blockSignals(false);
|
2015-07-22 11:44:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SaveMHeightIncrease(int value)
|
|
|
|
|
{
|
|
|
|
|
const int row = ui->tableWidget->currentRow();
|
|
|
|
|
|
|
|
|
|
if (row == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QTableWidgetItem *nameField = ui->tableWidget->item(ui->tableWidget->currentRow(), 0);
|
|
|
|
|
m->SetMHeightIncrease(nameField->text(), value);
|
|
|
|
|
|
|
|
|
|
MeasurementsWasSaved(false);
|
|
|
|
|
|
|
|
|
|
RefreshData();
|
|
|
|
|
|
|
|
|
|
ui->tableWidget->selectRow(row);
|
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SaveMDescription()
|
|
|
|
|
{
|
|
|
|
|
const int row = ui->tableWidget->currentRow();
|
|
|
|
|
|
|
|
|
|
if (row == -1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QTableWidgetItem *nameField = ui->tableWidget->item(ui->tableWidget->currentRow(), 0);
|
|
|
|
|
m->SetMDescription(nameField->text(), ui->plainTextEditDescription->toPlainText());
|
|
|
|
|
|
|
|
|
|
MeasurementsWasSaved(false);
|
|
|
|
|
|
2015-07-24 12:06:39 +02:00
|
|
|
|
const QTextCursor cursor = ui->plainTextEditDescription->textCursor();
|
|
|
|
|
|
2015-07-22 11:44:31 +02:00
|
|
|
|
RefreshData();
|
|
|
|
|
|
2015-07-24 12:06:39 +02:00
|
|
|
|
ui->tableWidget->blockSignals(true);
|
2015-07-22 11:44:31 +02:00
|
|
|
|
ui->tableWidget->selectRow(row);
|
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
|
2015-07-24 12:06:39 +02:00
|
|
|
|
ui->tableWidget->blockSignals(false);
|
|
|
|
|
|
|
|
|
|
ui->plainTextEditDescription->setTextCursor(cursor);
|
2015-07-22 11:44:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-12 16:19:53 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SetupMenu()
|
2015-07-10 13:14:55 +02:00
|
|
|
|
{
|
2015-07-12 17:56:34 +02:00
|
|
|
|
// File
|
2015-07-13 12:48:29 +02:00
|
|
|
|
connect(ui->actionNew, &QAction::triggered, this, &TMainWindow::FileNew);
|
|
|
|
|
ui->actionNew->setShortcuts(QKeySequence::New);
|
|
|
|
|
|
2015-07-12 17:56:34 +02:00
|
|
|
|
connect(ui->actionOpen, &QAction::triggered, this, &TMainWindow::FileOpen);
|
|
|
|
|
ui->actionOpen->setShortcuts(QKeySequence::Open);
|
|
|
|
|
|
|
|
|
|
connect(ui->actionSave, &QAction::triggered, this, &TMainWindow::FileSave);
|
2015-07-13 12:48:29 +02:00
|
|
|
|
ui->actionSave->setShortcuts(QKeySequence::Save);
|
2015-07-12 17:56:34 +02:00
|
|
|
|
|
|
|
|
|
connect(ui->actionSaveAs, &QAction::triggered, this, &TMainWindow::FileSaveAs);
|
2015-07-13 12:48:29 +02:00
|
|
|
|
ui->actionSaveAs->setShortcuts(QKeySequence::SaveAs);
|
2015-07-12 17:56:34 +02:00
|
|
|
|
|
2015-07-18 13:08:44 +02:00
|
|
|
|
connect(ui->actionReadOnly, &QAction::triggered, this, &TMainWindow::ReadOnly);
|
2015-07-12 17:56:34 +02:00
|
|
|
|
|
|
|
|
|
connect(ui->actionQuit, &QAction::triggered, this, &TMainWindow::close);
|
|
|
|
|
ui->actionQuit->setShortcuts(QKeySequence::Quit);
|
|
|
|
|
|
2015-07-19 14:28:01 +02:00
|
|
|
|
// Measurements
|
|
|
|
|
connect(ui->actionAddCustom, &QAction::triggered, this, &TMainWindow::AddCustom);
|
|
|
|
|
connect(ui->actionAddKnown, &QAction::triggered, this, &TMainWindow::AddKnown);
|
|
|
|
|
|
2015-07-12 17:56:34 +02:00
|
|
|
|
// Window
|
|
|
|
|
connect(ui->menuWindow, &QMenu::aboutToShow, this, &TMainWindow::AboutToShowWindowMenu);
|
|
|
|
|
AboutToShowWindowMenu();
|
2015-07-10 13:14:55 +02:00
|
|
|
|
|
2015-07-12 17:56:34 +02:00
|
|
|
|
// Help
|
|
|
|
|
connect(ui->actionAboutQt, &QAction::triggered, qApp, &QApplication::aboutQt);
|
|
|
|
|
connect(ui->actionAboutTape, &QAction::triggered, this, &TMainWindow::AboutApplication);
|
2015-07-10 13:14:55 +02:00
|
|
|
|
}
|
2015-07-13 12:48:29 +02:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-07-16 11:38:54 +02:00
|
|
|
|
void TMainWindow::InitWindow()
|
2015-07-13 12:48:29 +02:00
|
|
|
|
{
|
2015-07-16 11:38:54 +02:00
|
|
|
|
SCASSERT(m != nullptr);
|
2015-07-13 12:48:29 +02:00
|
|
|
|
ui->labelToolTip->setVisible(false);
|
|
|
|
|
ui->tabWidget->setVisible(true);
|
|
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
|
ui->plainTextEditNotes->setEnabled(true);
|
2015-07-15 09:16:59 +02:00
|
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
|
if (mType == MeasurementsType::Standard)
|
2015-07-13 12:48:29 +02:00
|
|
|
|
{
|
2015-07-14 18:28:50 +02:00
|
|
|
|
ui->labelMType->setText(tr("Standard measurements"));
|
2015-07-18 13:08:44 +02:00
|
|
|
|
ui->labelBaseSizeValue->setText(QString().setNum(m->BaseSize()) + " " +
|
|
|
|
|
VDomDocument::UnitsToStr(m->MUnit(), true));
|
|
|
|
|
ui->labelBaseHeightValue->setText(QString().setNum(m->BaseHeight()) + " " +
|
|
|
|
|
VDomDocument::UnitsToStr(m->MUnit(), true));
|
2015-07-14 18:28:50 +02:00
|
|
|
|
|
2015-07-13 12:48:29 +02:00
|
|
|
|
// Tab Measurements
|
2015-07-21 15:24:21 +02:00
|
|
|
|
delete ui->labelFormula;
|
2015-07-13 12:48:29 +02:00
|
|
|
|
delete ui->horizontalLayoutValue;
|
2015-07-18 13:08:44 +02:00
|
|
|
|
delete ui->plainTextEditFormula;
|
2015-07-21 17:28:20 +02:00
|
|
|
|
delete ui->pushButtonGrow;
|
|
|
|
|
delete ui->toolButtonExpr;
|
2015-07-13 12:48:29 +02:00
|
|
|
|
|
|
|
|
|
// Tab Information
|
|
|
|
|
delete ui->labelGivenName;
|
|
|
|
|
delete ui->lineEditGivenName;
|
|
|
|
|
delete ui->labelFamilyName;
|
|
|
|
|
delete ui->lineEditFamilyName;
|
|
|
|
|
delete ui->labelBirthDate;
|
|
|
|
|
delete ui->dateEditBirthDate;
|
|
|
|
|
delete ui->labelSex;
|
|
|
|
|
delete ui->comboBoxSex;
|
|
|
|
|
delete ui->labelEmail;
|
|
|
|
|
delete ui->lineEditEmail;
|
2015-07-21 15:18:10 +02:00
|
|
|
|
|
|
|
|
|
ui->toolBarGradation->setVisible(true);
|
|
|
|
|
const QStringList listHeights = VMeasurement::WholeListHeights(mUnit);
|
|
|
|
|
const QStringList listSizes = VMeasurement::WholeListSizes(mUnit);
|
|
|
|
|
|
|
|
|
|
gradationHeights = SetGradationList(tr("Height: "), listHeights);
|
|
|
|
|
SetDefaultHeight(static_cast<int>(data->height()));
|
|
|
|
|
connect(gradationHeights, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
|
|
|
this, &TMainWindow::ChangedHeight);
|
|
|
|
|
|
|
|
|
|
gradationSizes = SetGradationList(tr("Size: "), listSizes);
|
|
|
|
|
SetDefaultSize(static_cast<int>(data->size()));
|
|
|
|
|
connect(gradationSizes, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
|
|
|
this, &TMainWindow::ChangedSize);
|
2015-07-22 11:44:31 +02:00
|
|
|
|
|
|
|
|
|
connect(ui->spinBoxBaseValue, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), this,
|
|
|
|
|
&TMainWindow::SaveMBaseValue);
|
2015-07-25 07:41:04 +02:00
|
|
|
|
connect(ui->spinBoxInSizes, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), this,
|
2015-07-22 11:44:31 +02:00
|
|
|
|
&TMainWindow::SaveMSizeIncrease);
|
|
|
|
|
connect(ui->spinBoxInHeights, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), this,
|
|
|
|
|
&TMainWindow::SaveMHeightIncrease);
|
2015-07-13 12:48:29 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-07-14 18:28:50 +02:00
|
|
|
|
ui->labelMType->setText(tr("Individual measurements"));
|
|
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
|
ui->lineEditGivenName->setEnabled(true);
|
|
|
|
|
ui->lineEditFamilyName->setEnabled(true);
|
|
|
|
|
ui->dateEditBirthDate->setEnabled(true);
|
|
|
|
|
ui->comboBoxSex->setEnabled(true);
|
|
|
|
|
ui->lineEditEmail->setEnabled(true);
|
|
|
|
|
|
2015-07-13 12:48:29 +02:00
|
|
|
|
// Tab Measurements
|
|
|
|
|
delete ui->labelBaseValue;
|
2015-07-22 11:44:31 +02:00
|
|
|
|
delete ui->spinBoxBaseValue;
|
2015-07-13 12:48:29 +02:00
|
|
|
|
delete ui->labelInSizes;
|
2015-07-22 11:44:31 +02:00
|
|
|
|
delete ui->spinBoxInSizes;
|
2015-07-13 12:48:29 +02:00
|
|
|
|
delete ui->labelInHeights;
|
2015-07-22 11:44:31 +02:00
|
|
|
|
delete ui->spinBoxInHeights;
|
2015-07-13 12:48:29 +02:00
|
|
|
|
|
|
|
|
|
// Tab Information
|
|
|
|
|
delete ui->labelBaseSize;
|
|
|
|
|
delete ui->labelBaseSizeValue;
|
|
|
|
|
delete ui->labelBaseHeight;
|
|
|
|
|
delete ui->labelBaseHeightValue;
|
2015-07-18 13:08:44 +02:00
|
|
|
|
|
|
|
|
|
ui->lineEditGivenName->setText(m->GivenName());
|
|
|
|
|
ui->lineEditFamilyName->setText(m->FamilyName());
|
|
|
|
|
|
|
|
|
|
ui->comboBoxSex->addItem(tr("male"), QVariant(static_cast<int>(SexType::Male)));
|
|
|
|
|
ui->comboBoxSex->addItem(tr("female"), QVariant(static_cast<int>(SexType::Female)));
|
|
|
|
|
const qint32 index = ui->comboBoxSex->findData(static_cast<int>(m->Sex()));
|
|
|
|
|
ui->comboBoxSex->setCurrentIndex(index);
|
|
|
|
|
|
|
|
|
|
ui->dateEditBirthDate->setDate(m->BirthDate());
|
|
|
|
|
ui->lineEditEmail->setText(m->Email());
|
|
|
|
|
ui->plainTextEditNotes->setPlainText(m->Notes());
|
|
|
|
|
|
|
|
|
|
connect(ui->lineEditGivenName, &QLineEdit::editingFinished, this, &TMainWindow::SaveGivenName);
|
|
|
|
|
connect(ui->lineEditFamilyName, &QLineEdit::editingFinished, this, &TMainWindow::SaveFamilyName);
|
|
|
|
|
connect(ui->lineEditEmail, &QLineEdit::editingFinished, this, &TMainWindow::SaveEmail);
|
|
|
|
|
connect(ui->comboBoxSex, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
|
|
|
|
|
&TMainWindow::SaveSex);
|
|
|
|
|
connect(ui->dateEditBirthDate, &QDateEdit::dateChanged, this, &TMainWindow::SaveBirthDate);
|
|
|
|
|
connect(ui->plainTextEditNotes, &QPlainTextEdit::textChanged, this, &TMainWindow::SaveNotes);
|
2015-07-21 18:24:47 +02:00
|
|
|
|
connect(ui->pushButtonGrow, &QPushButton::clicked, this, &TMainWindow::DeployFormula);
|
2015-07-22 11:44:31 +02:00
|
|
|
|
|
2015-07-24 12:06:39 +02:00
|
|
|
|
this->formulaBaseHeight = ui->plainTextEditFormula->height();
|
|
|
|
|
connect(ui->plainTextEditFormula, &QPlainTextEdit::textChanged, this, &TMainWindow::SaveMValue,
|
|
|
|
|
Qt::UniqueConnection);
|
2015-07-24 14:06:53 +02:00
|
|
|
|
|
|
|
|
|
connect(ui->toolButtonExpr, &QToolButton::clicked, this, &TMainWindow::Fx);
|
2015-07-13 12:48:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
|
ui->actionAddCustom->setEnabled(true);
|
|
|
|
|
ui->actionAddKnown->setEnabled(true);
|
|
|
|
|
ui->actionReadOnly->setEnabled(true);
|
2015-07-18 14:39:33 +02:00
|
|
|
|
ui->actionSaveAs->setEnabled(true);
|
2015-07-16 11:38:54 +02:00
|
|
|
|
|
2015-07-22 11:47:51 +02:00
|
|
|
|
ui->lineEditName->setValidator( new QRegularExpressionValidator(QRegularExpression(NameRegExp())) );
|
|
|
|
|
|
2015-07-22 08:41:04 +02:00
|
|
|
|
connect(ui->toolButtonRemove, &QToolButton::clicked, this, &TMainWindow::Remove);
|
2015-07-22 09:01:34 +02:00
|
|
|
|
connect(ui->toolButtonUp, &QToolButton::clicked, this, &TMainWindow::MoveUp);
|
|
|
|
|
connect(ui->toolButtonDown, &QToolButton::clicked, this, &TMainWindow::MoveDown);
|
2015-07-22 08:41:04 +02:00
|
|
|
|
|
2015-07-22 11:44:31 +02:00
|
|
|
|
connect(ui->lineEditName, &QLineEdit::editingFinished, this, &TMainWindow::SaveMName);
|
|
|
|
|
connect(ui->plainTextEditDescription, &QPlainTextEdit::textChanged, this, &TMainWindow::SaveMDescription);
|
|
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
|
InitTable();
|
2015-07-13 12:48:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-07-16 11:38:54 +02:00
|
|
|
|
void TMainWindow::InitTable()
|
2015-07-13 12:48:29 +02:00
|
|
|
|
{
|
2015-07-16 11:38:54 +02:00
|
|
|
|
if (mType == MeasurementsType::Standard)
|
2015-07-13 12:48:29 +02:00
|
|
|
|
{
|
2015-07-21 18:13:09 +02:00
|
|
|
|
ui->tableWidget->setColumnHidden( 2, true );// formula
|
2015-07-13 12:48:29 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-07-19 14:28:01 +02:00
|
|
|
|
ui->tableWidget->setColumnHidden( 3, true );// base value
|
|
|
|
|
ui->tableWidget->setColumnHidden( 4, true );// in sizes
|
|
|
|
|
ui->tableWidget->setColumnHidden( 5, true );// in heights
|
2015-07-13 12:48:29 +02:00
|
|
|
|
}
|
2015-07-21 17:28:20 +02:00
|
|
|
|
|
|
|
|
|
connect(ui->tableWidget, &QTableWidget::itemSelectionChanged, this, &TMainWindow::ShowMData);
|
2015-07-21 18:13:09 +02:00
|
|
|
|
|
|
|
|
|
ShowUnits();
|
|
|
|
|
|
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::ShowUnits()
|
|
|
|
|
{
|
|
|
|
|
const QString unit = VDomDocument::UnitsToStr(mUnit);
|
|
|
|
|
|
|
|
|
|
ShowHeaderUnits(ui->tableWidget, 1, unit);// calculated value
|
|
|
|
|
ShowHeaderUnits(ui->tableWidget, 3, unit);// base value
|
|
|
|
|
ShowHeaderUnits(ui->tableWidget, 4, unit);// in sizes
|
|
|
|
|
ShowHeaderUnits(ui->tableWidget, 5, unit);// in heights
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::ShowHeaderUnits(QTableWidget *table, int column, const QString &unit)
|
|
|
|
|
{
|
|
|
|
|
SCASSERT(table != nullptr);
|
|
|
|
|
|
|
|
|
|
const QString header = table->horizontalHeaderItem(column)->text();
|
|
|
|
|
const QString unitHeader = QString("%1 (%2)").arg(header).arg(unit);
|
|
|
|
|
table->horizontalHeaderItem(column)->setText(unitHeader);
|
2015-07-13 12:48:29 +02:00
|
|
|
|
}
|
2015-07-18 14:39:33 +02:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::MeasurementsWasSaved(bool saved)
|
|
|
|
|
{
|
|
|
|
|
setWindowModified(!saved);
|
|
|
|
|
ui->actionSave->setEnabled(!saved);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SetCurrentFile(const QString &fileName)
|
|
|
|
|
{
|
|
|
|
|
curFile = fileName;
|
|
|
|
|
QString shownName = QFileInfo(curFile).fileName();
|
|
|
|
|
if (curFile.isEmpty())
|
|
|
|
|
{
|
|
|
|
|
shownName = tr("untitled");
|
|
|
|
|
if (mType == MeasurementsType::Standard)
|
|
|
|
|
{
|
|
|
|
|
shownName += ".vst";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
shownName += ".vit";
|
|
|
|
|
}
|
|
|
|
|
ui->labelPathToFile->setText(tr("<Empty>"));
|
|
|
|
|
ui->pushButtonShowInFolder->setEnabled(false);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->labelPathToFile->setText(curFile);
|
|
|
|
|
ui->pushButtonShowInFolder->setEnabled(true);
|
|
|
|
|
}
|
|
|
|
|
shownName += "[*]";
|
|
|
|
|
setWindowTitle(shownName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
bool TMainWindow::SaveMeasurements(const QString &fileName, QString &error)
|
|
|
|
|
{
|
|
|
|
|
const bool result = m->SaveDocument(fileName, error);
|
|
|
|
|
if (result)
|
|
|
|
|
{
|
|
|
|
|
SetCurrentFile(fileName);
|
|
|
|
|
MeasurementsWasSaved(result);
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2015-07-18 15:01:57 +02:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
bool TMainWindow::MaybeSave()
|
|
|
|
|
{
|
|
|
|
|
if (this->isWindowModified())
|
|
|
|
|
{
|
|
|
|
|
QMessageBox::StandardButton ret;
|
|
|
|
|
ret = QMessageBox::warning(this, tr("Unsaved changes"), tr("Measurements have been modified.\n"
|
|
|
|
|
"Do you want to save your changes?"),
|
|
|
|
|
QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel);
|
|
|
|
|
if (ret == QMessageBox::Save)
|
|
|
|
|
{
|
|
|
|
|
FileSave();
|
|
|
|
|
}
|
|
|
|
|
else if (ret == QMessageBox::Cancel)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2015-07-19 14:28:01 +02:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-07-24 12:06:39 +02:00
|
|
|
|
void TMainWindow::AddCell(const QString &text, int row, int column, bool ok)
|
2015-07-19 14:28:01 +02:00
|
|
|
|
{
|
|
|
|
|
QTableWidgetItem *item = new QTableWidgetItem(text);
|
|
|
|
|
item->setTextAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
|
2015-07-21 19:26:33 +02:00
|
|
|
|
|
2015-07-19 14:28:01 +02:00
|
|
|
|
// set the item non-editable (view only), and non-selectable
|
|
|
|
|
Qt::ItemFlags flags = item->flags();
|
|
|
|
|
flags &= ~(Qt::ItemIsEditable); // reset/clear the flag
|
|
|
|
|
item->setFlags(flags);
|
|
|
|
|
|
2015-07-24 12:06:39 +02:00
|
|
|
|
if (not ok)
|
|
|
|
|
{
|
|
|
|
|
QBrush brush = item->foreground();
|
|
|
|
|
brush.setColor(Qt::red);
|
|
|
|
|
item->setForeground(brush);
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-19 14:28:01 +02:00
|
|
|
|
ui->tableWidget->setItem(row, column, item);
|
|
|
|
|
}
|
2015-07-21 15:18:10 +02:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
QComboBox *TMainWindow::SetGradationList(const QString &label, const QStringList &list)
|
|
|
|
|
{
|
|
|
|
|
ui->toolBarGradation->addWidget(new QLabel(label));
|
|
|
|
|
|
|
|
|
|
QComboBox *comboBox = new QComboBox;
|
|
|
|
|
comboBox->addItems(list);
|
|
|
|
|
ui->toolBarGradation->addWidget(comboBox);
|
|
|
|
|
|
|
|
|
|
return comboBox;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SetDefaultHeight(int value)
|
|
|
|
|
{
|
|
|
|
|
const qint32 index = gradationHeights->findText(QString("%1").arg(value));
|
|
|
|
|
if (index != -1)
|
|
|
|
|
{
|
|
|
|
|
gradationHeights->setCurrentIndex(index);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
data->SetHeight(gradationHeights->currentText().toInt());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::SetDefaultSize(int value)
|
|
|
|
|
{
|
|
|
|
|
const qint32 index = gradationSizes->findText(QString("%1").arg(value));
|
|
|
|
|
if (index != -1)
|
|
|
|
|
{
|
|
|
|
|
gradationSizes->setCurrentIndex(index);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
data->SetSize(gradationSizes->currentText().toInt());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::RefreshData()
|
|
|
|
|
{
|
2015-07-24 12:06:39 +02:00
|
|
|
|
data->ClearVariables(VarType::Measurement);
|
|
|
|
|
m->ReadMeasurements();
|
|
|
|
|
|
|
|
|
|
RefreshTable();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::RefreshTable()
|
|
|
|
|
{
|
|
|
|
|
ui->tableWidget->blockSignals(true);
|
|
|
|
|
ui->tableWidget->clearContents();
|
|
|
|
|
|
|
|
|
|
const QMap<QString, QSharedPointer<VMeasurement> > table = data->DataMeasurements();
|
|
|
|
|
QMap<int, QSharedPointer<VMeasurement> > orderedTable;
|
|
|
|
|
QMap<QString, QSharedPointer<VMeasurement> >::const_iterator iterMap;
|
|
|
|
|
for (iterMap = table.constBegin(); iterMap != table.constEnd(); ++iterMap)
|
|
|
|
|
{
|
|
|
|
|
QSharedPointer<VMeasurement> meash = iterMap.value();
|
|
|
|
|
orderedTable.insert(meash->Index(), meash);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qint32 currentRow = -1;
|
|
|
|
|
QMap<int, QSharedPointer<VMeasurement> >::const_iterator iMap;
|
|
|
|
|
ui->tableWidget->setRowCount ( orderedTable.size() );
|
|
|
|
|
for (iMap = orderedTable.constBegin(); iMap != orderedTable.constEnd(); ++iMap)
|
|
|
|
|
{
|
|
|
|
|
QSharedPointer<VMeasurement> meash = iMap.value();
|
|
|
|
|
currentRow++;
|
|
|
|
|
|
|
|
|
|
if (mType == MeasurementsType::Individual)
|
|
|
|
|
{
|
|
|
|
|
AddCell(meash->GetName(), currentRow, 0); // name
|
|
|
|
|
AddCell(QString().setNum(*meash->GetValue()), currentRow, 1, meash->IsFormulaOk()); // calculated value
|
2015-07-21 15:18:10 +02:00
|
|
|
|
|
2015-07-24 12:06:39 +02:00
|
|
|
|
QString formula;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
formula = qApp->TrVars()->FormulaToUser(meash->GetFormula());
|
|
|
|
|
}
|
|
|
|
|
catch (qmu::QmuParserError &e)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(e);
|
|
|
|
|
formula = meash->GetFormula();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AddCell(formula, currentRow, 2); // formula
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
AddCell(meash->GetName(), currentRow, 0); // name
|
|
|
|
|
AddCell(QString().setNum(data->GetTableValue(meash->GetName(), mType)), currentRow, 1,
|
|
|
|
|
meash->IsFormulaOk()); // calculated value
|
|
|
|
|
AddCell(QString().setNum(meash->GetBase()), currentRow, 3); // base value
|
|
|
|
|
AddCell(QString().setNum(meash->GetKsize()), currentRow, 4); // in sizes
|
|
|
|
|
AddCell(QString().setNum(meash->GetKheight()), currentRow, 5); // in heights
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ui->tableWidget->resizeColumnsToContents();
|
|
|
|
|
ui->tableWidget->resizeRowsToContents();
|
|
|
|
|
ui->tableWidget->horizontalHeader()->setStretchLastSection(true);
|
|
|
|
|
ui->tableWidget->blockSignals(false);
|
2015-07-21 15:18:10 +02:00
|
|
|
|
}
|
2015-07-21 17:28:20 +02:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::Controls()
|
|
|
|
|
{
|
|
|
|
|
if (m->ReadOnly())
|
|
|
|
|
{
|
|
|
|
|
ui->toolButtonRemove->setEnabled(false);
|
|
|
|
|
ui->toolButtonUp->setEnabled(false);
|
|
|
|
|
ui->toolButtonDown->setEnabled(false);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ui->tableWidget->rowCount() > 0)
|
|
|
|
|
{
|
|
|
|
|
ui->toolButtonRemove->setEnabled(true);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->toolButtonRemove->setEnabled(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ui->tableWidget->rowCount() >= 2)
|
|
|
|
|
{
|
|
|
|
|
if (ui->tableWidget->currentRow() == 0)
|
|
|
|
|
{
|
|
|
|
|
ui->toolButtonUp->setEnabled(false);
|
|
|
|
|
ui->toolButtonDown->setEnabled(true);
|
|
|
|
|
}
|
|
|
|
|
else if (ui->tableWidget->currentRow() == ui->tableWidget->rowCount()-1)
|
|
|
|
|
{
|
|
|
|
|
ui->toolButtonUp->setEnabled(true);
|
|
|
|
|
ui->toolButtonDown->setEnabled(false);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->toolButtonUp->setEnabled(true);
|
|
|
|
|
ui->toolButtonDown->setEnabled(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->toolButtonUp->setEnabled(false);
|
|
|
|
|
ui->toolButtonDown->setEnabled(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::MFields(bool enabled)
|
|
|
|
|
{
|
|
|
|
|
ui->lineEditName->setEnabled(enabled);
|
|
|
|
|
ui->plainTextEditDescription->setEnabled(enabled);
|
|
|
|
|
|
|
|
|
|
if (mType == MeasurementsType::Standard)
|
|
|
|
|
{
|
2015-07-22 11:44:31 +02:00
|
|
|
|
ui->spinBoxBaseValue->setEnabled(enabled);
|
|
|
|
|
ui->spinBoxInSizes->setEnabled(enabled);
|
|
|
|
|
ui->spinBoxInHeights->setEnabled(enabled);
|
2015-07-21 17:28:20 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->plainTextEditFormula->setEnabled(enabled);
|
|
|
|
|
ui->pushButtonGrow->setEnabled(enabled);
|
|
|
|
|
ui->toolButtonExpr->setEnabled(enabled);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
QString TMainWindow::ClearCustomName(const QString &name) const
|
|
|
|
|
{
|
|
|
|
|
QString clear = name;
|
2015-07-22 11:44:31 +02:00
|
|
|
|
const int index = clear.indexOf(CustomSign);
|
2015-07-21 17:28:20 +02:00
|
|
|
|
if (index == 0)
|
|
|
|
|
{
|
|
|
|
|
clear.remove(0, 1);
|
|
|
|
|
}
|
|
|
|
|
return clear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void TMainWindow::EvalFormula(const QString &formula, VContainer *data, QLabel *label)
|
|
|
|
|
{
|
|
|
|
|
const QString postfix = VDomDocument::UnitsToStr(mUnit);//Show unit in dialog lable (cm, mm or inch)
|
|
|
|
|
if (formula.isEmpty())
|
|
|
|
|
{
|
|
|
|
|
label->setText(tr("Error") + " (" + postfix + ")");
|
|
|
|
|
label->setToolTip(tr("Empty field"));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
// Replace line return character with spaces for calc if exist
|
|
|
|
|
QString f = formula;
|
|
|
|
|
f.replace("\n", " ");
|
|
|
|
|
Calculator *cal = new Calculator(data, mType);
|
|
|
|
|
const qreal result = cal->EvalFormula(f);
|
|
|
|
|
delete cal;
|
|
|
|
|
|
|
|
|
|
label->setText(qApp->LocaleToString(result) + " " +postfix);
|
|
|
|
|
label->setToolTip(tr("Value"));
|
|
|
|
|
}
|
|
|
|
|
catch (qmu::QmuParserError &e)
|
|
|
|
|
{
|
|
|
|
|
label->setText(tr("Error") + " (" + postfix + ")");
|
|
|
|
|
label->setToolTip(tr("Parser error: %1").arg(e.GetMsg()));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|