diff -r 84d9eb65b26f -r e4592d119491 messagingapp/msgui/unifiededitor/src/msgunieditorattachment.cpp --- a/messagingapp/msgui/unifiededitor/src/msgunieditorattachment.cpp Mon May 03 12:29:07 2010 +0300 +++ b/messagingapp/msgui/unifiededitor/src/msgunieditorattachment.cpp Fri May 14 15:49:35 2010 +0300 @@ -25,8 +25,8 @@ #include #include #include -#include -#include +//#include +//#include #include #include @@ -49,26 +49,17 @@ const QString ATTACHMENT_ICON("qtg_small_attachment"); -MsgUnifiedEditorAttachment::MsgUnifiedEditorAttachment( const QString& pluginPath, - const QString& attachmentpath, +MsgUnifiedEditorAttachment::MsgUnifiedEditorAttachment( const QString& attachmentpath, const int filesize, QGraphicsItem *parent ) : HbWidget(parent), -mPluginPath(pluginPath), mPath(attachmentpath), mSize(filesize), -mMimeType(QString()), mAttachmentIcon(0), mAttachmentName(0), -mGestureFilter(0), +//mGestureFilter(0), mMaxSmsSize(KFirstNormalSmsLength) { -#ifdef _DEBUG_TRACES_ - qDebug() << "MsgUnifiedEditorAttachment calling HbStyle::registerPlugin"; -#endif - - setPluginBaseId(style()->registerPlugin(mPluginPath)); - //back ground HbFrameItem* backGround = new HbFrameItem(this); backGround->frameDrawer().setFrameGraphicsName(LIST_ITEM_BG_FRAME_NORMAL); @@ -119,12 +110,10 @@ MsgUnifiedEditorAttachment::~MsgUnifiedEditorAttachment() { - style()->unregisterPlugin(mPluginPath); - - if(mGestureFilter) + /* if(mGestureFilter) { removeSceneEventFilter(mGestureFilter); - } + }*/ } const QString& MsgUnifiedEditorAttachment::path() @@ -223,7 +212,7 @@ void MsgUnifiedEditorAttachment::initGesture() { // Create gesture filter - mGestureFilter = new HbGestureSceneFilter( Qt::LeftButton, this ); + /* mGestureFilter = new HbGestureSceneFilter( Qt::LeftButton, this ); // Add gestures for longpress HbGesture* gestureLongpressed = new HbGesture( HbGesture::longpress,5 ); @@ -234,10 +223,10 @@ this, SLOT(longPressed(QPointF)) ); //install gesture filter. - this->installSceneEventFilter(mGestureFilter); + this->installSceneEventFilter(mGestureFilter);*/ } -HbFeedback::InstantEffect MsgUnifiedEditorAttachment::overrideFeedback(Hb::InstantInteraction interaction) const +/*HbFeedback::InstantEffect MsgUnifiedEditorAttachment::overrideFeedback(Hb::InstantInteraction interaction) const { switch(interaction) { @@ -245,8 +234,8 @@ case Hb::InstantClicked: return HbFeedback::Basic; default: - return HbFeedback::NoOverride; + return HbFeedback::None; } - } + }*/ // EOF