summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/importexport/csv/kexicsv_importexportpart.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kexi/plugins/importexport/csv/kexicsv_importexportpart.cpp
downloadkoffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz
koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/plugins/importexport/csv/kexicsv_importexportpart.cpp')
-rw-r--r--kexi/plugins/importexport/csv/kexicsv_importexportpart.cpp87
1 files changed, 87 insertions, 0 deletions
diff --git a/kexi/plugins/importexport/csv/kexicsv_importexportpart.cpp b/kexi/plugins/importexport/csv/kexicsv_importexportpart.cpp
new file mode 100644
index 000000000..caa8640d5
--- /dev/null
+++ b/kexi/plugins/importexport/csv/kexicsv_importexportpart.cpp
@@ -0,0 +1,87 @@
+/* This file is part of the KDE project
+ Copyright (C) 2005 Jaroslaw Staniek <js@iidea.pl>
+
+ 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 "kexicsv_importexportpart.h"
+#include "kexicsvimportdialog.h"
+#include "kexicsvexportwizard.h"
+#include <core/keximainwindow.h>
+#include <core/kexiproject.h>
+#include <kexiutils/utils.h>
+
+#include <kgenericfactory.h>
+
+KexiCSVImportExportPart::KexiCSVImportExportPart(QObject *parent, const char *name, const QStringList &args)
+ : KexiInternalPart(parent, name, args)
+{
+}
+
+KexiCSVImportExportPart::~KexiCSVImportExportPart()
+{
+}
+
+QWidget *KexiCSVImportExportPart::createWidget(const char* widgetClass, KexiMainWindow* mainWin,
+ QWidget *parent, const char *objName, QMap<QString,QString>* args )
+{
+ if (0==qstrcmp(widgetClass, "KexiCSVImportDialog")) {
+ KexiCSVImportDialog::Mode mode = (args && (*args)["sourceType"]=="file")
+ ? KexiCSVImportDialog::File : KexiCSVImportDialog::Clipboard;
+ KexiCSVImportDialog *dlg = new KexiCSVImportDialog( mode, mainWin, parent, objName );
+ m_cancelled = dlg->cancelled();
+ if (m_cancelled) {
+ delete dlg;
+ return 0;
+ }
+ return dlg;
+ }
+ else if (0==qstrcmp(widgetClass, "KexiCSVExportWizard")) {
+ if (!args)
+ return 0;
+ KexiCSVExport::Options options;
+ if (!options.assign( *args ))
+ return 0;
+ KexiCSVExportWizard *dlg = new KexiCSVExportWizard( options, mainWin, parent, objName);
+ m_cancelled = dlg->cancelled();
+ if (m_cancelled) {
+ delete dlg;
+ return 0;
+ }
+ return dlg;
+ }
+ return 0;
+}
+
+bool KexiCSVImportExportPart::executeCommand(KexiMainWindow* mainWin, const char* commandName,
+ QMap<QString,QString>* args)
+{
+ if (0==qstrcmp(commandName, "KexiCSVExport")) {
+ KexiCSVExport::Options options;
+ if (!options.assign( *args ))
+ return false;
+ KexiDB::TableOrQuerySchema tableOrQuery(
+ mainWin->project()->dbConnection(), options.itemId);
+ QTextStream *stream = 0;
+ if (args->contains("textStream"))
+ stream = KexiUtils::stringToPtr<QTextStream>( (*args)["textStream"] );
+ return KexiCSVExport::exportData(tableOrQuery, options, -1, stream);
+ }
+ return false;
+}
+
+K_EXPORT_COMPONENT_FACTORY( kexihandler_csv_importexport,
+ KGenericFactory<KexiCSVImportExportPart>("kexihandler_csv_importexport") )