summaryrefslogtreecommitdiffstats
path: root/filters/kword/mswrite/ImportDialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'filters/kword/mswrite/ImportDialog.cpp')
-rw-r--r--filters/kword/mswrite/ImportDialog.cpp116
1 files changed, 116 insertions, 0 deletions
diff --git a/filters/kword/mswrite/ImportDialog.cpp b/filters/kword/mswrite/ImportDialog.cpp
new file mode 100644
index 000000000..cb9834913
--- /dev/null
+++ b/filters/kword/mswrite/ImportDialog.cpp
@@ -0,0 +1,116 @@
+/*
+ This file is part of the KDE project
+ Copyright (C) 2001, 2002 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 <tdelocale.h>
+#include <kcharsets.h>
+#include <tdeglobal.h>
+#include <kdebug.h>
+#include <tdeapplication.h>
+
+#include <ImportDialogUI.h>
+#include <ImportDialog.h>
+#include <tqlabel.h>
+#include <tqlayout.h>
+#include <tqradiobutton.h>
+#include <tqvbuttongroup.h>
+#include <tqcombobox.h>
+#include <tqcheckbox.h>
+
+MSWriteImportDialog :: MSWriteImportDialog(TQWidget* parent)
+ : KDialogBase(parent, 0, true, i18n("KWord's MS Write Import Filter"), Ok|Cancel, No, true),
+ m_dialog(new ImportDialogUI(this))
+{
+ kapp->restoreOverrideCursor();
+
+ m_dialog->comboBoxEncoding->insertStringList(TDEGlobal::charsets()->availableEncodingNames());
+ //m_dialog->comboBoxEncoding->insertStringList(TDEGlobal::charsets()->descriptiveEncodingNames());
+
+ resize(size()); // Is this right?
+
+ setMainWidget(m_dialog);
+
+ connect(m_dialog->comboBoxEncoding, TQT_SIGNAL(activated(int)), this,
+ TQT_SLOT(comboBoxEncodingActivated(int)));
+}
+
+MSWriteImportDialog :: ~MSWriteImportDialog(void)
+{
+ kapp->setOverrideCursor(TQt::waitCursor);
+}
+
+TQTextCodec* MSWriteImportDialog::getCodec(void) const
+{
+ TQTextCodec* codec=NULL;
+
+ if (m_dialog->radioEncodingDefault==m_dialog->buttonGroupEncoding->selected())
+ {
+ kdDebug(30509) << "Encoding: CP 1252" << endl;
+ codec=TQTextCodec::codecForName("CP 1252");
+ }
+ /*else if (m_dialog->radioEncodingLocal==m_dialog->buttonGroupEncoding->selected())
+ {
+ kdDebug(30503) << "Encoding: Locale" << endl;
+ codec=TQTextCodec::codecForLocale();
+ }*/
+ else if (m_dialog->radioEncodingOther==m_dialog->buttonGroupEncoding->selected())
+ {
+ TQString strCodec=m_dialog->comboBoxEncoding->currentText();
+ kdDebug(30509) << "Encoding: " << strCodec << endl;
+ if (strCodec.isEmpty())
+ {
+ codec=TQTextCodec::codecForLocale();
+ }
+ else
+ {
+ // We do not use TQTextCodec::codecForName here
+ // because we fear subtle problems
+ codec=TDEGlobal::charsets()->codecForName(strCodec);
+ }
+ }
+
+ if (!codec)
+ {
+ // Default: UTF-8
+ kdWarning(30509) << "No codec set, assuming UTF-8" << endl;
+ codec=TQTextCodec::codecForName("UTF-8");
+ }
+
+ return codec;
+}
+
+bool MSWriteImportDialog::getSimulateLinespacing (void) const
+{
+ return (m_dialog->checkBoxLinespacing->isChecked ());
+}
+
+bool MSWriteImportDialog::getSimulateImageOffset (void) const
+{
+ return (m_dialog->checkBoxImageOffset->isChecked ());
+}
+
+void MSWriteImportDialog::comboBoxEncodingActivated(int)
+{
+ m_dialog->buttonGroupEncoding->setButton(1); // Select the "Other Encoding" button
+}
+
+
+#include <ImportDialog.moc>