messagingapp/msgui/inc/msgbaseview.h
changeset 70 a15d9966050f
parent 52 12db4185673b
--- a/messagingapp/msgui/inc/msgbaseview.h	Thu Sep 02 20:23:03 2010 +0300
+++ b/messagingapp/msgui/inc/msgbaseview.h	Fri Sep 17 08:28:39 2010 +0300
@@ -34,6 +34,17 @@
     MsgBaseView(QGraphicsItem* parent=0):HbView(parent){}
     
     /**
+     * Handler for HW key events.
+     * @param key Key code.
+     * @return true if key event handled else false.
+     */
+    virtual bool handleKeyEvent(int key)
+    {
+        Q_UNUSED(key)
+        return false;
+    }
+
+    /**
      * enum defining view id(s).
      */
     enum viewId
@@ -45,8 +56,7 @@
         UNIEDITOR,
         UNIVIEWER,
         MSGSETTINGS,
-        SERVICE,
-        AUDIOFETCHER
+        SERVICE
         };
     
     /**
@@ -76,7 +86,6 @@
      * Forceful close of conversation view
      */
     void closeOpenConversationView();
-
 };
 
 #endif //MSG_BASE_VIEW_H_