blob: 7856851927da81939ad531cf00fb37d1a92e9df0 [file] [log] [blame]
Alexandre Lision3b0bd332015-03-15 18:43:07 -04001/*
2 * Copyright (C) 2004-2015 Savoir-Faire Linux Inc.
3 * Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Additional permission under GNU GPL version 3 section 7:
20 *
21 * If you modify this program, or any covered work, by linking or
22 * combining it with the OpenSSL project's OpenSSL library (or a
23 * modified version of that library), containing parts covered by the
24 * terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
25 * grants you additional permission to convey the resulting work.
26 * Corresponding Source for a non-source form of such a combination
27 * shall include the source code for the parts of OpenSSL used as well
28 * as that of the covered work.
29 */
30#ifndef ADDRESSBOOKBACKEND_H
31#define ADDRESSBOOKBACKEND_H
32
33#include <collectioninterface.h>
34#include <collectioneditor.h>
35
36class Person;
37
38template<typename T> class CollectionMediator;
39
40class AddressBookBackend : public CollectionInterface
41{
42public:
43 explicit AddressBookBackend(CollectionMediator<Person>* mediator);
44 virtual ~AddressBookBackend();
45
46 virtual bool load() override;
47 virtual bool reload() override;
48 virtual bool clear() override;
49 virtual QString name () const override;
50 virtual QString category () const override;
51 virtual QVariant icon () const override;
52 virtual bool isEnabled() const override;
53 virtual QByteArray id () const override;
54 virtual SupportedFeatures supportedFeatures() const override;
55
56private:
57 CollectionMediator<Person>* m_pMediator;
58
59 void asyncLoad(int startingPoint);
60};
61
62#endif // ADDRESSBOOKBACKEND_H