2016-06-01 15:37:42 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file dialogexporttocsv.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 1 6, 2016
|
|
|
|
**
|
|
|
|
** @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) 2016 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 "dialogexporttocsv.h"
|
|
|
|
#include "ui_dialogexporttocsv.h"
|
|
|
|
|
2017-05-12 14:09:19 +02:00
|
|
|
#include "../vmisc/vcommonsettings.h"
|
|
|
|
#include "../vabstractapplication.h"
|
2016-06-01 15:37:42 +02:00
|
|
|
|
2016-06-01 16:21:03 +02:00
|
|
|
#include <QPushButton>
|
2016-06-01 15:37:42 +02:00
|
|
|
#include <QShowEvent>
|
|
|
|
#include <QTextCodec>
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
DialogExportToCSV::DialogExportToCSV(QWidget *parent)
|
|
|
|
: QDialog(parent),
|
|
|
|
ui(new Ui::DialogExportToCSV),
|
|
|
|
isInitialized(false)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
|
|
foreach (int mib, QTextCodec::availableMibs())
|
|
|
|
{
|
|
|
|
ui->comboBoxCodec->addItem(QTextCodec::codecForMib(mib)->name(), mib);
|
|
|
|
}
|
|
|
|
|
2017-09-27 12:25:18 +02:00
|
|
|
ui->comboBoxCodec->setCurrentIndex(ui->comboBoxCodec->findData(VCommonSettings::GetDefCSVCodec()));
|
2016-06-01 15:37:42 +02:00
|
|
|
|
2017-09-27 12:25:18 +02:00
|
|
|
SetSeparator(qApp->Settings()->GetDefCSVSeparator());
|
2016-06-01 16:21:03 +02:00
|
|
|
|
|
|
|
QPushButton *bDefaults = ui->buttonBox->button(QDialogButtonBox::RestoreDefaults);
|
2016-12-20 19:57:20 +01:00
|
|
|
SCASSERT(bDefaults != nullptr)
|
2017-05-12 14:09:19 +02:00
|
|
|
connect(bDefaults, &QPushButton::clicked, this, [this]()
|
2016-07-18 17:09:15 +02:00
|
|
|
{
|
2017-05-12 14:09:19 +02:00
|
|
|
ui->checkBoxWithHeader->setChecked(qApp->Settings()->GetDefCSVWithHeader());
|
2017-09-27 12:25:18 +02:00
|
|
|
ui->comboBoxCodec->setCurrentIndex(ui->comboBoxCodec->findData(VCommonSettings::GetDefCSVCodec()));
|
2016-07-18 17:09:15 +02:00
|
|
|
|
2017-05-12 14:09:19 +02:00
|
|
|
SetSeparator(qApp->Settings()->GetDefCSVSeparator());
|
2016-07-18 17:09:15 +02:00
|
|
|
});
|
2016-06-01 15:37:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
DialogExportToCSV::~DialogExportToCSV()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-09-27 12:25:18 +02:00
|
|
|
bool DialogExportToCSV::IsWithHeader() const
|
2016-06-01 15:37:42 +02:00
|
|
|
{
|
|
|
|
return ui->checkBoxWithHeader->isChecked();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-09-27 12:25:18 +02:00
|
|
|
void DialogExportToCSV::SetWithHeader(bool value)
|
|
|
|
{
|
|
|
|
ui->checkBoxWithHeader->setChecked(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int DialogExportToCSV::GetSelectedMib() const
|
2016-06-01 15:37:42 +02:00
|
|
|
{
|
2017-09-27 12:25:18 +02:00
|
|
|
if (ui->comboBoxCodec->currentIndex() != -1)
|
|
|
|
{
|
|
|
|
return ui->comboBoxCodec->currentData().toInt();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return VCommonSettings::GetDefCSVCodec();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogExportToCSV::SetSelectedMib(int value)
|
|
|
|
{
|
|
|
|
const int index = ui->comboBoxCodec->findData(value);
|
|
|
|
if (index != -1)
|
|
|
|
{
|
|
|
|
ui->comboBoxCodec->setCurrentIndex(index);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->comboBoxCodec->setCurrentIndex(ui->comboBoxCodec->findData(VCommonSettings::GetDefCSVCodec()));
|
|
|
|
}
|
2016-06-01 15:37:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-09-27 12:25:18 +02:00
|
|
|
QChar DialogExportToCSV::GetSeparator() const
|
2016-06-01 15:37:42 +02:00
|
|
|
{
|
|
|
|
if (ui->radioButtonTab->isChecked())
|
|
|
|
{
|
|
|
|
return QChar('\t');
|
|
|
|
}
|
|
|
|
else if (ui->radioButtonSemicolon->isChecked())
|
|
|
|
{
|
|
|
|
return QChar(';');
|
|
|
|
}
|
|
|
|
else if (ui->radioButtonSpace->isChecked())
|
|
|
|
{
|
|
|
|
return QChar(' ');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return QChar(',');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogExportToCSV::changeEvent(QEvent *event)
|
|
|
|
{
|
|
|
|
if (event->type() == QEvent::LanguageChange)
|
|
|
|
{
|
|
|
|
// retranslate designer form (single inheritance approach)
|
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// remember to call base class implementation
|
|
|
|
QDialog::changeEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogExportToCSV::showEvent(QShowEvent *event)
|
|
|
|
{
|
|
|
|
QDialog::showEvent( event );
|
|
|
|
if ( event->spontaneous() )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isInitialized)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// do your init stuff here
|
|
|
|
|
|
|
|
setMaximumSize(size());
|
|
|
|
setMinimumSize(size());
|
|
|
|
|
|
|
|
isInitialized = true;//first show windows are held
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogExportToCSV::SetSeparator(const QChar &separator)
|
|
|
|
{
|
|
|
|
switch(separator.toLatin1())
|
|
|
|
{
|
|
|
|
case '\t':
|
|
|
|
ui->radioButtonTab->setChecked(true);
|
|
|
|
break;
|
|
|
|
case ';':
|
|
|
|
ui->radioButtonSemicolon->setChecked(true);
|
|
|
|
break;
|
|
|
|
case ' ':
|
|
|
|
ui->radioButtonSpace->setChecked(true);
|
|
|
|
break;
|
|
|
|
case ',':
|
|
|
|
default:
|
|
|
|
ui->radioButtonComma->setChecked(true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|