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
|
/***************************************************************************
* Copyright (C) 2004 by Alexander Dymo <adymo@kdevelop.org> *
* *
* This program 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 program 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 Library General Public *
* License along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#ifndef PROFILE_H
#define PROFILE_H
#include <kurl.h>
#include <tqstringlist.h>
/**
@short KDevelop profile
A class which represents a profile for KDevelop platform stored on disk.
*/
class Profile {
public:
/**An entry in the lists that store profile information*/
struct Entry {
Entry() {}
Entry(const TQString &_name, bool _derived): name(_name), derived(_derived) {}
TQString name;
bool derived;
};
typedef TQValueList<Entry> EntryList;
/**Lists which are held by a profile.*/
enum List {
Properties /**<X-TDevelop-Properties defined for this profile.*/,
ExplicitEnable /**<A list of explicitly enabled plugins (names).*/,
ExplicitDisable /**<A list of explicitly disabled plugins (names).*/
};
Profile(Profile *parent, const TQString &name);
Profile(Profile *parent, const TQString &name, const TQString &genericName, const TQString &description);
~Profile();
TQValueList<Profile*> children() const { return m_children; }
Profile *parent() const { return m_parent; }
void save();
bool remove();
TQString name() const { return m_name; }
TQString genericName() const { return m_genericName; }
TQString description() const { return m_description; }
EntryList list(List type);
void addEntry(List type, const TQString &value);
void removeEntry(List type, const TQString &value);
void clearList(List type);
bool hasInEntryList(EntryList &list, TQString value);
KURL::List resources(const TQString &nameFilter);
void addResource(const KURL &url);
void detachFromParent();
protected:
void addChildProfile(Profile *profile);
void removeChildProfile(Profile *profile);
TQString dirName() const;
TQStringList &listByType(List type);
private:
Profile *m_parent;
TQValueList<Profile*> m_children;
TQString m_name;
TQString m_genericName;
TQString m_description;
TQStringList m_properties;
TQStringList m_explicitEnable;
TQStringList m_explicitDisable;
};
#endif
|