phoneplugins/csplugin/tsrc/automaticanswertest/automaticanswertest.h
author hgs
Fri, 15 Oct 2010 12:58:46 +0300
changeset 78 baacf668fe89
parent 45 6b911d05207e
permissions -rw-r--r--
201041



#ifndef AUTOMATICANSWERTEST_H
#define AUTOMATICANSWERTEST_H


#include <QGraphicsItem>
#include <hbview.h>

class CEtelIncomingCallMonitor;
class HbPushButton;

class automaticanswertest : public HbView
{
    Q_OBJECT

public:
	automaticanswertest(QGraphicsItem *parent = 0);
    ~automaticanswertest();
    
private: 
    void createContent();

protected slots:
    void answer();    
    void stopanswer();
    
private:
    HbPushButton *answering;
    HbPushButton *stopanswering;
    CEtelIncomingCallMonitor* m_incomingVoiceCallMonitor;
};

#endif // AUTOMATICANSWERTEST_H