summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/importexport/csv/kexicsv_importexportpart.cpp
blob: 4112bf5285842aa420d3715fdb07909babc7e7a1 (plain)
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
/* 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(TQObject *tqparent, const char *name, const TQStringList &args)
 : KexiInternalPart(tqparent, name, args)
{
}

KexiCSVImportExportPart::~KexiCSVImportExportPart()
{
}

TQWidget *KexiCSVImportExportPart::createWidget(const char* widgetClass, KexiMainWindow* mainWin, 
 TQWidget *tqparent, const char *objName, TQMap<TQString,TQString>* args )
{
	if (0==qstrcmp(widgetClass, "KexiCSVImportDialog")) {
		KexiCSVImportDialog::Mode mode = (args && (*args)["sourceType"]=="file")
			? KexiCSVImportDialog::File : KexiCSVImportDialog::Clipboard;
		KexiCSVImportDialog *dlg = new KexiCSVImportDialog( mode, mainWin, tqparent, 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, tqparent, objName);
		m_cancelled = dlg->cancelled();
		if (m_cancelled) {
			delete dlg;
			return 0;
		}
		return dlg;
	}
	return 0;
}

bool KexiCSVImportExportPart::executeCommand(KexiMainWindow* mainWin, const char* commandName, 
	TQMap<TQString,TQString>* args)
{
	if (0==qstrcmp(commandName, "KexiCSVExport")) {
		KexiCSVExport::Options options;
		if (!options.assign( *args ))
			return false;
		KexiDB::TableOrQuerySchema tableOrQuery(
			mainWin->project()->dbConnection(), options.itemId);
		TQTextStream *stream = 0;
		if (args->tqcontains("textStream"))
			stream = KexiUtils::stringToPtr<TQTextStream>( (*args)["textStream"] );
		return KexiCSVExport::exportData(tableOrQuery, options, -1, stream);
	}
	return false;
}

K_EXPORT_COMPONENT_FACTORY( kexihandler_csv_importexport, 
	KGenericFactory<KexiCSVImportExportPart>("kexihandler_csv_importexport") )