Added openssl-dev dependency
[froff-onlinedoc] / googledocumentlist.h
1 /*
2  * This file is part of Maemo 5 Office UI for KOffice
3  *
4  * Copyright (C) 2010 Manikandaprasad N C <maninc@gmail.com>.
5  *
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of
10  * the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20  * 02110-1301 USA
21  *
22  */
23
24 #ifndef GOOGLEDOCUMENTLIST_H
25 #define GOOGLEDOCUMENTLIST_H
26
27 #include <QObject>
28 #include <QList>
29 #include <QStandardItemModel>
30
31 class GoogleDocument;
32
33 class GoogleDocumentList : public QObject
34 {
35 public:
36     GoogleDocumentList();
37
38     void setEtag(const QString &etag);
39     QString etag();
40
41     void setEmail(const QString &email);
42     QString email();
43
44     void setTitle(const QString &title);
45     QString title();
46
47     void setAuthor(const QString &author);
48     QString author();
49
50     void append(GoogleDocument *entry);
51     int documentsCount();
52
53     QList<GoogleDocument *> entries();
54
55     QStandardItemModel * documentModel() {
56         return docModel;
57     }
58
59 private:
60     QString m_author;
61     QString m_email;
62     QString m_title;
63     QString m_etag;
64
65     QList <GoogleDocument *>m_entries;
66
67     QStandardItemModel *docModel;
68 };
69
70 #endif // GOOGLEDOCUMENTLIST_H