~ubuntu-branches/ubuntu/karmic/kdepim/karmic-backports

« back to all changes in this revision

Viewing changes to akonadi/agents/nepomuk_contact_feeder/nepomukcontactfeeder.h

  • Committer: Bazaar Package Importer
  • Author(s): Christian Mangold
  • Date: 2009-07-10 06:34:50 UTC
  • mfrom: (1.1.40 upstream)
  • Revision ID: james.westby@ubuntu.com-20090710063450-neojgew2fh0n3y0u
Tags: 4:4.2.96-0ubuntu1
* New upstream release
* Bump kde build-deps to 4.2.96

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
    Copyright (c) 2007 Tobias Koenig <tokoe@kde.org>
3
 
                  2008 Sebastian Trueg <trueg@kde.org>
4
 
 
5
 
    This library is free software; you can redistribute it and/or modify it
6
 
    under the terms of the GNU Library General Public License as published by
7
 
    the Free Software Foundation; either version 2 of the License, or (at your
8
 
    option) any later version.
9
 
 
10
 
    This library is distributed in the hope that it will be useful, but WITHOUT
11
 
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12
 
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
13
 
    License for more details.
14
 
 
15
 
    You should have received a copy of the GNU Library General Public License
16
 
    along with this library; see the file COPYING.LIB.  If not, write to the
17
 
    Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18
 
    02110-1301, USA.
19
 
*/
20
 
 
21
 
#ifndef AKONADI_NEPOMUK_CONTACT_FEEDER_H
22
 
#define AKONADI_NEPOMUK_CONTACT_FEEDER_H
23
 
 
24
 
#include <akonadi/agentbase.h>
25
 
#include <akonadi/item.h>
26
 
 
27
 
namespace Soprano
28
 
{
29
 
class NRLModel;
30
 
}
31
 
 
32
 
namespace Akonadi {
33
 
 
34
 
class NepomukContactFeeder : public AgentBase, public AgentBase::Observer
35
 
{
36
 
  Q_OBJECT
37
 
  Q_CLASSINFO( "D-Bus Interface", "org.kde.akonadi.NepomukContactFeeder" )
38
 
 
39
 
  public:
40
 
    NepomukContactFeeder( const QString &id );
41
 
    ~NepomukContactFeeder();
42
 
 
43
 
  public Q_SLOTS:
44
 
    Q_SCRIPTABLE void updateAll( bool force = false );
45
 
 
46
 
  protected:
47
 
    void itemAdded( const Akonadi::Item &item, const Akonadi::Collection &collection );
48
 
    void itemChanged( const Akonadi::Item &item, const QSet<QByteArray> &partIdentifiers );
49
 
    void itemRemoved(const Akonadi::Item &item);
50
 
 
51
 
  private Q_SLOTS:
52
 
    void slotInitialItemScan();
53
 
    void slotItemsReceivedForInitialScan( const Akonadi::Item::List& items );
54
 
 
55
 
  private:
56
 
    void updateItem( const Akonadi::Item &item );
57
 
    void updateContactItem( const Akonadi::Item &item, const QUrl& );
58
 
    void updateGroupItem( const Akonadi::Item &item, const QUrl& );
59
 
 
60
 
    bool mForceUpdate;
61
 
    Soprano::NRLModel *mNrlModel;
62
 
};
63
 
 
64
 
}
65
 
 
66
 
#endif