blob: e797f7e682790fb3c9e9a9c2c8b0ec73dad04476 (
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
|
/***************************************************************************
copyright : (C) 2003-2006 by Robby Stephenson
email : robby@periapsis.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of version 2 of the GNU General Public License as *
* published by the Free Software Foundation; *
* *
***************************************************************************/
#include "xsltexporter.h"
#include "xslthandler.h"
#include "tellicoxmlexporter.h"
#include "../filehandler.h"
#include <klocale.h>
#include <kurlrequester.h>
#include <tqlabel.h>
#include <tqgroupbox.h>
#include <tqlayout.h>
#include <tqhbox.h>
#include <tqdom.h>
#include <tqwhatsthis.h>
using Tellico::Export::XSLTExporter;
XSLTExporter::XSLTExporter() : Export::Exporter(),
m_widget(0),
m_URLRequester(0) {
}
TQString XSLTExporter::formatString() const {
return i18n("XSLT");
}
TQString XSLTExporter::fileFilter() const {
return i18n("*|All Files");
}
bool XSLTExporter::exec() {
KURL u = m_URLRequester->url();
if(u.isEmpty() || !u.isValid()) {
return TQString();
}
// XSLTHandler handler(FileHandler::readXMLFile(url));
XSLTHandler handler(u);
TellicoXMLExporter exporter;
exporter.setEntries(entries());
exporter.setOptions(options());
TQDomDocument dom = exporter.exportXML();
return FileHandler::writeTextURL(url(), handler.applyStylesheet(dom.toString()),
options() & ExportUTF8, options() & Export::ExportForce);
}
TQWidget* XSLTExporter::widget(TQWidget* parent_, const char* name_/*=0*/) {
if(m_widget && TQT_BASE_OBJECT(m_widget->tqparent()) == TQT_BASE_OBJECT(parent_)) {
return m_widget;
}
m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget);
TQGroupBox* group = new TQGroupBox(1, Qt::Horizontal, i18n("XSLT Options"), m_widget);
l->addWidget(group);
TQHBox* box = new TQHBox(group);
box->setSpacing(4);
(void) new TQLabel(i18n("XSLT file:"), box);
m_URLRequester = new KURLRequester(box);
TQWhatsThis::add(m_URLRequester, i18n("Choose the XSLT file used to transform the Tellico XML data."));
l->addStretch(1);
return m_widget;
}
|