diff -r 8ba0afbb4637 -r a15d9966050f messagingapp/msgui/inc/msgbaseview.h --- 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_