phoneplugins/csplugin/tsrc/automaticanswertest/automaticanswertest.h
changeset 45 6b911d05207e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phoneplugins/csplugin/tsrc/automaticanswertest/automaticanswertest.h	Wed Jun 23 18:12:20 2010 +0300
@@ -0,0 +1,34 @@
+
+
+#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