155 lines
4.7 KiB
C++
155 lines
4.7 KiB
C++
|
/************************************************************************
|
||
|
**
|
||
|
** @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"
|
||
|
|
||
|
#include "../vmisc/vtapesettings.h"
|
||
|
#include "../mapplication.h"
|
||
|
|
||
|
#include <QShowEvent>
|
||
|
#include <QTextCodec>
|
||
|
|
||
|
//---------------------------------------------------------------------------------------------------------------------
|
||
|
DialogExportToCSV::DialogExportToCSV(QWidget *parent)
|
||
|
: QDialog(parent),
|
||
|
ui(new Ui::DialogExportToCSV),
|
||
|
isInitialized(false)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
|
||
|
ui->checkBoxWithHeader->setChecked(qApp->TapeSettings()->GetCSVWithHeader());
|
||
|
|
||
|
foreach (int mib, QTextCodec::availableMibs())
|
||
|
{
|
||
|
ui->comboBoxCodec->addItem(QTextCodec::codecForMib(mib)->name(), mib);
|
||
|
}
|
||
|
|
||
|
ui->comboBoxCodec->setCurrentIndex(ui->comboBoxCodec->findData(qApp->TapeSettings()->GetCSVCodec()));
|
||
|
|
||
|
SetSeparator(qApp->TapeSettings()->GetCSVSeparator());
|
||
|
}
|
||
|
|
||
|
//---------------------------------------------------------------------------------------------------------------------
|
||
|
DialogExportToCSV::~DialogExportToCSV()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|
||
|
|
||
|
//---------------------------------------------------------------------------------------------------------------------
|
||
|
bool DialogExportToCSV::WithHeader() const
|
||
|
{
|
||
|
return ui->checkBoxWithHeader->isChecked();
|
||
|
}
|
||
|
|
||
|
//---------------------------------------------------------------------------------------------------------------------
|
||
|
int DialogExportToCSV::SelectedMib() const
|
||
|
{
|
||
|
#if QT_VERSION < QT_VERSION_CHECK(5, 2, 0)
|
||
|
return ui->comboBoxCodec->itemData(ui->comboBoxCodec->currentIndex()).toInt();
|
||
|
#else
|
||
|
return ui->comboBoxCodec->currentData().toInt();
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
//---------------------------------------------------------------------------------------------------------------------
|
||
|
QChar DialogExportToCSV::Separator() const
|
||
|
{
|
||
|
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;
|
||
|
}
|
||
|
}
|