diff -r 759dc5235cdb -r bf7eb7911fc5 emailuis/nmailuiwidgets/src/nmattachmentlistitem.cpp --- a/emailuis/nmailuiwidgets/src/nmattachmentlistitem.cpp Fri Jun 11 13:27:14 2010 +0300 +++ b/emailuis/nmailuiwidgets/src/nmattachmentlistitem.cpp Wed Jun 23 18:00:21 2010 +0300 @@ -24,9 +24,6 @@ static const int PROGRESSBAR_MAX = 100; static const int PROGRESSBAR_HIDE_COUNTDOWN = 500; -// Hardcoded file size length. Maximum (999.9 Mb) fits into size field. -static const int FILE_SIZE_FIELD_LENGTH = 120; - /*! @nmailuiwidgets \class NmAttachmentListItem @@ -112,23 +109,6 @@ } /*! - Set the length of the filename field. - */ -void NmAttachmentListItem::resetFileNameLength(Qt::Orientation orientation) -{ - NM_FUNCTION; - - QSizeF reso = screenSize(orientation); - - if (orientation == Qt::Horizontal) { - mFileNameText->setPreferredWidth(reso.width() / 2 - FILE_SIZE_FIELD_LENGTH); - } - else { - mFileNameText->setPreferredWidth(reso.width() - FILE_SIZE_FIELD_LENGTH); - } -} - -/*! Set the download progress bar value (0-100)%, if value is 0 progress bar is hidden */ void NmAttachmentListItem::setProgressBarValue(const int value) @@ -235,40 +215,6 @@ /*! - This function returns screen size depending on the orientation. - Function is copied from NmApplication. - */ -QSize NmAttachmentListItem::screenSize(Qt::Orientation orientation) -{ - NM_FUNCTION; - - QSize ret(0,0); - HbDeviceProfile currentP = HbDeviceProfile::current(); - HbDeviceProfile altP(currentP.alternateProfileName()); - QSize curPSize = currentP.logicalSize(); - QSize altPSize = altP.logicalSize(); - if (orientation == Qt::Horizontal) { - // Get wide profile size in landscape - if (curPSize.width() > altPSize.width()) { - ret = curPSize; - } - else{ - ret = altPSize; - } - } - else { - // Get narrow profile size in portrait - if (curPSize.width() < altPSize.width()) { - ret = curPSize; - } - else{ - ret = altPSize; - } - } - return ret; -} - -/*! This function handles gestures */ void NmAttachmentListItem::gestureEvent(QGestureEvent *event)