1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
|
/* This file is part of the KDE project
Copyright (C) 1999 David Faure <faure@kde.org>
Copyright (C) 2004 Nicolas GOUTTE <goutte@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "csvexportdialog.h"
#include "csvexport.h"
#include "sheets/Map.h"
#include "sheets/Sheet.h"
#include <kcharsets.h>
#include <kmessagebox.h>
#include <KSharedConfig>
#include <QGuiApplication>
#include <QTextCodec>
#include <QValidator>
#include <QDebug>
using namespace Calligra::Sheets;
CSVExportDialog::CSVExportDialog(QWidget * parent)
: KoDialog(parent),
m_dialog(new ExportDialogUI(this)),
m_delimiter(","),
m_textquote('"')
{
setButtons(KoDialog::Ok | KoDialog::Cancel);
setDefaultButton(KoDialog::Ok);
QGuiApplication::restoreOverrideCursor();
QStringList encodings;
encodings << i18nc("Descriptive encoding name", "Recommended ( %1 )" , "UTF-8");
encodings << i18nc("Descriptive encoding name", "Locale ( %1 )" , QString(QTextCodec::codecForLocale()->name()));
encodings += KCharsets::charsets()->descriptiveEncodingNames();
// Add a few non-standard encodings, which might be useful for text files
const QString description(i18nc("Descriptive encoding name", "Other ( %1 )"));
encodings << description.arg("Apple Roman"); // Apple
encodings << description.arg("IBM 850") << description.arg("IBM 866"); // MS DOS
encodings << description.arg("CP 1258"); // Windows
m_dialog->comboBoxEncoding->addItems(encodings);
setMainWidget(m_dialog);
// Invalid 'Other' delimiters
// - Quotes
// - CR,LF,Vertical-tab,Formfeed,ASCII bel
QRegExp rx("^[^\"'\r\n\v\f\a]{0,1}$");
m_delimiterValidator = new QRegExpValidator(rx, m_dialog->m_delimiterBox);
m_dialog->m_delimiterEdit->setValidator(m_delimiterValidator);
connect(m_dialog->m_delimiterBox, SIGNAL(clicked(int)),
this, SLOT(delimiterClicked(int)));
connect(m_dialog->m_delimiterEdit, SIGNAL(returnPressed()),
this, SLOT(returnPressed()));
connect(m_dialog->m_delimiterEdit, SIGNAL(textChanged(QString)),
this, SLOT(textChanged(QString)));
connect(m_dialog->m_comboQuote, SIGNAL(activated(QString)),
this, SLOT(textquoteSelected(QString)));
connect(m_dialog->m_selectionOnly, SIGNAL(toggled(bool)),
this, SLOT(selectionOnlyChanged(bool)));
connect(this, SIGNAL(okClicked()), SLOT(slotOk()));
connect(this, SIGNAL(cancelClicked()), this, SLOT(slotCancel()));
loadSettings();
}
CSVExportDialog::~CSVExportDialog()
{
saveSettings();
QGuiApplication::setOverrideCursor(Qt::WaitCursor);
delete m_delimiterValidator;
}
void CSVExportDialog::loadSettings()
{
KConfigGroup configGroup = KSharedConfig::openConfig()->group("CSVDialog Settings");
m_textquote = configGroup.readEntry("textQuote", "\"")[0];
m_delimiter = configGroup.readEntry("delimiter", ",");
const QString codecText = configGroup.readEntry("codec", "");
bool selectionOnly = configGroup.readEntry("selectionOnly", false);
const QString sheetDelim = configGroup.readEntry("sheetDelimiter", m_dialog->m_sheetDelimiter->text());
bool delimAbove = configGroup.readEntry("sheetDelimiterAbove", false);
const QString eol = configGroup.readEntry("eol", "\r\n");
// update widgets
if (!codecText.isEmpty()) {
m_dialog->comboBoxEncoding->setCurrentIndex(m_dialog->comboBoxEncoding->findText(codecText));
}
if (m_delimiter == ",")
m_dialog->m_radioComma->setChecked(true);
else if (m_delimiter == "\t")
m_dialog->m_radioTab->setChecked(true);
else if (m_delimiter == " ")
m_dialog->m_radioSpace->setChecked(true);
else if (m_delimiter == ";")
m_dialog->m_radioSemicolon->setChecked(true);
else {
m_dialog->m_radioOther->setChecked(true);
m_dialog->m_delimiterEdit->setText(m_delimiter);
}
m_dialog->m_comboQuote->setCurrentIndex(m_textquote == '\'' ? 1 : m_textquote == '"' ? 0 : 2);
m_dialog->m_selectionOnly->setChecked(selectionOnly);
m_dialog->m_sheetDelimiter->setText(sheetDelim);
m_dialog->m_delimiterAboveAll->setChecked(delimAbove);
if (eol == "\r\n")
m_dialog->radioEndOfLineCRLF->setChecked(true);
else if (eol == "\r")
m_dialog->radioEndOfLineCR->setChecked(true);
else
m_dialog->radioEndOfLineLF->setChecked(true);
}
void CSVExportDialog::saveSettings()
{
KConfigGroup configGroup = KSharedConfig::openConfig()->group("CSVDialog Settings");
configGroup.writeEntry("textQuote", QString(m_textquote));
configGroup.writeEntry("delimiter", m_delimiter);
configGroup.writeEntry("codec", m_dialog->comboBoxEncoding->currentText());
configGroup.writeEntry("selectionOnly", exportSelectionOnly());
configGroup.writeEntry("sheetDelimiter", getSheetDelimiter());
configGroup.writeEntry("sheetDelimiterAbove", printAlwaysSheetDelimiter());
configGroup.writeEntry("eol", getEndOfLine());
configGroup.sync();
}
void CSVExportDialog::fillSheet(Map * map)
{
m_dialog->m_sheetList->clear();
QListWidgetItem *item;
foreach(Sheet* sheet, map->sheetList()) {
item = new QListWidgetItem(sheet->sheetName() ,m_dialog->m_sheetList);
item->setCheckState(Qt::Checked);
m_dialog->m_sheetList->addItem(item);
}
}
QChar CSVExportDialog::getDelimiter() const
{
return m_delimiter[0];
}
QChar CSVExportDialog::getTextQuote() const
{
return m_textquote;
}
bool CSVExportDialog::printAlwaysSheetDelimiter() const
{
return m_dialog->m_delimiterAboveAll->isChecked();
}
QString CSVExportDialog::getSheetDelimiter() const
{
return m_dialog->m_sheetDelimiter->text();
}
bool CSVExportDialog::exportSheet(QString const & sheetName) const
{
for (int i = 0; i < m_dialog->m_sheetList->count(); ++i) {
QListWidgetItem *const item = m_dialog->m_sheetList->item(i);
if (item->checkState() == Qt::Checked) {
if (item->text() == sheetName) {
return true;
}
}
}
return false;
}
void CSVExportDialog::slotOk()
{
accept();
}
void CSVExportDialog::slotCancel()
{
reject();
}
void CSVExportDialog::returnPressed()
{
if (!m_dialog->m_radioOther->isChecked())
return;
m_delimiter = m_dialog->m_delimiterEdit->text();
}
void CSVExportDialog::textChanged(const QString &)
{
if (m_dialog->m_delimiterEdit->text().isEmpty()) {
enableButtonOk(! m_dialog->m_radioOther->isChecked());
return;
}
m_dialog->m_radioOther->setChecked(true);
delimiterClicked(4);
}
void CSVExportDialog::delimiterClicked(int id)
{
enableButtonOk(true);
//Erase "Other Delimiter" text box if the user has selected one of
//the standard options instead (comma, semicolon, tab or space)
if (id != 4)
m_dialog->m_delimiterEdit->setText("");
switch (id) {
case 0: // comma
m_delimiter = ",";
break;
case 1: // semicolon
m_delimiter = ";";
break;
case 2: // tab
m_delimiter = "\t";
break;
case 3: // space
m_delimiter = " ";
break;
case 4: // other
enableButtonOk(! m_dialog->m_delimiterEdit->text().isEmpty());
m_delimiter = m_dialog->m_delimiterEdit->text();
break;
}
}
void CSVExportDialog::textquoteSelected(const QString & mark)
{
m_textquote = mark[0];
}
void CSVExportDialog::selectionOnlyChanged(bool on)
{
m_dialog->m_sheetList->setEnabled(!on);
m_dialog->m_delimiterLineBox->setEnabled(!on);
if (on)
m_dialog->m_tabWidget->setCurrentIndex(1);
}
bool CSVExportDialog::exportSelectionOnly() const
{
return m_dialog->m_selectionOnly->isChecked();
}
QTextCodec* CSVExportDialog::getCodec(void) const
{
const QString strCodec(KCharsets::charsets()->encodingForName(m_dialog->comboBoxEncoding->currentText()));
qDebug(lcCsvExport) << "Encoding:" << strCodec;
bool ok = false;
QTextCodec* codec = QTextCodec::codecForName(strCodec.toUtf8());
// If QTextCodec has not found a valid encoding, so try with KCharsets.
if (codec) {
ok = true;
} else {
codec = KCharsets::charsets()->codecForName(strCodec, ok);
}
// Still nothing?
if (!codec || !ok) {
// Default: UTF-8
qWarning(lcCsvExport) << "Cannot find encoding:" << strCodec;
// ### TODO: what parent to use?
KMessageBox::error(0, i18n("Cannot find encoding: %1", strCodec));
return 0;
}
return codec;
}
QString CSVExportDialog::getEndOfLine(void) const
{
QString strReturn;
if (m_dialog->radioEndOfLineLF->isChecked())
strReturn = "\n";
else if (m_dialog->radioEndOfLineCRLF->isChecked())
strReturn = "\r\n";
else if (m_dialog->radioEndOfLineCR->isChecked())
strReturn = "\r";
else
strReturn = "\n";
return strReturn;
}
|