blob: e30d01b576b46cc7a837232006b6635ff62f610c (
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
/****************************************************************************
* themefile.h - Theme file handling
*
* Copyright (C) 2003 Hans Karlsson <karlsson.h@home.se>
* Copyright (C) 2003-2004 Adam Geitgey <adam@rootnode.org>
* Copyright (c) 2004 Petri Damstén <damu@iki.fi>
*
* This file is part of SuperKaramba.
*
* SuperKaramba is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* SuperKaramba 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with SuperKaramba; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
****************************************************************************/
#ifndef THEMEFILE_H
#define THEMEFILE_H
#include <kurl.h>
#include <tqstring.h>
#include <tqcstring.h>
#include <tqpixmap.h>
#include <tqfile.h>
#include <tqvaluevector.h>
class LineParser;
class TQTextStream;
class ThemeLocale;
class ZipFile;
/**
@author See README for the list of authors
*/
class ThemeFile
{
public:
typedef TQValueVector<ThemeFile> List;
ThemeFile(const KURL& url = KURL());
~ThemeFile();
bool isZipTheme() const { return m_zipTheme; };
const TQString& name() const { return m_name; };
const TQString& version() const { return m_version; };
const TQString& license() const { return m_license; };
const TQString& id() const { return m_id; };
const TQString& mo() const { return m_mo; };
const TQString& file() const { return m_file; };
const TQString& pythonModule() const { return m_python; };
bool pythonModuleExists() const;
const TQString& path() const { return m_path; };
const TQString& description() const { return m_description; };
const TQString& author() const { return m_author; };
const TQString& authorEmail() const { return m_authorEmail; };
const TQString& homepage() const { return m_homepage; };
TQPixmap icon() const;
bool exists() const;
bool isThemeFile(const TQString& filename) const;
bool isValid() const;
TQByteArray readThemeFile(const TQString& filename) const;
bool fileExists(const TQString& filename) const;
const ThemeLocale* locale() const { return m_locale; };
bool canUninstall() const;
bool set(const KURL& url);
bool open();
bool nextLine(LineParser& parser);
bool close();
static bool isZipFile(const TQString& filename);
static TQString canonicalFile(const TQString& file);
private:
void parseXml();
void mkdir(TQDir dir);
TQString m_path;
bool m_zipTheme;
TQString m_file;
TQString m_id;
TQString m_mo;
TQString m_name;
TQString m_theme;
TQString m_python;
TQString m_icon;
TQString m_version;
TQString m_license;
TQTextStream* m_stream;
TQByteArray m_ba;
TQFile m_fl;
TQString m_description;
TQString m_author;
TQString m_authorEmail;
TQString m_homepage;
ThemeLocale* m_locale;
ZipFile* m_zip;
};
#endif
|