Resolved issue #569. Tape app. Options that open new file open new instance
even if a user doesn't want this. --HG-- branch : release
This commit is contained in:
parent
913d60148f
commit
e69bae1578
|
@ -20,6 +20,7 @@
|
||||||
- [#548] Bug Detail tool. Case when seam allowance is wrong.
|
- [#548] Bug Detail tool. Case when seam allowance is wrong.
|
||||||
- Called the main app in console mode doesn't show opening file error in some cases.
|
- Called the main app in console mode doesn't show opening file error in some cases.
|
||||||
- [#553] Tape.exe crash. Issue with the Search field.
|
- [#553] Tape.exe crash. Issue with the Search field.
|
||||||
|
- [#569] Tape app. Options that open new file open new instance even if a user doesn't want this.
|
||||||
|
|
||||||
# Version 0.4.4 April 12, 2016
|
# Version 0.4.4 April 12, 2016
|
||||||
- Updated measurement templates with all measurements. Added new template Aldrich/Women measurements.
|
- Updated measurement templates with all measurements. Added new template Aldrich/Women measurements.
|
||||||
|
|
|
@ -372,79 +372,57 @@ void TMainWindow::FileNew()
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void TMainWindow::OpenIndividual()
|
void TMainWindow::OpenIndividual()
|
||||||
{
|
{
|
||||||
if (m == nullptr)
|
const QString filter = tr("Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*)");
|
||||||
{
|
//Use standard path to individual measurements
|
||||||
const QString filter = tr("Individual measurements (*.vit);;Standard measurements (*.vst);;All files (*.*)");
|
const QString pathTo = qApp->TapeSettings()->GetPathIndividualMeasurements();
|
||||||
//Use standard path to individual measurements
|
|
||||||
const QString pathTo = qApp->TapeSettings()->GetPathIndividualMeasurements();
|
Open(pathTo, filter);
|
||||||
Open(pathTo, filter);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
qApp->NewMainWindow();
|
|
||||||
qApp->MainWindow()->OpenIndividual();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void TMainWindow::OpenStandard()
|
void TMainWindow::OpenStandard()
|
||||||
{
|
{
|
||||||
if (m == nullptr)
|
const QString filter = tr("Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*)");
|
||||||
{
|
//Use standard path to standard measurements
|
||||||
const QString filter = tr("Standard measurements (*.vst);;Individual measurements (*.vit);;All files (*.*)");
|
const QString pathTo = qApp->TapeSettings()->GetPathStandardMeasurements();
|
||||||
//Use standard path to standard measurements
|
|
||||||
const QString pathTo = qApp->TapeSettings()->GetPathStandardMeasurements();
|
Open(pathTo, filter);
|
||||||
Open(pathTo, filter);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
qApp->NewMainWindow();
|
|
||||||
qApp->MainWindow()->OpenStandard();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void TMainWindow::OpenTemplate()
|
void TMainWindow::OpenTemplate()
|
||||||
{
|
{
|
||||||
if (m == nullptr)
|
const QString filter = tr("Measurements (*.vst *.vit);;All files (*.*)");
|
||||||
{
|
//Use standard path to template files
|
||||||
const QString filter = tr("Measurements (*.vst *.vit);;All files (*.*)");
|
const QString pathTo = qApp->TapeSettings()->GetPathTemplate();
|
||||||
//Use standard path to template files
|
|
||||||
const QString pathTo = qApp->TapeSettings()->GetPathTemplate();
|
|
||||||
Open(pathTo, filter);
|
|
||||||
|
|
||||||
if (m != nullptr)
|
Open(pathTo, filter);
|
||||||
{// The file was opened.
|
|
||||||
SetCurrentFile(""); // Force user to to save new file
|
if (m != nullptr)
|
||||||
lock.reset();// remove lock from template
|
{// The file was opened.
|
||||||
}
|
SetCurrentFile(""); // Force user to to save new file
|
||||||
}
|
lock.reset();// remove lock from template
|
||||||
else
|
|
||||||
{
|
|
||||||
qApp->NewMainWindow();
|
|
||||||
qApp->MainWindow()->OpenTemplate();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void TMainWindow::CreateFromExisting()
|
void TMainWindow::CreateFromExisting()
|
||||||
{
|
{
|
||||||
if (m == nullptr)
|
const QString filter = tr("Individual measurements (*.vit)");
|
||||||
{
|
//Use standard path to standard measurements
|
||||||
const QString filter = tr("Individual measurements (*.vit)");
|
const QString pathTo = qApp->TapeSettings()->GetPathIndividualMeasurements();
|
||||||
//Use standard path to standard measurements
|
const QString mPath = QFileDialog::getOpenFileName(this, tr("Select file"), pathTo, filter);
|
||||||
const QString pathTo = qApp->TapeSettings()->GetPathIndividualMeasurements();
|
|
||||||
const QString mPath = QFileDialog::getOpenFileName(this, tr("Select file"), pathTo, filter);
|
|
||||||
|
|
||||||
if (not mPath.isEmpty())
|
if (not mPath.isEmpty())
|
||||||
|
{
|
||||||
|
if (m == nullptr)
|
||||||
{
|
{
|
||||||
LoadFromExistingFile(mPath);
|
LoadFromExistingFile(mPath);
|
||||||
}
|
}
|
||||||
}
|
else
|
||||||
else
|
{
|
||||||
{
|
qApp->NewMainWindow()->CreateFromExisting();
|
||||||
qApp->NewMainWindow();
|
}
|
||||||
qApp->MainWindow()->CreateFromExisting();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2337,13 +2315,16 @@ void TMainWindow::Open(const QString &pathTo, const QString &filter)
|
||||||
{
|
{
|
||||||
const QString mPath = QFileDialog::getOpenFileName(this, tr("Open file"), pathTo, filter);
|
const QString mPath = QFileDialog::getOpenFileName(this, tr("Open file"), pathTo, filter);
|
||||||
|
|
||||||
if (mPath.isEmpty())
|
if (not mPath.isEmpty())
|
||||||
{
|
{
|
||||||
return;
|
if (m == nullptr)
|
||||||
}
|
{
|
||||||
else
|
LoadFile(mPath);
|
||||||
{
|
}
|
||||||
LoadFile(mPath);
|
else
|
||||||
|
{
|
||||||
|
qApp->NewMainWindow()->LoadFile(mPath);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user