contactengine/contactsengine.h
author John Kern <johnk@symbian.org>
Mon, 16 Aug 2010 15:57:18 -0700
changeset 33 f6cf541961ad
parent 31 7140311376c0
child 34 93c5a58496b6
permissions -rwxr-xr-x
tech tip: workaround for Action on Options menu

#ifndef CONTACTSENGINE_H
#define CONTACTSENGINE_H

#include <QAbstractListModel>
#include <QContactManager>
#include <QPointer>

#include "contactsengine.h"

using namespace QtMobility;

class ContactsEngine : public QAbstractListModel
{
    Q_OBJECT
public:
    explicit ContactsEngine(QObject *parent = 0);
    ~ContactsEngine();

    // index() and parent()  are defined by QAbstractListModel. So we do not
    // need to define the QModelIndex
    // required by list model interface.
    int rowCount(const QModelIndex &parent = QModelIndex()) const;
    QVariant data(const QModelIndex &index, int role) const;

    QStringList dataSources();

public:
    void populateAddresses();
    void dumpContactMgr(); // use for debugging. Hard to inspect it via Qt Creator.
    void enumerateMgrs();
    void createManager();
    void createManagerSF();

signals:
    void errorOccurred(QString errMsg); // when a error message

public slots:
    void setManager(const QString &aMgr);

private:
    QString errorString(QContactManager::Error);

private:
    QMap<QString, QString> m_availableManagers;
    QPointer<QContactManager> m_manager;
    QPointer<QContactManager> m_manager_sf;
};

#endif // CONTACTSENGINE_H