You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/filters/kword/ascii/ImportDialog.cc

112 lines
3.5 KiB

/*
This file is part of the KDE project
Copyright 2001, 2002, 2003, 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 <tqtextcodec.h>
#include <tqradiobutton.h>
#include <tqbuttongroup.h>
#include <klocale.h>
#include <kcharsets.h>
#include <kglobal.h>
#include <kdebug.h>
#include <kapplication.h>
#include <kcombobox.h>
#include <kmessagebox.h>
#include <ImportDialogUI.h>
#include <ImportDialog.h>
AsciiImportDialog :: AsciiImportDialog(TQWidget* parent)
: KDialogBase(parent, 0, true, i18n("KWord's Plain Text Import Filter"), Ok|Cancel, No, true),
m_dialog(new ImportDialogUI(this))
{
kapp->restoreOverrideCursor();
TQStringList encodings;
encodings << i18n( "Descriptive encoding name", "Recommended ( %1 )" ).arg( "UTF-8" );
encodings << i18n( "Descriptive encoding name", "Locale ( %1 )" ).arg( TQTextCodec::codecForLocale()->name() );
encodings += TDEGlobal::charsets()->descriptiveEncodingNames();
// Add a few non-standard encodings, which might be useful for text files
const TQString description(i18n("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->insertStringList(encodings);
setMainWidget(m_dialog);
}
AsciiImportDialog :: ~AsciiImportDialog(void)
{
kapp->setOverrideCursor(TQt::waitCursor);
}
TQTextCodec* AsciiImportDialog::getCodec(void) const
{
const TQString strCodec( TDEGlobal::charsets()->encodingForName( m_dialog->comboBoxEncoding->currentText() ) );
kdDebug(30502) << "Encoding: " << strCodec << endl;
bool ok = false;
TQTextCodec* codec = TQTextCodec::codecForName( strCodec.utf8() );
// If TQTextCodec has not found a valid encoding, so try with KCharsets.
if ( codec )
{
ok = true;
}
else
{
codec = TDEGlobal::charsets()->codecForName( strCodec, ok );
}
// Still nothing?
if ( !codec || !ok )
{
// Default: UTF-8
kdWarning(30502) << "Cannot find encoding:" << strCodec << endl;
// ### TODO: what parent to use?
KMessageBox::error( 0, i18n("Cannot find encoding: %1").arg( strCodec ) );
return 0;
}
return codec;
}
int AsciiImportDialog::getParagraphStrategy(void) const
{
if (m_dialog->radioParagraphAsIs==m_dialog->buttonGroupParagraph->selected())
{
return 0;
}
if (m_dialog->radioParagraphSentence==m_dialog->buttonGroupParagraph->selected())
{
return 1;
}
else if (m_dialog->radioParagraphOldWay==m_dialog->buttonGroupParagraph->selected())
{
return 999;
}
return 0;
}
#include <ImportDialog.moc>