2013-11-15 13:41:26 +01:00
|
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
|
** @file mainwindow.cpp
|
2013-11-15 13:41:26 +01:00
|
|
|
|
** @author Roman Telezhinsky <dismine@gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
|
** @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) 2013 Valentina project
|
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
|
** 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.
|
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
|
** 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/>.
|
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
|
2013-06-20 16:09:50 +02:00
|
|
|
|
#include "mainwindow.h"
|
|
|
|
|
#include "ui_mainwindow.h"
|
2013-08-05 10:37:56 +02:00
|
|
|
|
#include "geometry/vspline.h"
|
2014-01-28 19:53:35 +01:00
|
|
|
|
#include "geometry/vequidistant.h"
|
2013-09-23 14:08:06 +02:00
|
|
|
|
#include "exception/vexceptionobjecterror.h"
|
|
|
|
|
#include "exception/vexceptionconversionerror.h"
|
|
|
|
|
#include "exception/vexceptionemptyparameter.h"
|
|
|
|
|
#include "exception/vexceptionwrongparameterid.h"
|
2013-10-07 11:13:24 +02:00
|
|
|
|
#include "exception/vexceptionuniqueid.h"
|
2013-10-23 12:40:51 +02:00
|
|
|
|
#include "version.h"
|
2013-06-20 16:09:50 +02:00
|
|
|
|
|
2013-11-21 13:05:26 +01:00
|
|
|
|
#include <QInputDialog>
|
|
|
|
|
#include <QtCore>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
#include <QShowEvent>
|
|
|
|
|
#include <QScrollBar>
|
|
|
|
|
#include <QFileDialog>
|
2014-01-19 11:00:20 +01:00
|
|
|
|
#include <QXmlSchema>
|
|
|
|
|
#include <QXmlSchemaValidator>
|
|
|
|
|
#include <QSourceLocation>
|
|
|
|
|
#include <QAbstractMessageHandler>
|
|
|
|
|
|
2014-02-06 15:53:56 +01:00
|
|
|
|
//This class need for validation pattern file using XSD shema
|
2014-01-19 11:00:20 +01:00
|
|
|
|
class MessageHandler : public QAbstractMessageHandler
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
MessageHandler() : QAbstractMessageHandler(0), m_messageType(QtMsgType()), m_description(QString()),
|
|
|
|
|
m_sourceLocation(QSourceLocation()){}
|
|
|
|
|
inline QString statusMessage() const {return m_description;}
|
|
|
|
|
inline qint64 line() const {return m_sourceLocation.line();}
|
|
|
|
|
inline qint64 column() const {return m_sourceLocation.column();}
|
|
|
|
|
protected:
|
|
|
|
|
virtual void handleMessage(QtMsgType type, const QString &description,
|
|
|
|
|
const QUrl &identifier, const QSourceLocation &sourceLocation)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(type);
|
|
|
|
|
Q_UNUSED(identifier);
|
|
|
|
|
|
|
|
|
|
m_messageType = type;
|
|
|
|
|
m_description = description;
|
|
|
|
|
m_sourceLocation = sourceLocation;
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
QtMsgType m_messageType;
|
|
|
|
|
QString m_description;
|
|
|
|
|
QSourceLocation m_sourceLocation;
|
|
|
|
|
};
|
2013-11-21 13:05:26 +01:00
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
MainWindow::MainWindow(QWidget *parent)
|
2013-12-29 17:48:57 +01:00
|
|
|
|
:QMainWindow(parent), ui(new Ui::MainWindow), pattern(0), doc(0), tool(Tool::ArrowTool), currentScene(0),
|
|
|
|
|
sceneDraw(0), sceneDetails(0), mouseCoordinate(0), helpLabel(0), view(0), isInitialized(false), dialogTable(0),
|
2014-02-10 17:10:20 +01:00
|
|
|
|
dialogTool(0), dialogHistory(0), comboBoxDraws(0), curFile(QString()), mode(Draw::Calculation),
|
2014-02-14 12:29:04 +01:00
|
|
|
|
currentDrawIndex(0), currentToolBoxIndex(0), drawMode(true), recentFileActs{0,0,0,0,0}, separatorAct(0),
|
|
|
|
|
autoSaveTimer(0)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-02-10 20:31:22 +01:00
|
|
|
|
CreateActions();
|
|
|
|
|
CreateMenus();
|
2013-07-03 14:29:26 +02:00
|
|
|
|
ToolBarOption();
|
|
|
|
|
ToolBarDraws();
|
2014-02-10 20:31:22 +01:00
|
|
|
|
|
2014-01-11 18:08:40 +01:00
|
|
|
|
sceneDraw = new VMainGraphicsScene();
|
2013-08-28 10:55:11 +02:00
|
|
|
|
currentScene = sceneDraw;
|
|
|
|
|
connect(sceneDraw, &VMainGraphicsScene::mouseMove, this, &MainWindow::mouseMove);
|
2014-01-11 18:08:40 +01:00
|
|
|
|
sceneDetails = new VMainGraphicsScene();
|
2013-08-28 10:55:11 +02:00
|
|
|
|
connect(sceneDetails, &VMainGraphicsScene::mouseMove, this, &MainWindow::mouseMove);
|
2013-08-13 18:48:36 +02:00
|
|
|
|
view = new VMainGraphicsView();
|
|
|
|
|
ui->LayoutView->addWidget(view);
|
2013-08-28 10:55:11 +02:00
|
|
|
|
view->setScene(currentScene);
|
2014-01-11 15:09:44 +01:00
|
|
|
|
|
|
|
|
|
sceneDraw->setTransform(view->transform());
|
|
|
|
|
sceneDetails->setTransform(view->transform());
|
|
|
|
|
|
2013-10-16 11:17:34 +02:00
|
|
|
|
connect(view, &VMainGraphicsView::NewFactor, sceneDraw, &VMainGraphicsScene::SetFactor);
|
2013-08-13 18:48:36 +02:00
|
|
|
|
QSizePolicy policy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
|
|
|
|
policy.setHorizontalStretch(12);
|
|
|
|
|
view->setSizePolicy(policy);
|
2014-02-14 18:49:50 +01:00
|
|
|
|
helpLabel = new QLabel(QObject::tr("Create new pattern piece to start working."));
|
2013-07-03 14:29:26 +02:00
|
|
|
|
ui->statusBar->addWidget(helpLabel);
|
|
|
|
|
|
2013-08-15 22:39:00 +02:00
|
|
|
|
connect(ui->toolButtonEndLine, &QToolButton::clicked, this, &MainWindow::ToolEndLine);
|
|
|
|
|
connect(ui->toolButtonLine, &QToolButton::clicked, this, &MainWindow::ToolLine);
|
|
|
|
|
connect(ui->toolButtonAlongLine, &QToolButton::clicked, this, &MainWindow::ToolAlongLine);
|
|
|
|
|
connect(ui->toolButtonShoulderPoint, &QToolButton::clicked, this, &MainWindow::ToolShoulderPoint);
|
|
|
|
|
connect(ui->toolButtonNormal, &QToolButton::clicked, this, &MainWindow::ToolNormal);
|
|
|
|
|
connect(ui->toolButtonBisector, &QToolButton::clicked, this, &MainWindow::ToolBisector);
|
|
|
|
|
connect(ui->toolButtonLineIntersect, &QToolButton::clicked, this, &MainWindow::ToolLineIntersect);
|
|
|
|
|
connect(ui->toolButtonSpline, &QToolButton::clicked, this, &MainWindow::ToolSpline);
|
|
|
|
|
connect(ui->toolButtonArc, &QToolButton::clicked, this, &MainWindow::ToolArc);
|
|
|
|
|
connect(ui->toolButtonSplinePath, &QToolButton::clicked, this, &MainWindow::ToolSplinePath);
|
2013-08-21 10:03:53 +02:00
|
|
|
|
connect(ui->toolButtonPointOfContact, &QToolButton::clicked, this, &MainWindow::ToolPointOfContact);
|
2013-08-28 10:55:11 +02:00
|
|
|
|
connect(ui->toolButtonNewDetail, &QToolButton::clicked, this, &MainWindow::ToolDetail);
|
2013-10-18 12:03:01 +02:00
|
|
|
|
connect(ui->toolButtonHeight, &QToolButton::clicked, this, &MainWindow::ToolHeight);
|
2013-10-18 20:20:54 +02:00
|
|
|
|
connect(ui->toolButtonTriangle, &QToolButton::clicked, this, &MainWindow::ToolTriangle);
|
2013-10-21 16:09:05 +02:00
|
|
|
|
connect(ui->toolButtonPointOfIntersection, &QToolButton::clicked, this, &MainWindow::ToolPointOfIntersection);
|
2013-12-18 12:13:32 +01:00
|
|
|
|
connect(ui->toolButtonSplineCutPoint, &QToolButton::clicked, this, &MainWindow::ToolCutSpline);
|
|
|
|
|
connect(ui->toolButtonSplinePathCutPoint, &QToolButton::clicked, this, &MainWindow::ToolCutSplinePath);
|
2013-12-29 17:48:57 +01:00
|
|
|
|
connect(ui->toolButtonUnionDetails, &QToolButton::clicked, this, &MainWindow::ToolUnionDetails);
|
2014-01-08 15:05:32 +01:00
|
|
|
|
connect(ui->toolButtonArcCutPoint, &QToolButton::clicked, this, &MainWindow::ToolCutArc);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
|
pattern = new VContainer();
|
2013-07-13 12:51:31 +02:00
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
|
doc = new VDomDocument(pattern, comboBoxDraws, &mode);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
doc->CreateEmptyFile();
|
2014-02-10 17:10:20 +01:00
|
|
|
|
connect(doc, &VDomDocument::patternChanged, this, &MainWindow::PatternWasModified);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
|
2014-02-14 12:29:04 +01:00
|
|
|
|
InitAutoSave();
|
2013-10-05 14:07:04 +02:00
|
|
|
|
|
2013-10-06 18:22:21 +02:00
|
|
|
|
ui->toolBox->setCurrentIndex(0);
|
2014-02-10 17:10:20 +01:00
|
|
|
|
|
|
|
|
|
ReadSettings();
|
|
|
|
|
|
|
|
|
|
setCurrentFile("");
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ActionNewDraw()
|
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
|
QString nameDraw;
|
|
|
|
|
bool bOk;
|
|
|
|
|
qint32 index;
|
2013-12-21 18:47:20 +01:00
|
|
|
|
QString nDraw = QString(tr("Pattern piece %1")).arg(comboBoxDraws->count()+1);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
QInputDialog *dlg = new QInputDialog(this);
|
|
|
|
|
dlg->setInputMode( QInputDialog::TextInput );
|
2013-12-21 18:47:20 +01:00
|
|
|
|
dlg->setLabelText(tr("Pattern piece:"));
|
2013-07-13 12:51:31 +02:00
|
|
|
|
dlg->setTextEchoMode(QLineEdit::Normal);
|
2013-12-19 11:42:00 +01:00
|
|
|
|
dlg->setWindowTitle(tr("Enter a label for the pattern piece."));
|
2013-11-04 21:35:15 +01:00
|
|
|
|
dlg->resize(300, 100);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
dlg->setTextValue(nDraw);
|
2013-11-04 21:35:15 +01:00
|
|
|
|
while (1)
|
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
|
bOk = dlg->exec();
|
|
|
|
|
nameDraw = dlg->textValue();
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if (bOk == false || nameDraw.isEmpty())
|
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
|
delete dlg;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
index = comboBoxDraws->findText(nameDraw);
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if (index != -1)
|
|
|
|
|
{//we already have this name
|
2013-12-19 11:42:00 +01:00
|
|
|
|
qCritical()<<tr("Error. Pattern piece of same label already exists.");
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
delete dlg;
|
|
|
|
|
bOk = doc->appendDraw(nameDraw);
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if (bOk == false)
|
|
|
|
|
{
|
2013-12-30 12:54:38 +01:00
|
|
|
|
qCritical()<<tr("Error creating pattern with the name ")<<nameDraw<<".";
|
2013-09-18 18:52:49 +02:00
|
|
|
|
return;
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
2013-08-15 22:39:00 +02:00
|
|
|
|
disconnect(comboBoxDraws, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
|
|
|
|
|
this, &MainWindow::currentDrawChanged);
|
|
|
|
|
comboBoxDraws->addItem(nameDraw);
|
2014-02-06 16:21:37 +01:00
|
|
|
|
|
2014-01-02 16:50:01 +01:00
|
|
|
|
pattern->ClearGObjects();
|
2013-08-15 22:39:00 +02:00
|
|
|
|
//Create single point
|
2013-12-29 17:48:57 +01:00
|
|
|
|
qint64 id = pattern->AddGObject(new VPointF(toPixel((10+comboBoxDraws->count()*5)), toPixel(10), "А", 5, 10));
|
|
|
|
|
VToolSinglePoint *spoint = new VToolSinglePoint(doc, pattern, id, Tool::FromGui);
|
2013-08-28 10:55:11 +02:00
|
|
|
|
sceneDraw->addItem(spoint);
|
|
|
|
|
connect(spoint, &VToolPoint::ChoosedTool, sceneDraw, &VMainGraphicsScene::ChoosedItem);
|
2013-10-16 11:17:34 +02:00
|
|
|
|
connect(sceneDraw, &VMainGraphicsScene::NewFactor, spoint, &VToolSinglePoint::SetFactor);
|
2013-10-04 13:32:42 +02:00
|
|
|
|
QHash<qint64, VDataTool*>* tools = doc->getTools();
|
2013-08-15 22:39:00 +02:00
|
|
|
|
tools->insert(id, spoint);
|
2013-09-27 11:17:00 +02:00
|
|
|
|
VDrawTool::AddRecord(id, Tool::SinglePointTool, doc);
|
2013-08-15 22:39:00 +02:00
|
|
|
|
SetEnableTool(true);
|
2013-07-17 13:38:11 +02:00
|
|
|
|
SetEnableWidgets(true);
|
2014-02-06 16:21:37 +01:00
|
|
|
|
|
|
|
|
|
index = comboBoxDraws->findText(nameDraw);
|
|
|
|
|
if ( index != -1 )
|
|
|
|
|
{ // -1 for not found
|
|
|
|
|
comboBoxDraws->setCurrentIndex(index);
|
|
|
|
|
currentDrawChanged( index );
|
|
|
|
|
}
|
|
|
|
|
connect(comboBoxDraws, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
|
|
|
|
|
&MainWindow::currentDrawChanged);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::OptionDraw()
|
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
|
QString nameDraw;
|
|
|
|
|
qint32 index;
|
|
|
|
|
QString nDraw = doc->GetNameActivDraw();
|
|
|
|
|
QInputDialog *dlg = new QInputDialog(this);
|
|
|
|
|
dlg->setInputMode( QInputDialog::TextInput );
|
2013-12-19 11:42:00 +01:00
|
|
|
|
dlg->setLabelText(tr("Pattern piece:"));
|
2013-07-13 12:51:31 +02:00
|
|
|
|
dlg->setTextEchoMode(QLineEdit::Normal);
|
2013-12-19 11:42:00 +01:00
|
|
|
|
dlg->setWindowTitle(tr("Enter a new label for the pattern piece."));
|
2013-11-04 21:35:15 +01:00
|
|
|
|
dlg->resize(300, 100);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
dlg->setTextValue(nDraw);
|
2013-11-04 21:35:15 +01:00
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
bool bOk = dlg->exec();
|
2013-07-13 12:51:31 +02:00
|
|
|
|
nameDraw = dlg->textValue();
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if (bOk == false || nameDraw.isEmpty())
|
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
|
delete dlg;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
index = comboBoxDraws->findText(nameDraw);
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if (index != -1)
|
|
|
|
|
{//we already have this name
|
2013-12-19 11:42:00 +01:00
|
|
|
|
qCritical()<<tr("Error. Pattern piece of same name already exists.");
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
delete dlg;
|
|
|
|
|
index = comboBoxDraws->findText(doc->GetNameActivDraw());
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if (doc->SetNameDraw(nameDraw))
|
|
|
|
|
{
|
2013-10-10 12:00:04 +02:00
|
|
|
|
comboBoxDraws->setItemText(index, nameDraw);
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-12-19 11:42:00 +01:00
|
|
|
|
QMessageBox::warning(this, tr("Error saving change!!!"), tr("Can't save new label of pattern piece"));
|
2013-10-10 12:00:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-03 14:29:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
|
template <typename Dialog, typename Func>
|
2013-10-28 16:45:27 +01:00
|
|
|
|
void MainWindow::SetToolButton(bool checked, Tool::Tools t, const QString &cursor, const QString &toolTip,
|
2014-02-06 14:57:23 +01:00
|
|
|
|
Func closeDialogSlot)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
|
|
|
|
if (checked)
|
|
|
|
|
{
|
2014-01-16 14:54:01 +01:00
|
|
|
|
CancelTool();
|
2013-08-13 18:48:36 +02:00
|
|
|
|
tool = t;
|
|
|
|
|
QPixmap pixmap(cursor);
|
|
|
|
|
QCursor cur(pixmap, 2, 3);
|
|
|
|
|
view->setCursor(cur);
|
2013-10-07 13:11:56 +02:00
|
|
|
|
helpLabel->setText(toolTip);
|
2014-02-06 14:57:23 +01:00
|
|
|
|
dialogTool = new Dialog(pattern, this);
|
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
|
|
|
|
connect(currentScene, &VMainGraphicsScene::ChoosedObject, dialogTool, &DialogTool::ChoosedObject);
|
|
|
|
|
connect(dialogTool, &DialogTool::DialogClosed, this, closeDialogSlot);
|
|
|
|
|
connect(dialogTool, &DialogTool::ToolTip, this, &MainWindow::ShowToolTip);
|
|
|
|
|
connect(doc, &VDomDocument::FullUpdateFromFile, dialogTool, &DialogTool::UpdateList);
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (QToolButton *tButton = qobject_cast< QToolButton * >(this->sender()))
|
|
|
|
|
{
|
2014-01-30 14:47:41 +01:00
|
|
|
|
Q_CHECK_PTR(tButton);
|
2013-08-13 18:48:36 +02:00
|
|
|
|
tButton->setChecked(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 14:57:23 +01:00
|
|
|
|
template <typename DrawTool>
|
|
|
|
|
void MainWindow::ClosedDialog(int result)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if (result == QDialog::Accepted)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
DrawTool::Create(dialogTool, currentScene, doc, pattern);
|
2013-07-25 14:00:51 +02:00
|
|
|
|
}
|
|
|
|
|
ArrowTool();
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolEndLine(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogEndLine>(checked, Tool::EndLineTool, ":/cursor/endline_cursor.png", tr("Select point"),
|
|
|
|
|
&MainWindow::ClosedDialogEndLine);
|
2013-10-29 16:17:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogEndLine(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolEndLine>(result);
|
2013-10-29 16:17:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolLine(bool checked)
|
|
|
|
|
{
|
2014-02-06 21:16:25 +01:00
|
|
|
|
SetToolButton<DialogLine>(checked, Tool::LineTool, ":/cursor/line_cursor.png", tr("Select first point"),
|
2014-02-06 14:57:23 +01:00
|
|
|
|
&MainWindow::ClosedDialogLine);
|
2013-07-25 20:39:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogLine(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolLine>(result);
|
2013-07-25 20:39:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolAlongLine(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogAlongLine>(checked, Tool::AlongLineTool, ":/cursor/alongline_cursor.png", tr("Select point"),
|
|
|
|
|
&MainWindow::ClosedDialogAlongLine);
|
2013-07-28 00:18:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogAlongLine(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolAlongLine>(result);
|
2013-07-28 00:18:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolShoulderPoint(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogShoulderPoint>(checked, Tool::ShoulderPointTool, ":/cursor/shoulder_cursor.png",
|
|
|
|
|
tr("Select first point of line"), &MainWindow::ClosedDialogShoulderPoint);
|
2013-07-29 14:55:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogShoulderPoint(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolShoulderPoint>(result);
|
2013-07-29 14:55:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolNormal(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogNormal>(checked, Tool::NormalTool, ":/cursor/normal_cursor.png",
|
|
|
|
|
tr("Select first point of line"), &MainWindow::ClosedDialogNormal);
|
2013-07-30 15:09:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogNormal(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolNormal>(result);
|
2013-07-30 15:09:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolBisector(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogBisector>(checked, Tool::BisectorTool, ":/cursor/bisector_cursor.png",
|
|
|
|
|
tr("Select first point of angle"), &MainWindow::ClosedDialogBisector);
|
2013-07-30 20:46:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogBisector(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolBisector>(result);
|
2013-07-30 20:46:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolLineIntersect(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogLineIntersect>(checked, Tool::LineIntersectTool, ":/cursor/intersect_cursor.png",
|
|
|
|
|
tr("Select first point of first line"), &MainWindow::ClosedDialogLineIntersect);
|
2013-07-31 13:34:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogLineIntersect(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolLineIntersect>(result);
|
2013-07-31 13:34:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolSpline(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogSpline>(checked, Tool::SplineTool, ":/cursor/spline_cursor.png",
|
|
|
|
|
tr("Select first point curve"), &MainWindow::ClosedDialogSpline);
|
2013-08-05 10:37:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogSpline(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolSpline>(result);
|
2013-08-05 10:37:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-18 12:13:32 +01:00
|
|
|
|
void MainWindow::ToolCutSpline(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogCutSpline>(checked, Tool::CutSplineTool, ":/cursor/spline_cut_point_cursor.png",
|
|
|
|
|
tr("Select simple curve"), &MainWindow::ClosedDialogCutSpline);
|
2013-12-18 12:13:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::ClosedDialogCutSpline(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolCutSpline>(result);
|
2013-08-05 10:37:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolArc(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogArc>(checked, Tool::ArcTool, ":/cursor/arc_cursor.png",
|
|
|
|
|
tr("Select point of center of arc"), &MainWindow::ClosedDialogArc);
|
2013-08-06 09:56:09 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogArc(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolArc>(result);
|
2013-08-06 09:56:09 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolSplinePath(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogSplinePath>(checked, Tool::SplinePathTool, ":/cursor/splinepath_cursor.png",
|
|
|
|
|
tr("Select point of curve path"), &MainWindow::ClosedDialogSplinePath);
|
2013-08-09 08:49:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogSplinePath(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolSplinePath>(result);
|
2013-08-09 08:49:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-18 12:13:32 +01:00
|
|
|
|
void MainWindow::ToolCutSplinePath(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogCutSplinePath>(checked, Tool::CutSplinePathTool, ":/cursor/splinepath_cut_point_cursor.png",
|
|
|
|
|
tr("Select curve path"), &MainWindow::ClosedDialogCutSplinePath);
|
2013-12-18 12:13:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::ClosedDialogCutSplinePath(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolCutSplinePath>(result);
|
2013-08-09 08:49:34 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolPointOfContact(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogPointOfContact>(checked, Tool::PointOfContact, ":/cursor/pointcontact_cursor.png",
|
|
|
|
|
tr("Select first point of line"), &MainWindow::ClosedDialogPointOfContact);
|
2013-08-21 10:03:53 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogPointOfContact(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolPointOfContact>(result);
|
2013-08-28 10:55:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolDetail(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogDetail>(checked, Tool::Detail, "://cursor/new_detail_cursor.png",
|
|
|
|
|
tr("Select points, arcs, curves clockwise."), &MainWindow::ClosedDialogDetail);
|
2013-08-28 10:55:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogDetail(int result)
|
|
|
|
|
{
|
|
|
|
|
if (result == QDialog::Accepted)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
VToolDetail::Create(dialogTool, sceneDetails, doc, pattern);
|
2013-08-21 10:03:53 +02:00
|
|
|
|
}
|
|
|
|
|
ArrowTool();
|
2014-01-07 11:04:29 +01:00
|
|
|
|
doc->FullUpdateTree();
|
2013-08-21 10:03:53 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolHeight(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogHeight>(checked, Tool::Height, ":/cursor/height_cursor.png", tr("Select base point"),
|
|
|
|
|
&MainWindow::ClosedDialogHeight);
|
2013-10-18 12:03:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogHeight(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolHeight>(result);
|
2013-10-18 12:03:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolTriangle(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogTriangle>(checked, Tool::Triangle, ":/cursor/triangle_cursor.png",
|
|
|
|
|
tr("Select first point of axis"), &MainWindow::ClosedDialogTriangle);
|
2013-10-18 20:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogTriangle(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolTriangle>(result);
|
2013-10-18 20:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolPointOfIntersection(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogPointOfIntersection>(checked, Tool::PointOfIntersection, ":/cursor/pointofintersect_cursor.png",
|
|
|
|
|
tr("Select point vertically"), &MainWindow::ClosedDialogPointOfIntersection);
|
2013-10-21 16:09:05 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedDialogPointOfIntersection(int result)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolPointOfIntersection>(result);
|
2013-10-21 16:09:05 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
|
void MainWindow::ToolUnionDetails(bool checked)
|
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogUnionDetails>(checked, Tool::UnionDetails, ":/cursor/union_cursor.png", tr("Select detail"),
|
|
|
|
|
&MainWindow::ClosedDialogUnionDetails);
|
2014-01-02 16:50:01 +01:00
|
|
|
|
//Must disconnect this signal here.
|
2014-02-06 14:57:23 +01:00
|
|
|
|
disconnect(doc, &VDomDocument::FullUpdateFromFile, dialogTool, &DialogTool::UpdateList);
|
2013-12-29 17:48:57 +01:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 14:57:23 +01:00
|
|
|
|
void MainWindow::ClosedDialogUnionDetails(int result)
|
2014-01-08 15:05:32 +01:00
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolUnionDetails>(result);
|
|
|
|
|
doc->FullUpdateTree();
|
2014-01-08 15:05:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 14:57:23 +01:00
|
|
|
|
void MainWindow::ToolCutArc(bool checked)
|
2014-01-08 15:05:32 +01:00
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
SetToolButton<DialogCutArc>(checked, Tool::CutArcTool, ":/cursor/arc_cut_cursor.png", tr("Select arc"),
|
|
|
|
|
&MainWindow::ClosedDialogCutArc);
|
2014-01-08 15:05:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 14:57:23 +01:00
|
|
|
|
void MainWindow::ClosedDialogCutArc(int result)
|
2013-12-29 17:48:57 +01:00
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
ClosedDialog<VToolCutArc>(result);
|
2013-12-29 17:48:57 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::About()
|
|
|
|
|
{
|
2014-02-14 12:29:04 +01:00
|
|
|
|
QDate date = QLocale(QLocale::C).toDate(QString(__DATE__).simplified(), QLatin1String("MMM d yyyy"));
|
|
|
|
|
|
2013-10-23 12:40:51 +02:00
|
|
|
|
QString fullName = QString("Valentina %1").arg(APP_VERSION);
|
|
|
|
|
QString qtBase(tr("Based on Qt %2 (32 bit)").arg(QT_VERSION_STR));
|
2014-02-14 12:29:04 +01:00
|
|
|
|
QString buildOn(tr("Built on %3 at %4").arg(date.toString()).arg(__TIME__));
|
|
|
|
|
QString about = QString(tr("<h1>%1</h1> %2 <br/><br/> %3 <br/><br/> %4")).arg(fullName).arg(qtBase).arg(buildOn)
|
|
|
|
|
.arg(WARRANTY);
|
2013-10-23 12:40:51 +02:00
|
|
|
|
QMessageBox::about(this, tr("About Valentina"), about);
|
2013-10-05 14:07:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::AboutQt()
|
|
|
|
|
{
|
2013-10-05 14:07:04 +02:00
|
|
|
|
QMessageBox::aboutQt(this, tr("About Qt"));
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ShowToolTip(const QString &toolTip)
|
|
|
|
|
{
|
2013-10-07 13:11:56 +02:00
|
|
|
|
helpLabel->setText(toolTip);
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::tableClosed()
|
|
|
|
|
{
|
2013-08-29 12:31:50 +02:00
|
|
|
|
show();
|
|
|
|
|
MinimumScrollBar();
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 20:31:22 +01:00
|
|
|
|
void MainWindow::OpenRecentFile()
|
|
|
|
|
{
|
|
|
|
|
QAction *action = qobject_cast<QAction *>(sender());
|
|
|
|
|
if (action)
|
|
|
|
|
{
|
|
|
|
|
LoadPattern(action->data().toString());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::showEvent( QShowEvent *event )
|
|
|
|
|
{
|
2013-07-03 14:29:26 +02:00
|
|
|
|
QMainWindow::showEvent( event );
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if ( event->spontaneous() )
|
|
|
|
|
{
|
2013-07-03 14:29:26 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if (isInitialized)
|
|
|
|
|
{
|
2013-07-03 14:29:26 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// do your init stuff here
|
2014-01-11 18:08:40 +01:00
|
|
|
|
|
2013-08-29 12:31:50 +02:00
|
|
|
|
MinimumScrollBar();
|
2013-07-03 14:29:26 +02:00
|
|
|
|
|
2013-09-18 18:52:49 +02:00
|
|
|
|
isInitialized = true;//first show windows are held
|
2013-07-03 14:29:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::closeEvent(QCloseEvent *event)
|
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
if (MaybeSave())
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
WriteSettings();
|
|
|
|
|
event->accept();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
event->ignore();
|
2013-09-26 15:47:46 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolBarOption()
|
|
|
|
|
{
|
2013-07-03 14:29:26 +02:00
|
|
|
|
QLabel * labelGrowth = new QLabel;
|
2013-12-30 12:54:38 +01:00
|
|
|
|
labelGrowth->setText(tr("Height: "));
|
2013-07-03 14:29:26 +02:00
|
|
|
|
ui->toolBarOption->addWidget(labelGrowth);
|
|
|
|
|
|
2013-06-20 16:09:50 +02:00
|
|
|
|
QStringList list;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
list <<"92"<<"98"<<"104"<<"110"<<"116"<<"122"<<"128"<<"134"<<"140"<<"146"<<"152"<<"158"<<"164"<<"170"<<"176"
|
|
|
|
|
<<"182"<<"188";
|
2013-07-17 13:38:11 +02:00
|
|
|
|
QComboBox *comboBoxGrow = new QComboBox;
|
2013-07-03 14:29:26 +02:00
|
|
|
|
comboBoxGrow->clear();
|
|
|
|
|
comboBoxGrow->addItems(list);
|
2013-11-04 21:35:15 +01:00
|
|
|
|
comboBoxGrow->setCurrentIndex(14);
|
2013-07-03 14:29:26 +02:00
|
|
|
|
ui->toolBarOption->addWidget(comboBoxGrow);
|
2014-01-09 15:56:53 +01:00
|
|
|
|
connect(comboBoxGrow, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
2014-02-05 15:04:26 +01:00
|
|
|
|
this, &MainWindow::ChangedHeight);
|
2013-07-03 14:29:26 +02:00
|
|
|
|
|
|
|
|
|
QLabel * labelSize = new QLabel;
|
2013-09-18 18:52:49 +02:00
|
|
|
|
labelSize->setText(tr(" Size: "));
|
2013-07-03 14:29:26 +02:00
|
|
|
|
ui->toolBarOption->addWidget(labelSize);
|
|
|
|
|
|
|
|
|
|
list.clear();
|
2013-11-04 21:35:15 +01:00
|
|
|
|
list <<"22"<<"24"<<"26"<<"28"<<"30"<<"32"<<"34"<<"36"<<"38"<<"40"<<"42"<<"44"<<"46"<<"48"<<"50"<<"52"<<"54"<<"56";
|
2013-07-17 13:38:11 +02:00
|
|
|
|
QComboBox *comboBoxSize = new QComboBox;
|
2013-07-03 14:29:26 +02:00
|
|
|
|
comboBoxSize->clear();
|
2013-06-20 16:09:50 +02:00
|
|
|
|
comboBoxSize->addItems(list);
|
2013-11-04 21:35:15 +01:00
|
|
|
|
comboBoxSize->setCurrentIndex(14);
|
2013-06-20 16:09:50 +02:00
|
|
|
|
ui->toolBarOption->addWidget(comboBoxSize);
|
2014-01-09 15:56:53 +01:00
|
|
|
|
connect(comboBoxSize, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
2013-07-17 13:38:11 +02:00
|
|
|
|
this, &MainWindow::ChangedSize);
|
2013-07-03 14:29:26 +02:00
|
|
|
|
|
|
|
|
|
ui->toolBarOption->addSeparator();
|
|
|
|
|
|
|
|
|
|
mouseCoordinate = new QLabel;
|
|
|
|
|
mouseCoordinate ->setText("0, 0");
|
|
|
|
|
ui->toolBarOption->addWidget(mouseCoordinate);
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ToolBarDraws()
|
|
|
|
|
{
|
2013-07-03 14:29:26 +02:00
|
|
|
|
QLabel * labelNameDraw = new QLabel;
|
2013-12-21 18:47:20 +01:00
|
|
|
|
labelNameDraw ->setText(tr("Pattern Piece: "));
|
2013-07-03 14:29:26 +02:00
|
|
|
|
ui->toolBarDraws->addWidget(labelNameDraw);
|
|
|
|
|
|
2013-07-13 12:51:31 +02:00
|
|
|
|
comboBoxDraws = new QComboBox;
|
2013-07-03 14:29:26 +02:00
|
|
|
|
ui->toolBarDraws->addWidget(comboBoxDraws);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
comboBoxDraws->setSizeAdjustPolicy(QComboBox::AdjustToContents);
|
|
|
|
|
connect(comboBoxDraws, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
|
|
|
|
|
this, &MainWindow::currentDrawChanged);
|
2013-07-03 14:29:26 +02:00
|
|
|
|
|
2013-07-13 12:51:31 +02:00
|
|
|
|
ui->toolBarDraws->addAction(ui->actionOptionDraw);
|
|
|
|
|
ui->actionOptionDraw->setEnabled(false);
|
2013-07-17 13:38:11 +02:00
|
|
|
|
|
|
|
|
|
ui->toolBarDraws->addAction(ui->actionTable);
|
|
|
|
|
ui->actionTable->setEnabled(false);
|
2013-08-15 22:39:00 +02:00
|
|
|
|
|
|
|
|
|
ui->toolBarDraws->addAction(ui->actionHistory);
|
|
|
|
|
ui->actionHistory->setEnabled(false);
|
2013-08-29 12:31:50 +02:00
|
|
|
|
connect(ui->actionHistory, &QAction::triggered, this, &MainWindow::ActionHistory);
|
|
|
|
|
|
|
|
|
|
ui->toolBarDraws->addAction(ui->actionLayout);
|
|
|
|
|
connect(ui->actionLayout, &QAction::triggered, this, &MainWindow::ActionLayout);
|
2014-01-12 21:04:15 +01:00
|
|
|
|
ui->actionLayout->setEnabled(false);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
2013-07-03 14:29:26 +02:00
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::currentDrawChanged( int index )
|
|
|
|
|
{
|
|
|
|
|
if (index != -1)
|
|
|
|
|
{
|
2013-08-15 22:39:00 +02:00
|
|
|
|
doc->setCurrentData();
|
2013-07-13 12:51:31 +02:00
|
|
|
|
doc->ChangeActivDraw(comboBoxDraws->itemText(index));
|
2014-01-27 17:01:24 +01:00
|
|
|
|
if (drawMode)
|
2014-01-10 10:16:55 +01:00
|
|
|
|
{
|
2014-01-12 21:08:52 +01:00
|
|
|
|
ArrowTool();
|
2014-01-12 20:23:44 +01:00
|
|
|
|
qint64 id = doc->SPointActiveDraw();
|
|
|
|
|
if (id != 0)
|
|
|
|
|
{
|
|
|
|
|
const VPointF *p = pattern->GeometricObject<const VPointF *>(id);
|
|
|
|
|
view->centerOn(p->toQPointF());
|
|
|
|
|
}
|
2014-01-10 10:16:55 +01:00
|
|
|
|
}
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
2013-07-03 14:29:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-06 22:11:12 +01:00
|
|
|
|
void MainWindow::mouseMove(const QPointF &scenePos)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2013-07-03 14:29:26 +02:00
|
|
|
|
QString string = QString("%1, %2")
|
2013-10-28 18:27:31 +01:00
|
|
|
|
.arg(static_cast<qint32>(toMM(scenePos.x())))
|
|
|
|
|
.arg(static_cast<qint32>(toMM(scenePos.y())));
|
2013-07-03 14:29:26 +02:00
|
|
|
|
mouseCoordinate->setText(string);
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-16 14:54:01 +01:00
|
|
|
|
void MainWindow::CancelTool()
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
|
delete dialogTool;
|
|
|
|
|
dialogTool = 0;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
switch ( tool )
|
|
|
|
|
{
|
|
|
|
|
case Tool::ArrowTool:
|
|
|
|
|
ui->actionArrowTool->setChecked(false);
|
|
|
|
|
helpLabel->setText("");
|
|
|
|
|
break;
|
|
|
|
|
case Tool::SinglePointTool:
|
|
|
|
|
Q_UNREACHABLE();
|
|
|
|
|
//Nothing to do here because we can't create this tool from main window.
|
|
|
|
|
break;
|
|
|
|
|
case Tool::EndLineTool:
|
|
|
|
|
ui->toolButtonEndLine->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
|
|
|
|
case Tool::LineTool:
|
|
|
|
|
ui->toolButtonLine->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearFocus();
|
|
|
|
|
break;
|
|
|
|
|
case Tool::AlongLineTool:
|
|
|
|
|
ui->toolButtonAlongLine->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
|
|
|
|
case Tool::ShoulderPointTool:
|
|
|
|
|
ui->toolButtonShoulderPoint->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
|
|
|
|
case Tool::NormalTool:
|
|
|
|
|
ui->toolButtonNormal->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
|
|
|
|
case Tool::BisectorTool:
|
|
|
|
|
ui->toolButtonBisector->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
|
|
|
|
case Tool::LineIntersectTool:
|
|
|
|
|
ui->toolButtonLineIntersect->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
|
|
|
|
case Tool::SplineTool:
|
|
|
|
|
ui->toolButtonSpline->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
|
|
|
|
case Tool::ArcTool:
|
|
|
|
|
ui->toolButtonArc->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
|
|
|
|
case Tool::SplinePathTool:
|
|
|
|
|
ui->toolButtonSplinePath->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
|
|
|
|
case Tool::PointOfContact:
|
|
|
|
|
ui->toolButtonPointOfContact->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
|
|
|
|
case Tool::Detail:
|
|
|
|
|
ui->toolButtonNewDetail->setChecked(false);
|
|
|
|
|
break;
|
|
|
|
|
case Tool::Height:
|
|
|
|
|
ui->toolButtonHeight->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
|
|
|
|
case Tool::Triangle:
|
|
|
|
|
ui->toolButtonTriangle->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
|
|
|
|
case Tool::PointOfIntersection:
|
|
|
|
|
ui->toolButtonPointOfIntersection->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
2013-12-18 12:13:32 +01:00
|
|
|
|
case Tool::CutSplineTool:
|
|
|
|
|
ui->toolButtonSplineCutPoint->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
|
|
|
|
case Tool::CutSplinePathTool:
|
|
|
|
|
ui->toolButtonSplinePathCutPoint->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
2014-01-02 16:50:01 +01:00
|
|
|
|
case Tool::UnionDetails:
|
|
|
|
|
ui->toolButtonUnionDetails->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
2014-01-08 15:05:32 +01:00
|
|
|
|
case Tool::CutArcTool:
|
|
|
|
|
ui->toolButtonArcCutPoint->setChecked(false);
|
|
|
|
|
currentScene->setFocus(Qt::OtherFocusReason);
|
|
|
|
|
currentScene->clearSelection();
|
|
|
|
|
break;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
default:
|
2013-12-21 18:47:20 +01:00
|
|
|
|
qWarning()<<"Got wrong tool type. Ignored.";
|
2013-11-04 21:35:15 +01:00
|
|
|
|
break;
|
2013-07-03 14:29:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ArrowTool()
|
|
|
|
|
{
|
2014-01-16 14:54:01 +01:00
|
|
|
|
CancelTool();
|
2013-07-13 12:51:31 +02:00
|
|
|
|
ui->actionArrowTool->setChecked(true);
|
2013-09-27 11:17:00 +02:00
|
|
|
|
tool = Tool::ArrowTool;
|
2013-07-03 14:29:26 +02:00
|
|
|
|
QCursor cur(Qt::ArrowCursor);
|
2013-08-13 18:48:36 +02:00
|
|
|
|
view->setCursor(cur);
|
2013-07-03 14:29:26 +02:00
|
|
|
|
helpLabel->setText("");
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ActionAroowTool()
|
|
|
|
|
{
|
2013-07-03 14:29:26 +02:00
|
|
|
|
ArrowTool();
|
2013-06-20 16:09:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::keyPressEvent ( QKeyEvent * event )
|
|
|
|
|
{
|
|
|
|
|
switch (event->key())
|
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
|
case Qt::Key_Escape:
|
|
|
|
|
ArrowTool();
|
|
|
|
|
break;
|
2013-11-12 19:29:03 +01:00
|
|
|
|
default:
|
|
|
|
|
break;
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
|
|
|
|
QMainWindow::keyPressEvent ( event );
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-11 15:09:44 +01:00
|
|
|
|
void MainWindow::SaveCurrentScene()
|
|
|
|
|
{
|
|
|
|
|
/*Save transform*/
|
|
|
|
|
currentScene->setTransform(view->transform());
|
|
|
|
|
/*Save scroll bars value for previous scene.*/
|
|
|
|
|
QScrollBar *horScrollBar = view->horizontalScrollBar();
|
|
|
|
|
currentScene->setHorScrollBar(horScrollBar->value());
|
|
|
|
|
QScrollBar *verScrollBar = view->verticalScrollBar();
|
|
|
|
|
currentScene->setVerScrollBar(verScrollBar->value());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::RestoreCurrentScene()
|
|
|
|
|
{
|
|
|
|
|
/*Set transform for current scene*/
|
|
|
|
|
view->setTransform(currentScene->transform());
|
|
|
|
|
/*Set value for current scene scroll bar.*/
|
|
|
|
|
QScrollBar *horScrollBar = view->horizontalScrollBar();
|
|
|
|
|
horScrollBar->setValue(currentScene->getHorScrollBar());
|
|
|
|
|
QScrollBar *verScrollBar = view->verticalScrollBar();
|
|
|
|
|
verScrollBar->setValue(currentScene->getVerScrollBar());
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ActionDraw(bool checked)
|
|
|
|
|
{
|
|
|
|
|
if (checked)
|
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
|
ui->actionDetails->setChecked(false);
|
2014-01-11 15:09:44 +01:00
|
|
|
|
SaveCurrentScene();
|
2013-09-17 20:13:02 +02:00
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
currentScene = sceneDraw;
|
|
|
|
|
view->setScene(currentScene);
|
2014-01-14 23:08:34 +01:00
|
|
|
|
connect(view, &VMainGraphicsView::NewFactor, sceneDraw, &VMainGraphicsScene::SetFactor);
|
2014-01-11 15:09:44 +01:00
|
|
|
|
RestoreCurrentScene();
|
2013-09-17 20:13:02 +02:00
|
|
|
|
|
2014-01-08 15:05:32 +01:00
|
|
|
|
mode = Draw::Calculation;
|
2014-01-09 15:56:53 +01:00
|
|
|
|
comboBoxDraws->setEnabled(true);
|
2014-01-07 11:04:29 +01:00
|
|
|
|
comboBoxDraws->setCurrentIndex(currentDrawIndex);//restore current pattern peace
|
2014-01-12 20:23:44 +01:00
|
|
|
|
drawMode = true;
|
2014-01-02 16:50:01 +01:00
|
|
|
|
|
2013-12-21 13:57:20 +01:00
|
|
|
|
SetEnableTool(true);
|
2013-08-29 12:31:50 +02:00
|
|
|
|
doc->setCurrentData();
|
2014-01-08 21:45:42 +01:00
|
|
|
|
ui->toolBox->setCurrentIndex(currentToolBoxIndex);
|
2014-01-12 21:04:15 +01:00
|
|
|
|
|
|
|
|
|
ui->actionHistory->setEnabled(true);
|
|
|
|
|
ui->actionLayout->setEnabled(false);
|
|
|
|
|
ui->actionOptionDraw->setEnabled(true);
|
|
|
|
|
ui->actionNewDraw->setEnabled(true);
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
|
ui->actionDraw->setChecked(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ActionDetails(bool checked)
|
|
|
|
|
{
|
|
|
|
|
if (checked)
|
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
|
ui->actionDraw->setChecked(false);
|
2014-01-11 15:09:44 +01:00
|
|
|
|
SaveCurrentScene();
|
2013-09-17 20:13:02 +02:00
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
currentScene = sceneDetails;
|
|
|
|
|
view->setScene(sceneDetails);
|
2014-01-14 23:08:34 +01:00
|
|
|
|
disconnect(view, &VMainGraphicsView::NewFactor, sceneDraw, &VMainGraphicsScene::SetFactor);
|
2014-01-11 15:09:44 +01:00
|
|
|
|
RestoreCurrentScene();
|
2014-01-02 16:50:01 +01:00
|
|
|
|
|
2014-01-12 20:23:44 +01:00
|
|
|
|
drawMode = false;
|
2014-01-07 11:04:29 +01:00
|
|
|
|
currentDrawIndex = comboBoxDraws->currentIndex();//save current pattern peace
|
2014-01-02 16:50:01 +01:00
|
|
|
|
comboBoxDraws->setCurrentIndex(comboBoxDraws->count()-1);
|
2014-01-09 15:56:53 +01:00
|
|
|
|
comboBoxDraws->setEnabled(false);
|
2014-01-02 16:50:01 +01:00
|
|
|
|
|
2014-01-12 20:23:44 +01:00
|
|
|
|
|
2013-08-28 10:55:11 +02:00
|
|
|
|
mode = Draw::Modeling;
|
2013-12-21 13:57:20 +01:00
|
|
|
|
SetEnableTool(true);
|
2014-01-08 21:45:42 +01:00
|
|
|
|
currentToolBoxIndex = ui->toolBox->currentIndex();
|
2013-12-21 13:57:20 +01:00
|
|
|
|
ui->toolBox->setCurrentIndex(4);
|
2014-01-12 21:04:15 +01:00
|
|
|
|
|
|
|
|
|
ui->actionHistory->setEnabled(false);
|
|
|
|
|
ui->actionLayout->setEnabled(true);
|
|
|
|
|
ui->actionOptionDraw->setEnabled(false);
|
|
|
|
|
ui->actionNewDraw->setEnabled(false);
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-07-13 12:51:31 +02:00
|
|
|
|
ui->actionDetails->setChecked(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 17:10:20 +01:00
|
|
|
|
bool MainWindow::SaveAs()
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-01-15 10:04:53 +01:00
|
|
|
|
QString filters(tr("Pattern files (*.val)"));
|
2014-02-12 11:55:24 +01:00
|
|
|
|
QString dir;
|
|
|
|
|
if (curFile.isEmpty())
|
|
|
|
|
{
|
|
|
|
|
dir = QDir::homePath() + tr("/pattern.val");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
dir = QFileInfo(curFile).absolutePath() + tr("/pattern.val");
|
|
|
|
|
}
|
2014-02-10 17:10:20 +01:00
|
|
|
|
QString fileName = QFileDialog::getSaveFileName(this, tr("Save as"), dir, filters);
|
2014-01-15 10:04:53 +01:00
|
|
|
|
|
2014-02-10 17:10:20 +01:00
|
|
|
|
if (fileName.isEmpty())
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
return false;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
2014-02-10 17:10:20 +01:00
|
|
|
|
QFileInfo f( fileName );
|
2014-01-15 10:04:53 +01:00
|
|
|
|
if (f.suffix().isEmpty() && f.suffix() != "val")
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
fileName += ".val";
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
2014-02-10 17:10:20 +01:00
|
|
|
|
return SavePattern(fileName);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 17:10:20 +01:00
|
|
|
|
bool MainWindow::Save()
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
if (curFile.isEmpty())
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
return SaveAs();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-02-11 19:45:34 +01:00
|
|
|
|
bool result = SavePattern(curFile);
|
|
|
|
|
if (result)
|
|
|
|
|
{
|
|
|
|
|
QString autofile = curFile +".autosave";
|
|
|
|
|
QFile file(autofile);
|
|
|
|
|
file.remove();
|
|
|
|
|
}
|
|
|
|
|
return result;
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 17:10:20 +01:00
|
|
|
|
void MainWindow::Open()
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
if (MaybeSave())
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
QString filter(tr("Pattern files (*.val)"));
|
2014-02-10 18:40:41 +01:00
|
|
|
|
QString dir;
|
|
|
|
|
if (curFile.isEmpty())
|
|
|
|
|
{
|
|
|
|
|
dir = QDir::homePath();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
dir = QFileInfo(curFile).absolutePath();
|
|
|
|
|
}
|
|
|
|
|
QString fileName = QFileDialog::getOpenFileName(this, tr("Open file"), dir, filter);
|
2014-02-10 17:10:20 +01:00
|
|
|
|
if (fileName.isEmpty() == false)
|
|
|
|
|
{
|
|
|
|
|
LoadPattern(fileName);
|
2014-01-12 20:23:44 +01:00
|
|
|
|
|
2014-02-10 17:10:20 +01:00
|
|
|
|
VAbstractTool::NewSceneRect(sceneDraw, view);
|
|
|
|
|
VAbstractTool::NewSceneRect(sceneDetails, view);
|
|
|
|
|
}
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-14 12:29:04 +01:00
|
|
|
|
void MainWindow::Options()
|
|
|
|
|
{
|
|
|
|
|
ConfigDialog dlg(this);
|
|
|
|
|
if (dlg.exec() == QDialog::Accepted)
|
|
|
|
|
{
|
|
|
|
|
InitAutoSave();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::Clear()
|
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
setCurrentFile("");
|
2013-12-29 17:48:57 +01:00
|
|
|
|
pattern->Clear();
|
2013-07-13 12:51:31 +02:00
|
|
|
|
doc->clear();
|
2013-08-28 10:55:11 +02:00
|
|
|
|
sceneDraw->clear();
|
|
|
|
|
sceneDetails->clear();
|
2014-01-16 14:54:01 +01:00
|
|
|
|
CancelTool();
|
2013-07-13 12:51:31 +02:00
|
|
|
|
comboBoxDraws->clear();
|
|
|
|
|
ui->actionOptionDraw->setEnabled(false);
|
|
|
|
|
ui->actionSave->setEnabled(false);
|
2013-07-25 14:00:51 +02:00
|
|
|
|
SetEnableTool(false);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 17:10:20 +01:00
|
|
|
|
void MainWindow::NewPattern()
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2013-09-23 15:17:15 +02:00
|
|
|
|
QProcess *v = new QProcess(this);
|
|
|
|
|
v->startDetached(QCoreApplication::applicationFilePath ());
|
|
|
|
|
delete v;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 17:10:20 +01:00
|
|
|
|
void MainWindow::PatternWasModified()
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
setWindowModified(doc->isPatternModified());
|
|
|
|
|
ui->actionSave->setEnabled(true);
|
2013-07-13 12:51:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ChangedSize(const QString & text)
|
|
|
|
|
{
|
2013-07-17 13:38:11 +02:00
|
|
|
|
qint32 size = text.toInt();
|
2013-12-29 17:48:57 +01:00
|
|
|
|
pattern->SetSize(size*10);
|
2013-07-17 13:38:11 +02:00
|
|
|
|
doc->FullUpdateTree();
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-05 15:04:26 +01:00
|
|
|
|
void MainWindow::ChangedHeight(const QString &text)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2013-07-17 13:38:11 +02:00
|
|
|
|
qint32 growth = text.toInt();
|
2013-12-29 17:48:57 +01:00
|
|
|
|
pattern->SetGrowth(growth*10);
|
2013-07-17 13:38:11 +02:00
|
|
|
|
doc->FullUpdateTree();
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::SetEnableWidgets(bool enable)
|
|
|
|
|
{
|
2013-07-17 13:38:11 +02:00
|
|
|
|
ui->actionSaveAs->setEnabled(enable);
|
|
|
|
|
ui->actionDraw->setEnabled(enable);
|
|
|
|
|
ui->actionDetails->setEnabled(enable);
|
|
|
|
|
ui->actionOptionDraw->setEnabled(enable);
|
2014-02-10 17:10:20 +01:00
|
|
|
|
if (enable == true && curFile.isEmpty() == false)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2013-07-25 14:00:51 +02:00
|
|
|
|
ui->actionSave->setEnabled(enable);
|
|
|
|
|
}
|
2013-07-17 13:38:11 +02:00
|
|
|
|
ui->actionTable->setEnabled(enable);
|
2013-08-15 22:39:00 +02:00
|
|
|
|
ui->actionHistory->setEnabled(enable);
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ActionTable(bool checked)
|
|
|
|
|
{
|
|
|
|
|
if (checked)
|
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
|
dialogTable = new DialogIncrements(pattern, doc, this);
|
2014-02-07 17:44:12 +01:00
|
|
|
|
Q_CHECK_PTR(dialogTable);
|
|
|
|
|
connect(dialogTable, &DialogIncrements::DialogClosed, this, &MainWindow::ClosedActionTable);
|
2013-07-17 13:38:11 +02:00
|
|
|
|
dialogTable->show();
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-07-17 13:38:11 +02:00
|
|
|
|
ui->actionTable->setChecked(true);
|
|
|
|
|
dialogTable->activateWindow();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedActionTable()
|
|
|
|
|
{
|
2013-07-17 13:38:11 +02:00
|
|
|
|
ui->actionTable->setChecked(false);
|
|
|
|
|
delete dialogTable;
|
2014-02-07 17:44:12 +01:00
|
|
|
|
dialogTable = 0;
|
2013-07-17 13:38:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ActionHistory(bool checked)
|
|
|
|
|
{
|
|
|
|
|
if (checked)
|
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
|
dialogHistory = new DialogHistory(pattern, doc, this);
|
2013-08-15 22:39:00 +02:00
|
|
|
|
dialogHistory->setWindowFlags(Qt::Window);
|
|
|
|
|
connect(dialogHistory, &DialogHistory::DialogClosed, this,
|
|
|
|
|
&MainWindow::ClosedActionHistory);
|
|
|
|
|
dialogHistory->show();
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-08-15 22:39:00 +02:00
|
|
|
|
ui->actionHistory->setChecked(true);
|
|
|
|
|
dialogHistory->activateWindow();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ActionLayout(bool checked)
|
|
|
|
|
{
|
2013-08-29 12:31:50 +02:00
|
|
|
|
Q_UNUSED(checked);
|
|
|
|
|
hide();
|
|
|
|
|
QVector<VItem*> listDetails;
|
2014-01-28 19:53:35 +01:00
|
|
|
|
const QHash<qint64, VDetail> *details = pattern->DataDetails();
|
|
|
|
|
QHashIterator<qint64, VDetail> idetail(*details);
|
|
|
|
|
while (idetail.hasNext())
|
|
|
|
|
{
|
|
|
|
|
idetail.next();
|
|
|
|
|
QPainterPath path = VEquidistant().ContourPath(idetail.key(), pattern);
|
|
|
|
|
listDetails.append(new VItem(path, listDetails.size()));
|
|
|
|
|
}
|
2014-02-10 17:10:20 +01:00
|
|
|
|
emit ModelChosen(listDetails, curFile);
|
2013-08-29 12:31:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::ClosedActionHistory()
|
|
|
|
|
{
|
2013-08-15 22:39:00 +02:00
|
|
|
|
ui->actionHistory->setChecked(false);
|
|
|
|
|
delete dialogHistory;
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::SetEnableTool(bool enable)
|
|
|
|
|
{
|
2013-12-21 13:57:20 +01:00
|
|
|
|
bool drawTools = false;
|
|
|
|
|
bool modelingTools = false;
|
2013-12-31 09:44:54 +01:00
|
|
|
|
if (mode == Draw::Calculation)
|
2013-12-21 13:57:20 +01:00
|
|
|
|
{
|
|
|
|
|
drawTools = enable;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-12-23 18:23:50 +01:00
|
|
|
|
modelingTools = enable;
|
2013-12-21 13:57:20 +01:00
|
|
|
|
}
|
|
|
|
|
//Drawing Tools
|
|
|
|
|
ui->toolButtonEndLine->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonLine->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonAlongLine->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonShoulderPoint->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonNormal->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonBisector->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonLineIntersect->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonSpline->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonArc->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonSplinePath->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonPointOfContact->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonNewDetail->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonHeight->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonTriangle->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonPointOfIntersection->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonSplineCutPoint->setEnabled(drawTools);
|
|
|
|
|
ui->toolButtonSplinePathCutPoint->setEnabled(drawTools);
|
2014-01-08 15:05:32 +01:00
|
|
|
|
ui->toolButtonArcCutPoint->setEnabled(drawTools);
|
2013-12-23 18:23:50 +01:00
|
|
|
|
|
|
|
|
|
//Modeling Tools
|
|
|
|
|
ui->toolButtonUnionDetails->setEnabled(modelingTools);
|
2013-07-25 14:00:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::MinimumScrollBar()
|
|
|
|
|
{
|
2013-08-29 12:31:50 +02:00
|
|
|
|
QScrollBar *horScrollBar = view->horizontalScrollBar();
|
|
|
|
|
horScrollBar->setValue(horScrollBar->minimum());
|
|
|
|
|
QScrollBar *verScrollBar = view->verticalScrollBar();
|
|
|
|
|
verScrollBar->setValue(verScrollBar->minimum());
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-19 11:00:20 +01:00
|
|
|
|
bool MainWindow::ValidatePattern(const QString &schema, const QString &fileName, QString &errorMsg, qint64 &errorLine,
|
|
|
|
|
qint64 &errorColumn) const
|
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
errorLine = -1;
|
|
|
|
|
errorColumn = -1;
|
2014-01-19 11:00:20 +01:00
|
|
|
|
QFile pattern(fileName);
|
|
|
|
|
if (pattern.open(QIODevice::ReadOnly) == false)
|
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
errorMsg = QString(tr("Can't open pattern file %1:\n%2.").arg(fileName).arg(pattern.errorString()));
|
2014-01-19 11:00:20 +01:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
QFile fileSchema(schema);
|
2014-01-27 17:01:24 +01:00
|
|
|
|
if (fileSchema.open(QIODevice::ReadOnly) == false)
|
2014-01-19 11:00:20 +01:00
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
errorMsg = QString(tr("Can't open schema file %1:\n%2.").arg(schema).arg(fileSchema.errorString()));
|
2014-01-19 11:00:20 +01:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MessageHandler messageHandler;
|
|
|
|
|
QXmlSchema sch;
|
|
|
|
|
sch.setMessageHandler(&messageHandler);
|
|
|
|
|
sch.load(&fileSchema, QUrl::fromLocalFile(fileSchema.fileName()));
|
|
|
|
|
|
|
|
|
|
bool errorOccurred = false;
|
2014-01-27 17:01:24 +01:00
|
|
|
|
if (sch.isValid() == false)
|
2014-01-19 11:00:20 +01:00
|
|
|
|
{
|
|
|
|
|
errorOccurred = true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
QXmlSchemaValidator validator(sch);
|
2014-01-27 17:01:24 +01:00
|
|
|
|
if (validator.validate(&pattern, QUrl::fromLocalFile(pattern.fileName())) == false)
|
2014-01-19 11:00:20 +01:00
|
|
|
|
{
|
|
|
|
|
errorOccurred = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (errorOccurred)
|
|
|
|
|
{
|
|
|
|
|
errorMsg = messageHandler.statusMessage();
|
|
|
|
|
errorLine = messageHandler.line();
|
|
|
|
|
errorColumn = messageHandler.column();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 17:10:20 +01:00
|
|
|
|
bool MainWindow::SavePattern(const QString &fileName)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2013-10-21 12:18:12 +02:00
|
|
|
|
doc->TestUniqueId();
|
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
|
catch (const VExceptionUniqueId &e)
|
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
e.CriticalMessageBox(tr("Error no unique id."), this);
|
2013-10-21 12:18:12 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if (fileName.isEmpty())
|
|
|
|
|
{
|
2013-10-04 15:22:37 +02:00
|
|
|
|
qWarning()<<tr("Got empty file name.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
//Writing in temporary file
|
|
|
|
|
QFileInfo tempInfo(fileName);
|
|
|
|
|
QString temp = tempInfo.absolutePath() + "/" + tempInfo.baseName() + ".tmp";
|
|
|
|
|
QFile tempFile(temp);
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if (tempFile.open(QIODevice::WriteOnly| QIODevice::Truncate))
|
|
|
|
|
{
|
2013-10-04 15:22:37 +02:00
|
|
|
|
const int Indent = 4;
|
|
|
|
|
QTextStream out(&tempFile);
|
|
|
|
|
doc->save(out, Indent);
|
|
|
|
|
tempFile.close();
|
|
|
|
|
}
|
|
|
|
|
//Replace temp file our
|
|
|
|
|
bool result = false;
|
|
|
|
|
QFile patternFile(fileName);
|
|
|
|
|
// We need here temporary file because we need restore pattern after error of copying temp file.
|
|
|
|
|
QTemporaryFile tempOfPattern;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if (tempOfPattern.open())
|
|
|
|
|
{
|
2013-10-04 15:22:37 +02:00
|
|
|
|
patternFile.copy(tempOfPattern.fileName());
|
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if ( patternFile.exists() == false || patternFile.remove() )
|
|
|
|
|
{
|
|
|
|
|
if ( tempFile.copy(patternFile.fileName()) == false )
|
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
qWarning()<<tr("Could not copy temp file to pattern file")<<Q_FUNC_INFO;
|
2013-10-04 15:22:37 +02:00
|
|
|
|
tempOfPattern.copy(fileName);
|
|
|
|
|
result = false;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-10-04 15:22:37 +02:00
|
|
|
|
result = true;
|
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
qWarning()<<tr("Could not remove pattern file")<<Q_FUNC_INFO;
|
2013-10-04 15:22:37 +02:00
|
|
|
|
result = false;
|
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if (result)
|
|
|
|
|
{
|
2013-10-04 15:22:37 +02:00
|
|
|
|
tempFile.remove();
|
2014-02-11 19:45:34 +01:00
|
|
|
|
if (tempInfo.suffix() != "autosave")
|
|
|
|
|
{
|
|
|
|
|
setCurrentFile(fileName);
|
|
|
|
|
helpLabel->setText(tr("File saved"));
|
|
|
|
|
}
|
2013-10-04 15:22:37 +02:00
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void MainWindow::AutoSavePattern()
|
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
if (curFile.isEmpty() == false && doc->isPatternModified() == true)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-02-11 19:45:34 +01:00
|
|
|
|
QString autofile = curFile +".autosave";
|
|
|
|
|
if (SavePattern(autofile) == false)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
qWarning()<<tr("Can not save pattern")<<Q_FUNC_INFO;
|
2013-10-04 16:00:19 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 17:10:20 +01:00
|
|
|
|
void MainWindow::setCurrentFile(const QString &fileName)
|
|
|
|
|
{
|
|
|
|
|
curFile = fileName;
|
|
|
|
|
doc->setPatternModified(false);
|
|
|
|
|
setWindowModified(false);
|
|
|
|
|
|
|
|
|
|
QString shownName = strippedName(curFile);
|
|
|
|
|
if (curFile.isEmpty())
|
|
|
|
|
{
|
|
|
|
|
shownName = tr("untitled.val");
|
|
|
|
|
}
|
2014-02-10 20:31:22 +01:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
QSettings settings(QSettings::IniFormat, QSettings::UserScope, QApplication::organizationName(),
|
|
|
|
|
QApplication::applicationName());
|
|
|
|
|
QStringList files = settings.value("recentFileList").toStringList();
|
|
|
|
|
files.removeAll(fileName);
|
|
|
|
|
files.prepend(fileName);
|
|
|
|
|
while (files.size() > MaxRecentFiles)
|
|
|
|
|
{
|
|
|
|
|
files.removeLast();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
settings.setValue("recentFileList", files);
|
|
|
|
|
UpdateRecentFileActions();
|
|
|
|
|
}
|
2014-02-10 17:10:20 +01:00
|
|
|
|
shownName+="[*]";
|
|
|
|
|
setWindowTitle(shownName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString MainWindow::strippedName(const QString &fullFileName)
|
|
|
|
|
{
|
|
|
|
|
return QFileInfo(fullFileName).fileName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::ReadSettings()
|
|
|
|
|
{
|
2014-02-10 20:31:22 +01:00
|
|
|
|
QSettings settings(QSettings::IniFormat, QSettings::UserScope, QApplication::organizationName(),
|
|
|
|
|
QApplication::applicationName());
|
2014-02-10 17:10:20 +01:00
|
|
|
|
QPoint pos = settings.value("pos", QPoint(10, 10)).toPoint();
|
|
|
|
|
QSize size = settings.value("size", QSize(1000, 800)).toSize();
|
|
|
|
|
resize(size);
|
|
|
|
|
move(pos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::WriteSettings()
|
|
|
|
|
{
|
2014-02-10 20:31:22 +01:00
|
|
|
|
QSettings settings(QSettings::IniFormat, QSettings::UserScope, QApplication::organizationName(),
|
|
|
|
|
QApplication::applicationName());
|
2014-02-10 17:10:20 +01:00
|
|
|
|
settings.setValue("pos", pos());
|
|
|
|
|
settings.setValue("size", size());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MainWindow::MaybeSave()
|
|
|
|
|
{
|
|
|
|
|
if (doc->isPatternModified())
|
|
|
|
|
{
|
|
|
|
|
QMessageBox::StandardButton ret;
|
|
|
|
|
ret = QMessageBox::warning(this, tr("Unsaved change"), tr("The pattern has been modified.\n"
|
|
|
|
|
"Do you want to save your changes?"),
|
|
|
|
|
QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel);
|
|
|
|
|
if (ret == QMessageBox::Save)
|
|
|
|
|
return Save();
|
|
|
|
|
else if (ret == QMessageBox::Cancel)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 20:31:22 +01:00
|
|
|
|
void MainWindow::UpdateRecentFileActions()
|
|
|
|
|
{
|
|
|
|
|
QSettings settings(QSettings::IniFormat, QSettings::UserScope, QApplication::organizationName(),
|
|
|
|
|
QApplication::applicationName());
|
|
|
|
|
QStringList files = settings.value("recentFileList").toStringList();
|
|
|
|
|
|
|
|
|
|
int numRecentFiles = qMin(files.size(), static_cast<int>(MaxRecentFiles));
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < numRecentFiles; ++i)
|
|
|
|
|
{
|
2014-02-14 18:49:50 +01:00
|
|
|
|
QString text = QString("&%1 %2").arg(i + 1).arg(strippedName(files[i]));
|
2014-02-10 20:31:22 +01:00
|
|
|
|
recentFileActs[i]->setText(text);
|
|
|
|
|
recentFileActs[i]->setData(files[i]);
|
|
|
|
|
recentFileActs[i]->setVisible(true);
|
|
|
|
|
}
|
|
|
|
|
for (int j = numRecentFiles; j < MaxRecentFiles; ++j)
|
|
|
|
|
{
|
|
|
|
|
recentFileActs[j]->setVisible(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
separatorAct->setVisible(numRecentFiles > 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::CreateMenus()
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < MaxRecentFiles; ++i)
|
|
|
|
|
{
|
|
|
|
|
ui->menuFile->insertAction(ui->actionExit, recentFileActs[i]);
|
|
|
|
|
}
|
|
|
|
|
separatorAct = new QAction(this);
|
|
|
|
|
Q_CHECK_PTR(separatorAct);
|
|
|
|
|
separatorAct->setSeparator(true);
|
|
|
|
|
ui->menuFile->insertAction(ui->actionExit, separatorAct);
|
|
|
|
|
UpdateRecentFileActions();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::CreateActions()
|
|
|
|
|
{
|
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
static const char * GENERIC_ICON_TO_CHECK = "document-open";
|
|
|
|
|
if (QIcon::hasThemeIcon(GENERIC_ICON_TO_CHECK) == false)
|
|
|
|
|
{
|
|
|
|
|
//If there is no default working icon theme then we should
|
|
|
|
|
//use an icon theme that we provide via a .qrc file
|
|
|
|
|
//This case happens under Windows and Mac OS X
|
|
|
|
|
//This does not happen under GNOME or KDE
|
|
|
|
|
QIcon::setThemeName("win.icon.theme");
|
|
|
|
|
ui->actionNew->setIcon(QIcon::fromTheme("document-new"));
|
|
|
|
|
ui->actionOpen->setIcon(QIcon::fromTheme("document-open"));
|
|
|
|
|
ui->actionSave->setIcon(QIcon::fromTheme("document-save"));
|
|
|
|
|
ui->actionSaveAs->setIcon(QIcon::fromTheme("document-save-as"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
connect(ui->actionArrowTool, &QAction::triggered, this, &MainWindow::ActionAroowTool);
|
|
|
|
|
connect(ui->actionDraw, &QAction::triggered, this, &MainWindow::ActionDraw);
|
|
|
|
|
connect(ui->actionDetails, &QAction::triggered, this, &MainWindow::ActionDetails);
|
|
|
|
|
connect(ui->actionNewDraw, &QAction::triggered, this, &MainWindow::ActionNewDraw);
|
|
|
|
|
connect(ui->actionOptionDraw, &QAction::triggered, this, &MainWindow::OptionDraw);
|
|
|
|
|
connect(ui->actionSaveAs, &QAction::triggered, this, &MainWindow::SaveAs);
|
|
|
|
|
connect(ui->actionSave, &QAction::triggered, this, &MainWindow::Save);
|
|
|
|
|
connect(ui->actionOpen, &QAction::triggered, this, &MainWindow::Open);
|
|
|
|
|
connect(ui->actionNew, &QAction::triggered, this, &MainWindow::NewPattern);
|
|
|
|
|
connect(ui->actionTable, &QAction::triggered, this, &MainWindow::ActionTable);
|
|
|
|
|
connect(ui->actionAbout_Qt, &QAction::triggered, this, &MainWindow::AboutQt);
|
|
|
|
|
connect(ui->actionAbout_Valentina, &QAction::triggered, this, &MainWindow::About);
|
|
|
|
|
connect(ui->actionExit, &QAction::triggered, this, &MainWindow::close);
|
2014-02-14 12:29:04 +01:00
|
|
|
|
connect(ui->actionOptions, &QAction::triggered, this, &MainWindow::Options);
|
2014-02-10 20:31:22 +01:00
|
|
|
|
|
|
|
|
|
//Actions for recent files loaded by a main window application.
|
|
|
|
|
for (int i = 0; i < MaxRecentFiles; ++i)
|
|
|
|
|
{
|
|
|
|
|
recentFileActs[i] = new QAction(this);
|
|
|
|
|
Q_CHECK_PTR(recentFileActs[i]);
|
|
|
|
|
recentFileActs[i]->setVisible(false);
|
|
|
|
|
connect(recentFileActs[i], &QAction::triggered, this, &MainWindow::OpenRecentFile);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-14 12:29:04 +01:00
|
|
|
|
void MainWindow::InitAutoSave()
|
|
|
|
|
{
|
|
|
|
|
//Autosaving file each 5 minutes
|
|
|
|
|
delete autoSaveTimer;
|
|
|
|
|
autoSaveTimer = 0;
|
|
|
|
|
|
|
|
|
|
QSettings settings(QSettings::IniFormat, QSettings::UserScope, QApplication::organizationName(),
|
|
|
|
|
QApplication::applicationName());
|
|
|
|
|
bool autoSave = settings.value("configuration/autosave/state", 1).toBool();
|
|
|
|
|
if (autoSave)
|
|
|
|
|
{
|
|
|
|
|
bool ok = true;
|
|
|
|
|
qint32 autoTime = settings.value("configuration/autosave/time", 5).toInt(&ok);
|
|
|
|
|
if (ok == false)
|
|
|
|
|
{
|
|
|
|
|
autoTime = 5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
autoSaveTimer = new QTimer(this);
|
|
|
|
|
Q_CHECK_PTR(autoSaveTimer);
|
|
|
|
|
autoSaveTimer->setTimerType(Qt::VeryCoarseTimer);
|
|
|
|
|
connect(autoSaveTimer, &QTimer::timeout, this, &MainWindow::AutoSavePattern);
|
|
|
|
|
autoSaveTimer->start(autoTime*60000);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
|
{
|
2014-01-16 14:54:01 +01:00
|
|
|
|
CancelTool();
|
2013-06-20 16:09:50 +02:00
|
|
|
|
delete ui;
|
2013-07-13 12:51:31 +02:00
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
|
delete pattern;
|
2013-12-30 19:59:33 +01:00
|
|
|
|
delete doc;
|
|
|
|
|
delete sceneDetails;
|
|
|
|
|
delete sceneDraw;
|
2013-09-23 15:17:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 17:10:20 +01:00
|
|
|
|
void MainWindow::LoadPattern(const QString &fileName)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2013-09-23 15:17:15 +02:00
|
|
|
|
QFile file(fileName);
|
|
|
|
|
QString errorMsg;
|
2014-01-19 11:00:20 +01:00
|
|
|
|
qint64 errorLine = 0;
|
|
|
|
|
qint64 errorColumn = 0;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if (file.open(QIODevice::ReadOnly))
|
|
|
|
|
{
|
2014-01-27 17:01:24 +01:00
|
|
|
|
if (ValidatePattern("://schema/pattern.xsd", fileName, errorMsg, errorLine, errorColumn))
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-01-19 11:00:20 +01:00
|
|
|
|
qint32 errorLine = 0;
|
|
|
|
|
qint32 errorColumn = 0;
|
|
|
|
|
if (doc->setContent(&file, &errorMsg, &errorLine, &errorColumn))
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-01-19 11:00:20 +01:00
|
|
|
|
disconnect(comboBoxDraws, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
|
|
|
|
|
this, &MainWindow::currentDrawChanged);
|
|
|
|
|
try
|
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
#ifndef QT_NO_CURSOR
|
|
|
|
|
QApplication::setOverrideCursor(Qt::WaitCursor);
|
|
|
|
|
#endif
|
2014-01-19 11:00:20 +01:00
|
|
|
|
doc->Parse(Document::FullParse, sceneDraw, sceneDetails);
|
2014-02-10 17:10:20 +01:00
|
|
|
|
#ifndef QT_NO_CURSOR
|
|
|
|
|
QApplication::restoreOverrideCursor();
|
|
|
|
|
#endif
|
2014-01-19 11:00:20 +01:00
|
|
|
|
}
|
|
|
|
|
catch (const VExceptionObjectError &e)
|
|
|
|
|
{
|
2014-02-06 15:53:56 +01:00
|
|
|
|
e.CriticalMessageBox(tr("Error parsing file."), this);
|
2014-01-19 11:00:20 +01:00
|
|
|
|
file.close();
|
|
|
|
|
Clear();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
catch (const VExceptionConversionError &e)
|
|
|
|
|
{
|
2014-02-06 15:53:56 +01:00
|
|
|
|
e.CriticalMessageBox(tr("Error can't convert value."), this);
|
2014-01-19 11:00:20 +01:00
|
|
|
|
file.close();
|
|
|
|
|
Clear();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
catch (const VExceptionEmptyParameter &e)
|
|
|
|
|
{
|
2014-02-06 15:53:56 +01:00
|
|
|
|
e.CriticalMessageBox(tr("Error empty parameter."), this);
|
2014-01-19 11:00:20 +01:00
|
|
|
|
file.close();
|
|
|
|
|
Clear();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
catch (const VExceptionWrongParameterId &e)
|
|
|
|
|
{
|
2014-02-06 15:53:56 +01:00
|
|
|
|
e.CriticalMessageBox(tr("Error wrong id."), this);
|
2014-01-19 11:00:20 +01:00
|
|
|
|
file.close();
|
|
|
|
|
Clear();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
catch (const VExceptionUniqueId &e)
|
|
|
|
|
{
|
2014-02-06 15:53:56 +01:00
|
|
|
|
e.CriticalMessageBox(tr("Error no unique id."), this);
|
2014-01-19 11:00:20 +01:00
|
|
|
|
file.close();
|
|
|
|
|
Clear();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
connect(comboBoxDraws, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
|
|
|
|
|
this, &MainWindow::currentDrawChanged);
|
|
|
|
|
QString nameDraw = doc->GetNameActivDraw();
|
|
|
|
|
qint32 index = comboBoxDraws->findText(nameDraw);
|
|
|
|
|
if ( index != -1 )
|
|
|
|
|
{ // -1 for not found
|
|
|
|
|
comboBoxDraws->setCurrentIndex(index);
|
|
|
|
|
}
|
|
|
|
|
if (comboBoxDraws->count() > 0)
|
|
|
|
|
{
|
|
|
|
|
SetEnableTool(true);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
SetEnableTool(false);
|
|
|
|
|
}
|
|
|
|
|
SetEnableWidgets(true);
|
2013-09-23 15:17:15 +02:00
|
|
|
|
}
|
2014-01-19 11:00:20 +01:00
|
|
|
|
else
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-02-06 15:53:56 +01:00
|
|
|
|
QMessageBox msgBox(this);
|
2013-10-07 11:13:24 +02:00
|
|
|
|
msgBox.setWindowTitle(tr("Error!"));
|
2014-01-19 11:00:20 +01:00
|
|
|
|
msgBox.setText(tr("Parsing pattern file error."));
|
|
|
|
|
msgBox.setInformativeText(errorMsg);
|
2013-10-07 11:13:24 +02:00
|
|
|
|
msgBox.setStandardButtons(QMessageBox::Ok);
|
|
|
|
|
msgBox.setDefaultButton(QMessageBox::Ok);
|
2014-01-19 11:00:20 +01:00
|
|
|
|
QString error = QString(tr("Error in line %1 column %2")).arg(errorLine).arg(errorColumn);
|
|
|
|
|
msgBox.setDetailedText(error);
|
2013-10-07 11:13:24 +02:00
|
|
|
|
msgBox.exec();
|
|
|
|
|
file.close();
|
|
|
|
|
Clear();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-02-06 15:53:56 +01:00
|
|
|
|
QMessageBox msgBox(this);
|
2013-09-23 15:17:15 +02:00
|
|
|
|
msgBox.setWindowTitle(tr("Error!"));
|
2014-01-19 11:00:20 +01:00
|
|
|
|
msgBox.setText(tr("Validation file error."));
|
2013-09-23 15:17:15 +02:00
|
|
|
|
msgBox.setInformativeText(errorMsg);
|
|
|
|
|
msgBox.setStandardButtons(QMessageBox::Ok);
|
|
|
|
|
msgBox.setDefaultButton(QMessageBox::Ok);
|
2014-01-19 11:00:20 +01:00
|
|
|
|
QString error = QString(tr("Error in line %1 column %2")).arg(errorLine).arg(errorColumn);
|
2013-09-23 15:17:15 +02:00
|
|
|
|
msgBox.setDetailedText(error);
|
|
|
|
|
msgBox.exec();
|
|
|
|
|
file.close();
|
|
|
|
|
Clear();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
file.close();
|
|
|
|
|
}
|
2014-01-19 11:00:20 +01:00
|
|
|
|
else
|
|
|
|
|
{
|
2014-02-10 17:10:20 +01:00
|
|
|
|
QMessageBox::warning(this, tr("Valentina"), tr("Cannot read file %1:\n%2.")
|
|
|
|
|
.arg(fileName)
|
|
|
|
|
.arg(file.errorString()));
|
2014-01-19 11:00:20 +01:00
|
|
|
|
}
|
2014-02-10 17:10:20 +01:00
|
|
|
|
setCurrentFile(fileName);
|
|
|
|
|
helpLabel->setText(tr("File loaded"));
|
2013-06-20 16:09:50 +02:00
|
|
|
|
}
|