--- a/messagingapp/msgui/inc/msgbaseview.h Wed Sep 01 14:19:13 2010 +0530
+++ b/messagingapp/msgui/inc/msgbaseview.h Tue Sep 07 13:28:39 2010 +0530
@@ -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
@@ -75,7 +86,6 @@
* Forceful close of conversation view
*/
void closeOpenConversationView();
-
};
#endif //MSG_BASE_VIEW_H_