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 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
|
/* 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 "KoCsvImportDialog.h"
// Qt
#include <QButtonGroup>
#include <QTextCodec>
#include <QTextStream>
#include <QTableWidget>
#include <QTableWidgetSelectionRange>
// KF5
#include <kcharsets.h>
#include <kconfig.h>
#include <WidgetsDebug.h>
#include <klocalizedstring.h>
#include <kmessagebox.h>
#include <ksharedconfig.h>
#include "ui_KoCsvImportDialog.h"
class KoCsvImportWidget : public QWidget, public Ui::KoCsvImportWidget
{
Q_OBJECT
public:
explicit KoCsvImportWidget(QWidget* parent) : QWidget(parent) { setupUi(this); }
};
class Q_DECL_HIDDEN KoCsvImportDialog::Private
{
public:
KoCsvImportDialog* q;
KoCsvImportWidget* dialog;
bool rowsAdjusted;
bool columnsAdjusted;
int startRow;
int startCol;
int endRow;
int endCol;
QChar textQuote;
QString delimiter;
QString commentSymbol;
bool ignoreDuplicates;
QByteArray data;
QTextCodec* codec;
QStringList formatList; ///< List of the column formats
explicit Private(KoCsvImportDialog* qq) : q(qq) {}
void loadSettings();
void saveSettings();
void fillTable();
void setText(int row, int col, const QString& text);
void adjustRows(int iRows);
void adjustCols(int iCols);
bool checkUpdateRange();
QTextCodec* updateCodec() const;
};
KoCsvImportDialog::KoCsvImportDialog(QWidget* parent)
: KoDialog(parent)
, d(new Private(this))
{
d->dialog = new KoCsvImportWidget(this);
d->rowsAdjusted = false;
d->columnsAdjusted = false;
d->startRow = 0;
d->startCol = 0;
d->endRow = -1;
d->endCol = -1;
d->textQuote = QChar('"');
d->delimiter = QString(',');
d->commentSymbol = QString('#');
d->ignoreDuplicates = false;
d->codec = QTextCodec::codecForName("UTF-8");
setButtons( KoDialog::Ok|KoDialog::Cancel );
setCaption( i18n( "Import Data" ) );
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
d->dialog->comboBoxEncoding->insertItems( 0, encodings );
setDataTypes(Generic|Text|Date|None);
// XXX: Qt3->Q4
//d->dialog->m_sheet->setReadOnly( true );
d->loadSettings();
//resize(sizeHint());
resize( 600, 400 ); // Try to show as much as possible of the table view
setMainWidget(d->dialog);
d->dialog->m_sheet->setSelectionMode( QAbstractItemView::MultiSelection );
QButtonGroup* buttonGroup = new QButtonGroup( this );
buttonGroup->addButton(d->dialog->m_radioComma, 0);
buttonGroup->addButton(d->dialog->m_radioSemicolon, 1);
buttonGroup->addButton(d->dialog->m_radioSpace, 2);
buttonGroup->addButton(d->dialog->m_radioTab, 3);
buttonGroup->addButton(d->dialog->m_radioOther, 4);
connect(d->dialog->m_formatComboBox, SIGNAL(activated(QString)),
this, SLOT(formatChanged(QString)));
connect(buttonGroup, SIGNAL(buttonClicked(int)),
this, SLOT(delimiterClicked(int)));
connect(d->dialog->m_delimiterEdit, SIGNAL(returnPressed()),
this, SLOT(returnPressed()));
connect(d->dialog->m_delimiterEdit, SIGNAL(textChanged(QString)),
this, SLOT(genericDelimiterChanged(QString)));
connect(d->dialog->m_comboQuote, SIGNAL(activated(QString)),
this, SLOT(textquoteSelected(QString)));
connect(d->dialog->m_sheet, SIGNAL(currentCellChanged(int,int,int,int)),
this, SLOT(currentCellChanged(int,int)));
connect(d->dialog->m_ignoreDuplicates, SIGNAL(stateChanged(int)),
this, SLOT(ignoreDuplicatesChanged(int)));
connect(d->dialog->m_updateButton, SIGNAL(clicked()),
this, SLOT(updateClicked()));
connect(d->dialog->comboBoxEncoding, SIGNAL(textChanged(QString)),
this, SLOT(encodingChanged(QString)));
}
KoCsvImportDialog::~KoCsvImportDialog()
{
d->saveSettings();
delete d;
}
// ----------------------------------------------------------------
// public methods
void KoCsvImportDialog::setData( const QByteArray& data )
{
d->data = data;
d->fillTable();
}
bool KoCsvImportDialog::firstRowContainHeaders() const
{
return d->dialog->m_firstRowHeader->isChecked();
}
bool KoCsvImportDialog::firstColContainHeaders() const
{
return d->dialog->m_firstColHeader->isChecked();
}
int KoCsvImportDialog::rows() const
{
int rows = d->dialog->m_sheet->rowCount();
if ( d->endRow >= 0 )
rows = d->endRow - d->startRow + 1;
return rows;
}
int KoCsvImportDialog::cols() const
{
int cols = d->dialog->m_sheet->columnCount();
if ( d->endCol >= 0 )
cols = d->endCol - d->startCol + 1;
return cols;
}
QString KoCsvImportDialog::text(int row, int col) const
{
// Check for overflow.
if ( row >= rows() || col >= cols())
return QString();
QTableWidgetItem* item = d->dialog->m_sheet->item( row - d->startRow, col - d->startCol );
if ( !item )
return QString();
return item->text();
}
void KoCsvImportDialog::setDataTypes(DataTypes dataTypes)
{
d->formatList.clear();
if (dataTypes & Generic)
d->formatList << i18n("Generic");
if (dataTypes & Text)
d->formatList << i18n("Text");
if (dataTypes & Date)
d->formatList << i18n("Date");
if (dataTypes & Currency)
d->formatList << i18n("Currency");
if (dataTypes & None)
d->formatList << i18n("None");
d->dialog->m_formatComboBox->insertItems(0, d->formatList);
}
void KoCsvImportDialog::setDataWidgetEnabled(bool enable)
{
d->dialog->m_tabWidget->setTabEnabled(0, enable);
}
QString KoCsvImportDialog::decimalSymbol() const
{
return d->dialog->m_decimalSymbol->text();
}
void KoCsvImportDialog::setDecimalSymbol(const QString& symbol)
{
d->dialog->m_decimalSymbol->setText(symbol);
}
QString KoCsvImportDialog::thousandsSeparator() const
{
return d->dialog->m_thousandsSeparator->text();
}
void KoCsvImportDialog::setThousandsSeparator(const QString& separator)
{
d->dialog->m_thousandsSeparator->setText(separator);
}
QString KoCsvImportDialog::delimiter() const
{
return d->delimiter;
}
void KoCsvImportDialog::setDelimiter(const QString& delimit)
{
d->delimiter = delimit;
if (delimit == ",")
d->dialog->m_radioComma->setChecked(true);
else if (delimit == "\t")
d->dialog->m_radioTab->setChecked(true);
else if (delimit == " ")
d->dialog->m_radioSpace->setChecked(true);
else if (delimit == ";")
d->dialog->m_radioSemicolon->setChecked(true);
else {
d->dialog->m_radioOther->setChecked(true);
d->dialog->m_delimiterEdit->setText(delimit);
}
}
// ----------------------------------------------------------------
void KoCsvImportDialog::Private::loadSettings()
{
KConfigGroup configGroup = KSharedConfig::openConfig()->group("CSVDialog Settings");
textQuote = configGroup.readEntry("textQuote", "\"").at(0);
delimiter = configGroup.readEntry("delimiter", ",");
ignoreDuplicates = configGroup.readEntry("ignoreDups", false);
const QString codecText = configGroup.readEntry("codec", "");
// update widgets
if (!codecText.isEmpty()) {
dialog->comboBoxEncoding->setCurrentIndex(dialog->comboBoxEncoding->findText(codecText));
codec = updateCodec();
}
q->setDelimiter(delimiter);
dialog->m_ignoreDuplicates->setChecked(ignoreDuplicates);
dialog->m_comboQuote->setCurrentIndex(textQuote == '\'' ? 1 : textQuote == '"' ? 0 : 2);
}
void KoCsvImportDialog::Private::saveSettings()
{
KConfigGroup configGroup = KSharedConfig::openConfig()->group("CSVDialog Settings");
configGroup.writeEntry("textQuote", QString(textQuote));
configGroup.writeEntry("delimiter", delimiter);
configGroup.writeEntry("ignoreDups", ignoreDuplicates);
configGroup.writeEntry("codec", dialog->comboBoxEncoding->currentText());
configGroup.sync();
}
void KoCsvImportDialog::Private::fillTable()
{
int row, column;
bool lastCharDelimiter = false;
enum { Start, InQuotedField, MaybeQuotedFieldEnd, QuotedFieldEnd,
MaybeInNormalField, InNormalField } state = Start;
QChar x;
QString field;
QApplication::setOverrideCursor(Qt::WaitCursor);
dialog->m_sheet->setRowCount(0);
dialog->m_sheet->setColumnCount(0);
int maxColumn = 1;
row = column = 1;
QTextStream inputStream(data, QIODevice::ReadOnly);
debugWidgets <<"Encoding:" << codec->name();
inputStream.setCodec( codec );
int delimiterIndex = 0;
const int delimiterLength = delimiter.size();
bool lastCharWasCr = false; // Last character was a Carriage Return
while (!inputStream.atEnd())
{
inputStream >> x; // read one char
// ### TODO: we should perhaps skip all other control characters
if ( x == '\r' )
{
// We have a Carriage Return, assume that its role is the one of a LineFeed
lastCharWasCr = true;
x = '\n'; // Replace by Line Feed
}
else if ( x == '\n' && lastCharWasCr )
{
// The end of line was already handled by the Carriage Return, so do nothing for this character
lastCharWasCr = false;
continue;
}
else if ( x == QChar( 0xc ) )
{
// We have a FormFeed, skip it
lastCharWasCr = false;
continue;
}
else
{
lastCharWasCr = false;
}
if ( column > maxColumn )
maxColumn = column;
switch (state)
{
case Start :
if (x == textQuote)
{
state = InQuotedField;
}
else if (delimiterIndex < delimiterLength && x == delimiter.at(delimiterIndex))
{
field += x;
delimiterIndex++;
if (field.right(delimiterIndex) == delimiter)
{
if ((ignoreDuplicates == false) || (lastCharDelimiter == false))
column += delimiterLength;
lastCharDelimiter = true;
field.clear();
delimiterIndex = 0;
state = Start;
}
else if (delimiterIndex >= delimiterLength)
delimiterIndex = 0;
}
else if (x == '\n')
{
++row;
column = 1;
if ( row > ( endRow - startRow ) && endRow >= 0 )
break;
}
else
{
field += x;
state = MaybeInNormalField;
}
break;
case InQuotedField :
if (x == textQuote)
{
state = MaybeQuotedFieldEnd;
}
else if (x == '\n')
{
setText(row - startRow, column - startCol, field);
field.clear();
++row;
column = 1;
if ( row > ( endRow - startRow ) && endRow >= 0 )
break;
state = Start;
}
else
{
field += x;
}
break;
case MaybeQuotedFieldEnd :
if (x == textQuote)
{
field += x;
state = InQuotedField;
}
else if (x == '\n')
{
setText(row - startRow, column - startCol, field);
field.clear();
++row;
column = 1;
if ( row > ( endRow - startRow ) && endRow >= 0 )
break;
state = Start;
}
else if (delimiterIndex < delimiterLength && x == delimiter.at(delimiterIndex))
{
field += x;
delimiterIndex++;
if (field.right(delimiterIndex) == delimiter)
{
setText(row - startRow, column - startCol, field.left(field.count()-delimiterIndex));
field.clear();
if ((ignoreDuplicates == false) || (lastCharDelimiter == false))
column += delimiterLength;
lastCharDelimiter = true;
field.clear();
delimiterIndex = 0;
}
else if (delimiterIndex >= delimiterLength)
delimiterIndex = 0;
state = Start;
}
else
{
state = QuotedFieldEnd;
}
break;
case QuotedFieldEnd :
if (x == '\n')
{
setText(row - startRow, column - startCol, field);
field.clear();
++row;
column = 1;
if ( row > ( endRow - startRow ) && endRow >= 0 )
break;
state = Start;
}
else if (delimiterIndex < delimiterLength && x == delimiter.at(delimiterIndex))
{
field += x;
delimiterIndex++;
if (field.right(delimiterIndex) == delimiter)
{
setText(row - startRow, column - startCol, field.left(field.count()-delimiterIndex));
field.clear();
if ((ignoreDuplicates == false) || (lastCharDelimiter == false))
column += delimiterLength;
lastCharDelimiter = true;
field.clear();
delimiterIndex = 0;
}
else if (delimiterIndex >= delimiterLength)
delimiterIndex = 0;
state = Start;
}
else
{
state = QuotedFieldEnd;
}
break;
case MaybeInNormalField :
if (x == textQuote)
{
field.clear();
state = InQuotedField;
break;
}
state = InNormalField;
case InNormalField :
if (x == '\n')
{
setText(row - startRow, column - startCol, field);
field.clear();
++row;
column = 1;
if ( row > ( endRow - startRow ) && endRow >= 0 )
break;
state = Start;
}
else if (delimiterIndex < delimiterLength && x == delimiter.at(delimiterIndex))
{
field += x;
delimiterIndex++;
if (field.right(delimiterIndex) == delimiter)
{
setText(row - startRow, column - startCol, field.left(field.count()-delimiterIndex));
field.clear();
if ((ignoreDuplicates == false) || (lastCharDelimiter == false))
column += delimiterLength;
lastCharDelimiter = true;
field.clear();
delimiterIndex = 0;
}
else if (delimiterIndex >= delimiterLength)
delimiterIndex = 0;
state = Start;
}
else
{
field += x;
}
}
if (delimiter.isEmpty() || x != delimiter.at(0))
lastCharDelimiter = false;
}
if ( !field.isEmpty() )
{
// the last line of the file had not any line end
setText(row - startRow, column - startCol, field);
++row;
field.clear();
}
if (row) row--; // row is higher by 1, so reduce it
columnsAdjusted = true;
adjustRows( row - startRow );
adjustCols( maxColumn - startCol );
for (column = 0; column < dialog->m_sheet->columnCount(); ++column)
{
const QTableWidgetItem* headerItem = dialog->m_sheet->horizontalHeaderItem(column);
if (!headerItem || !formatList.contains(headerItem->text())) {
dialog->m_sheet->setHorizontalHeaderItem(column, new QTableWidgetItem(i18n("Generic")));
}
}
dialog->m_rowStart->setMinimum(1);
dialog->m_colStart->setMinimum(1);
dialog->m_rowStart->setMaximum(row);
dialog->m_colStart->setMaximum(maxColumn);
dialog->m_rowEnd->setMinimum(1);
dialog->m_colEnd->setMinimum(1);
dialog->m_rowEnd->setMaximum(row);
dialog->m_colEnd->setMaximum(maxColumn);
dialog->m_rowEnd->setValue(endRow == -1 ? row : endRow);
dialog->m_colEnd->setValue(endCol == -1 ? maxColumn : endCol);
QApplication::restoreOverrideCursor();
}
KoCsvImportDialog::DataType KoCsvImportDialog::dataType(int col) const
{
const QString header = d->dialog->m_sheet->model()->headerData(col, Qt::Horizontal).toString();
if (header == i18n("Generic"))
return Generic;
else if (header == i18n("Text"))
return Text;
else if (header == i18n("Date"))
return Date;
else if (header == i18n("Currency"))
return Currency;
else if (header == i18n("None"))
return None;
return Generic;
}
void KoCsvImportDialog::Private::setText(int row, int col, const QString& text)
{
if (row < 1 || col < 1) // skipped by the user
return;
if ((row > (endRow - startRow) && endRow > 0) || (col > (endCol - startCol) && endCol > 0))
return;
if (dialog->m_sheet->rowCount() < row)
{
dialog->m_sheet->setRowCount(row + 5000); /* We add 5000 at a time to limit recalculations */
rowsAdjusted = true;
}
if (dialog->m_sheet->columnCount() < col)
{
dialog->m_sheet->setColumnCount(col);
columnsAdjusted = true;
}
QTableWidgetItem* item = dialog->m_sheet->item(row - 1, col - 1);
if (!item) {
item = new QTableWidgetItem();
dialog->m_sheet->setItem(row - 1, col - 1, item);
}
item->setText(text);
}
/*
* Called after the first fillTable() when number of rows are unknown.
*/
void KoCsvImportDialog::Private::adjustRows(int iRows)
{
if (rowsAdjusted)
{
dialog->m_sheet->setRowCount(iRows);
rowsAdjusted = false;
}
}
void KoCsvImportDialog::Private::adjustCols(int iCols)
{
if (columnsAdjusted)
{
dialog->m_sheet->setColumnCount(iCols);
columnsAdjusted = false;
if (endCol == -1)
{
if (iCols > (endCol - startCol))
iCols = endCol - startCol;
dialog->m_sheet->setColumnCount(iCols);
}
}
}
void KoCsvImportDialog::returnPressed()
{
if (d->dialog->m_radioOther->isChecked())
return;
d->delimiter = d->dialog->m_delimiterEdit->text();
d->fillTable();
}
void KoCsvImportDialog::genericDelimiterChanged( const QString & )
{
d->dialog->m_radioOther->setChecked ( true );
delimiterClicked(d->dialog->m_radioOther->group()->id(d->dialog->m_radioOther)); // other
}
void KoCsvImportDialog::formatChanged( const QString& newValue )
{
QList<QTableWidgetSelectionRange> selectionRanges = d->dialog->m_sheet->selectedRanges();
foreach (const QTableWidgetSelectionRange &selectionRange, selectionRanges) {
for (int j = selectionRange.leftColumn(); j <= selectionRange.rightColumn(); ++j) {
d->dialog->m_sheet->horizontalHeaderItem(j)->setText(newValue);
}
}
}
void KoCsvImportDialog::delimiterClicked(int id)
{
const QButtonGroup* group = d->dialog->m_radioComma->group();
if (id == group->id(d->dialog->m_radioComma) )
d->delimiter = ',';
else if (id == group->id(d->dialog->m_radioOther))
d->delimiter = d->dialog->m_delimiterEdit->text();
else if (id == group->id(d->dialog->m_radioTab))
d->delimiter = '\t';
else if (id == group->id(d->dialog->m_radioSpace))
d->delimiter = ' ';
else if (id == group->id(d->dialog->m_radioSemicolon))
d->delimiter = ';';
debugWidgets << "Delimiter" << d->delimiter << "selected.";
d->fillTable();
}
void KoCsvImportDialog::textquoteSelected(const QString& mark)
{
if (mark == i18n("None"))
d->textQuote = 0;
else
d->textQuote = mark[0];
d->fillTable();
}
void KoCsvImportDialog::updateClicked()
{
if ( !d->checkUpdateRange() )
return;
d->startRow = d->dialog->m_rowStart->value() - 1;
d->endRow = d->dialog->m_rowEnd->value();
d->startCol = d->dialog->m_colStart->value() - 1;
d->endCol = d->dialog->m_colEnd->value();
d->fillTable();
}
bool KoCsvImportDialog::Private::checkUpdateRange()
{
if ((dialog->m_rowStart->value() > dialog->m_rowEnd->value()) ||
(dialog->m_colStart->value() > dialog->m_colEnd->value()))
{
KMessageBox::error(0, i18n("Please check the ranges you specified. The start value must be lower than the end value."));
return false;
}
return true;
}
void KoCsvImportDialog::currentCellChanged(int, int col)
{
const QString header = d->dialog->m_sheet->model()->headerData(col, Qt::Horizontal).toString();
const int index = d->dialog->m_formatComboBox->findText(header);
d->dialog->m_formatComboBox->setCurrentIndex(index > -1 ? index : 0);
}
void KoCsvImportDialog::ignoreDuplicatesChanged(int)
{
if (d->dialog->m_ignoreDuplicates->isChecked())
d->ignoreDuplicates = true;
else
d->ignoreDuplicates = false;
d->fillTable();
}
QTextCodec* KoCsvImportDialog::Private::updateCodec() const
{
const QString strCodec( KCharsets::charsets()->encodingForName( dialog->comboBoxEncoding->currentText() ) );
debugWidgets <<"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
warnWidgets << "Cannot find encoding:" << strCodec;
// ### TODO: what parent to use?
KMessageBox::error( 0, i18n("Cannot find encoding: %1", strCodec ) );
return 0;
}
return codec;
}
void KoCsvImportDialog::encodingChanged(const QString &)
{
QTextCodec* codec = d->updateCodec();
if ( codec )
{
d->codec = codec;
d->fillTable();
}
}
#include "KoCsvImportDialog.moc"
|