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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
/*
* This file is part of the KDE libraries
* Copyright (c) 2001 Michael Goffioul <kdeprint@swing.be>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License version 2 as published by the Free Software Foundation.
*
* 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.
**/
#ifndef KXMLCOMMAND_H
#define KXMLCOMMAND_H
#include <qdom.h>
#include <qmap.h>
#include <qobject.h>
#include <kdelibs_export.h>
class DrMain;
class DrGroup;
class DrBase;
class KDEPRINT_EXPORT KXmlCommand : public QObject
{
friend class KXmlCommandManager;
public:
~KXmlCommand();
QString name() const;
void setName(const QString&);
QString command();
void setCommand(const QString&);
DrMain* driver();
DrMain* takeDriver();
void setDriver(DrMain*);
QString io(bool io_input = true, bool io_pipe = false);
void setIo(const QString&, bool io_input = true, bool io_pipe = false);
QString description();
void setDescription(const QString&);
QString mimeType();
void setMimeType(const QString&);
bool acceptMimeType(const QString&);
QStringList inputMimeTypes();
void setInputMimeTypes(const QStringList&);
QStringList requirements();
void setRequirements(const QStringList&);
QString comment();
void setComment( const QString& );
bool isValid();
QString buildCommand(const QMap<QString,QString>& opts, bool pipein = true, bool pipeout = true);
void setOptions(const QMap<QString,QString>& opts);
void getOptions(QMap<QString,QString>& opts, bool incldef = false);
protected:
void init();
void loadXml();
void saveXml();
void loadDesktop();
void saveDesktop();
void check(bool use_xml = false);
DrGroup* parseGroup(const QDomElement& e, DrGroup *grp = 0);
DrBase* parseArgument(const QDomElement& e);
void parseIO(const QDomElement& e, int n);
QDomElement createIO(QDomDocument&, int, const QString&);
QDomElement createGroup(QDomDocument&, DrGroup*);
QDomElement createElement(QDomDocument&, DrBase*);
// use protected constructor to only allow the manager to
// create KXmlCommand object.
KXmlCommand(const QString& xmlId = QString::null);
private:
class KXmlCommandPrivate;
KXmlCommandPrivate *d;
};
class KDEPRINT_EXPORT KXmlCommandManager : public QObject
{
public:
enum IO_CheckType { None = 0, Basic, Advanced };
KXmlCommandManager();
~KXmlCommandManager();
KXmlCommand* loadCommand(const QString& xmlId, bool check = false);
void saveCommand(KXmlCommand *xmlCmd);
QStringList commandList();
QStringList commandListWithDescription();
QString selectCommand(QWidget *parent = 0);
QStringList autoConvert(const QString& mimesrc, const QString& mimedest);
int insertCommand(QStringList& list, const QString& filtername, bool defaultToStart = true);
bool checkCommand(const QString&, int inputCheck = Advanced, int outputCheck = Advanced, QString *msg = 0);
bool configure(KXmlCommand*, QWidget *parent = 0);
void cleanUp();
static KXmlCommandManager* self();
protected:
void preload();
KXmlCommand* command(const QString&) const;
private:
class KXmlCommandManagerPrivate;
KXmlCommandManagerPrivate *d;
static KXmlCommandManager *m_self;
};
#endif
|