0.7.1
[fapman] / repository.h
1 /*
2         This file is part of Faster Application Manager.
3
4         Faster Application Manager is free software: you can redistribute it and/or modify
5         it under the terms of the GNU General Public License as published by
6         the Free Software Foundation, either version 3 of the License, or
7         (at your option) any later version.
8
9         Faster Application Manager is distributed in the hope that it will be useful,
10         but WITHOUT ANY WARRANTY; without even the implied warranty of
11         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12         GNU General Public License for more details.
13
14         You should have received a copy of the GNU General Public License
15         along with Faster Application Manager.  If not, see <http://www.gnu.org/licenses/>.
16
17         (C) Heikki Holstila 2010
18 */
19
20 #ifndef REPOSITORY_H
21 #define REPOSITORY_H
22
23 #include <QtCore>
24 class Package;
25 class AAptInterface;
26
27 class Repository
28 {
29 public:
30         explicit Repository();
31         virtual ~Repository();
32
33         void setName(QString n_) { iName=n_; }
34         void setEnabled(bool e_) { iEnabled=e_; }
35     void setUrl(QString url_) { iUrl = url_; }
36     void setDir(QString dir_) { iDir = dir_; }
37     void setComponents(QString cmp_) { iComponents = cmp_; }
38     void setDist(QString d_) { iDist = d_; }
39     void setUrlDir(QString url_dir);
40
41         QString name() const { return iName; }
42         QString url() const { return iUrl; }
43         QString dir() const { return iDir; }
44         QString dist() const { return iDist; }
45         QString components() const { return iComponents; }
46         bool enabled() const { return iEnabled; }
47     QString toString(bool noDisable=false) const;
48         QStringList toListFileNames() const;
49         bool setFromString(QString repo);
50         void set(QString name, QString url, QString dir_dist, QString components, bool enabled);
51         void set(QString name, QString url, QString dir, QString dist, QString components, bool enabled);
52
53 private:
54         Repository(const Repository& old);
55         Repository operator= (const Repository& old);
56
57         QString iName;
58         QString iUrl;
59         QString iDir;
60         QString iDist;
61         QString iComponents;
62         bool iEnabled;
63 };
64
65 #endif // REPOSITORY_H