diff -r ba76fc04e6c2 -r 6b911d05207e phoneapp/phoneuiqtviewadapter/tsrc/ut_phoneuiqtviewadapter/phoneindicatorcontroller.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phoneapp/phoneuiqtviewadapter/tsrc/ut_phoneuiqtviewadapter/phoneindicatorcontroller.h Wed Jun 23 18:12:20 2010 +0300 @@ -0,0 +1,32 @@ +/* + * phoneindicatorcontroller.h + * + * Created on: May 4, 2010 + * Author: maposio + */ + +#ifndef PHONEINDICATORCONTROLLER_H_ +#define PHONEINDICATORCONTROLLER_H_ + +#include + +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_ */