phoneapp/phoneuiqtviewadapter/tsrc/ut_phoneuiqtviewadapter/phoneindicatorcontroller.h
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:33:21 +0100
branchGCC_SURGE
changeset 51 f39ed5e045e0
parent 45 6b911d05207e
child 60 1eef62f5c541
permissions -rw-r--r--
Catchup to latest Symbian^4

/*
 * phoneindicatorcontroller.h
 *
 *  Created on: May 4, 2010
 *      Author: maposio
 */

#ifndef PHONEINDICATORCONTROLLER_H_
#define PHONEINDICATORCONTROLLER_H_

#include <QObject>

extern bool m_setActiveCallCalled;
extern bool m_clearActiveCallCalled;
extern bool m_enableCallIndCalled;
extern bool m_disableCallIndCalled;

class PhoneIndicatorController : public QObject
    {
    Q_OBJECT
public:
    PhoneIndicatorController(QObject *parent);
    virtual ~PhoneIndicatorController();
    
    void setActiveCallData();
    void clearActiveCallData();
    void enableActiveCallIndicator();
    void disableActiveCallIndicator();
    
    };

#endif /* PHONEINDICATORCONTROLLER_H_ */