phoneapp/phoneuiqtviewadapter/tsrc/ut_phoneuiqtviewadapter/phoneindicatorcontroller.h
author hgs
Mon, 23 Aug 2010 15:42:12 +0300
changeset 60 1eef62f5c541
parent 45 6b911d05207e
permissions -rw-r--r--
201033

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

#ifndef PHONEINDICATORCONTROLLER_H_
#define PHONEINDICATORCONTROLLER_H_

#include <QObject>

class PhoneVisibilityHandler;

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

class PhoneIndicatorController : public QObject
    {
    Q_OBJECT
public:
    PhoneIndicatorController(
        PhoneVisibilityHandler& visibilityHandler,
        QObject *parent = 0);
    virtual ~PhoneIndicatorController();
    
    void setActiveCallData();
    void clearActiveCallData();
    void enableActiveCallIndicator();
    void disableActiveCallIndicator();
    
    };

#endif /* PHONEINDICATORCONTROLLER_H_ */