phoneplugins/csplugin/tsrc/automaticanswertest/automaticanswertest.h
branchGCC_SURGE
changeset 51 f39ed5e045e0
parent 45 6b911d05207e
equal deleted inserted replaced
40:bab96b7ed1a4 51:f39ed5e045e0
       
     1 
       
     2 
       
     3 #ifndef AUTOMATICANSWERTEST_H
       
     4 #define AUTOMATICANSWERTEST_H
       
     5 
       
     6 
       
     7 #include <QGraphicsItem>
       
     8 #include <hbview.h>
       
     9 
       
    10 class CEtelIncomingCallMonitor;
       
    11 class HbPushButton;
       
    12 
       
    13 class automaticanswertest : public HbView
       
    14 {
       
    15     Q_OBJECT
       
    16 
       
    17 public:
       
    18 	automaticanswertest(QGraphicsItem *parent = 0);
       
    19     ~automaticanswertest();
       
    20     
       
    21 private: 
       
    22     void createContent();
       
    23 
       
    24 protected slots:
       
    25     void answer();    
       
    26     void stopanswer();
       
    27     
       
    28 private:
       
    29     HbPushButton *answering;
       
    30     HbPushButton *stopanswering;
       
    31     CEtelIncomingCallMonitor* m_incomingVoiceCallMonitor;
       
    32 };
       
    33 
       
    34 #endif // AUTOMATICANSWERTEST_H