Moved location update logic to new class called UpdateLocation.
[situare] / src / ui / userinfo.cpp
index 6f48bbd..9301e6c 100644 (file)
 
 #include <QFormLayout>
 #include <QLabel>
+#include <QMouseEvent>
 #include <QPainter>
 #include <QSettings>
 #include <QVBoxLayout>
 
 #include "common.h"
 #include "imagebutton.h"
-#include "../user/user.h"
+#include "textmodifier.h"
+#include "user/user.h"
 
 #include "userinfo.h"
 
-const int BACKGROUND_WIDTH = 368;           ///< Width for item
-const int BACKGROUND_TOP_HEIGHT = 20;       ///< Height for item top
-const int BACKGROUND_BOTTOM_HEIGHT = 15;    ///< Height for item bottom
-const int ICON_HEIGHT = 24;                 ///< Icon height
-const int ICON_WIDTH = 24;                  ///< Icon width
-const int MARGIN = 5;                       ///< Icon margin
-const int LINE_LENGTH = 27;                 ///< Line length
-const int MOUSE_PRESS_AREA_WIDTH = 20;      ///< Area width for item height toggling
-const int MOUSE_PRESS_AREA_HEIGHT = 20;     ///< Area height for item height toggling
-
-/**
-* @var LABEL_MAX_WIDTH
-*
-* @brief All label's maximum width
-*/
-const int LABEL_MAX_WIDTH = BACKGROUND_WIDTH - 3 * MARGIN - ICON_WIDTH + 130;
+const int BACKGROUND_BOTTOM_HEIGHT = 15;
+const int BACKGROUND_TOP_HEIGHT = 20;
+const int BACKGROUND_WIDTH = 368;
+const int ICON_HEIGHT = 24;
+const int ICON_WIDTH = 24;
+const int MARGIN = 5;
+const int LABEL_MAX_WIDTH = BACKGROUND_WIDTH - ICON_WIDTH - 5 * MARGIN;
 
 UserInfo::UserInfo(QWidget *parent)
     : QWidget(parent),
-      m_expanded(false),
-      m_updateLocation(0)
+      m_expanded(false)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
@@ -68,10 +60,6 @@ UserInfo::UserInfo(QWidget *parent)
     infoLayout->setMargin(0);
     infoLayout->setSpacing(0);
 
-    QHBoxLayout *buttonLayout = new QHBoxLayout();
-    buttonLayout->setMargin(0);
-    buttonLayout->setSpacing(0);
-
     QLabel *envelopeLabel = new QLabel();
     envelopeLabel->setPixmap(QPixmap(":/res/images/envelope.png"));
     envelopeLabel->setContentsMargins(0, 0, MARGIN, 0);
@@ -85,42 +73,29 @@ UserInfo::UserInfo(QWidget *parent)
     clockLabel->setContentsMargins(0, 0, MARGIN, 0);
     clockLabel->setFixedSize(ICON_WIDTH + MARGIN, ICON_HEIGHT);
 
-    m_findButton = new ImageButton();
+    m_avatar = new ImageButton();
 
     m_nameLabel = new QLabel();
-    m_nameLabel->setWordWrap(true);
 
     m_statusTextLabel = new QLabel();
     m_statusTextLabel->setWordWrap(true);
+    m_statusTextLabel->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
     m_locationLabel = new QLabel();
     m_locationLabel->setWordWrap(true);
+    m_locationLabel->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
     m_updatedLabel = new QLabel();
     m_updatedLabel->setWordWrap(true);
-
-    ImageButton *updateFriendsButton = new ImageButton(this, ":/res/images/refresh.png",
-                                                             ":/res/images/refresh_s.png");
-    ImageButton *updateStatusMessageButton = new ImageButton(this, ":/res/images/send_position.png",
-                                                                   ":/res/images/send_position_s.png");
-
-    buttonLayout->addWidget(updateFriendsButton);
-    buttonLayout->addWidget(updateStatusMessageButton);
+    m_updatedLabel->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
 
     infoLayout->addRow(envelopeLabel, m_statusTextLabel);
     infoLayout->addRow(compassLabel, m_locationLabel);
     infoLayout->addRow(clockLabel, m_updatedLabel);
 
-    verticalLayout->addWidget(m_findButton, 0, Qt::AlignHCenter);
+    verticalLayout->addWidget(m_avatar, 0, Qt::AlignHCenter);
     verticalLayout->addWidget(m_nameLabel, 0, Qt::AlignHCenter);
     verticalLayout->addLayout(infoLayout);
-    verticalLayout->addLayout(buttonLayout);
 
-    connect(updateStatusMessageButton,SIGNAL(clicked()),
-            this,SLOT(messageUpdate()));
-
-    connect(updateFriendsButton,SIGNAL(clicked()),
-            this, SIGNAL(refreshUserData()));
-
-    connect(m_findButton, SIGNAL(clicked()),
+    connect(m_avatar, SIGNAL(clicked()),
             this, SLOT(findButtonClicked()));
 
     setFixedWidth(BACKGROUND_WIDTH);
@@ -137,237 +112,130 @@ UserInfo::UserInfo(QWidget *parent)
     m_backgroundTopImage.load(":/res/images/list_item_top.png");
     m_backgroundMiddleImage.load(":/res/images/list_item_middle.png");
     m_backgroundBottomImage.load(":/res/images/list_item_bottom.png");
-
-    restoreUnsendMessage();
 }
 
 UserInfo::~UserInfo()
 {
     qDebug() << __PRETTY_FUNCTION__;
-
-    QSettings settings(DIRECTORY_NAME, FILE_NAME);
-
-    if (!m_backupMessage.isEmpty()) {
-        settings.setValue(USER_UNSEND_MESSAGE, m_backupMessage.toAscii());
-        settings.setValue(USER_UNSEND_MESSAGE_PUBLISH, m_backupFacebookPublishPolicity);
-    } else {
-        settings.remove(USER_UNSEND_MESSAGE);
-        settings.remove(USER_UNSEND_MESSAGE_PUBLISH);
-    }
 }
 
-void UserInfo::setAddress(const QString &address)
+void UserInfo::collapse()
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    m_locationLabel->setText(address);
+    setExpanded(false);
 }
 
-void UserInfo::setCoordinates(const GeoCoordinate &coordinates)
+void UserInfo::findButtonClicked()
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    m_coordinates = coordinates;
+    emit findUser(m_coordinates);
 }
 
-void UserInfo::setMessageText(const QString &text)
+void UserInfo::mousePressEvent(QMouseEvent *event)
 {
-    qDebug() << __PRETTY_FUNCTION__;
+    qDebug() << __PRETTY_FUNCTION__ << " " << event->pos();
 
-    m_messageText = text;
-    m_expandedMessageText.clear();
-    QString temp = "";
-    for(int i=0;i < text.length();i++) {
-        if(fontMetrics().width(temp.append(text.at(i))) > 170) {
-            temp.append("\n");
-            if(temp.startsWith(QString(" ")))
-                temp.remove(0, 1);
-
-            m_expandedMessageText.append(temp);
-            temp.clear();
-        }
-    }
-    m_expandedMessageText.append(temp);
-    setText(false);
+    m_mousePosition = event->pos();
 }
 
-void UserInfo::setProfileImage(const QPixmap &image)
+void UserInfo::mouseReleaseEvent(QMouseEvent *event)
 {
-    qDebug() << __PRETTY_FUNCTION__;
-
-    if(!image.isNull())
-        m_findButton->setButtonIcon(image);
-}
+    qDebug() << __PRETTY_FUNCTION__ << " " << event->pos();
 
-void UserInfo::setTime(const QString &time)
-{
-    qDebug() << __PRETTY_FUNCTION__;
+    const int MOUSE_PRESS_AREA_HEIGHT = 20;
+    const int MOUSE_PRESS_AREA_WIDTH = 20;
 
-    m_updatedLabel->setText(time);
+    if ((abs(m_mousePosition.y() - event->pos().y()) <= MOUSE_PRESS_AREA_WIDTH)
+        && (abs(m_mousePosition.x() - event->pos().x()) <= MOUSE_PRESS_AREA_HEIGHT)) {
+        if (m_expanded) {
+            setExpanded(false);
+            m_expanded = false;
+        }
+        else {
+            setExpanded(true);
+            m_expanded = true;
+        }
+    }
 }
 
-void UserInfo::setUserName(const QString &name)
+void UserInfo::paintEvent(QPaintEvent *event)
 {
-    qDebug() << __PRETTY_FUNCTION__;
+    qDebug() << __PRETTY_FUNCTION__ << " " << event->rect();
 
-    m_userName = name;
-    setText(false);
-}
+    QPainter painter(this);
 
-void UserInfo::setText(bool expanded)
-{
-    qDebug() << __PRETTY_FUNCTION__;
+    QRect topRect = QRect(0, MARGIN, BACKGROUND_WIDTH, BACKGROUND_TOP_HEIGHT);
 
-    if (expanded) {
-        m_statusTextLabel->setText(m_expandedMessageText);
-    }
-    else {
-        m_nameLabel->setText(shortenText(m_nameLabel, m_userName, LABEL_MAX_WIDTH));
-        m_statusTextLabel->setText(shortenText(m_statusTextLabel, m_messageText,
-                                               LABEL_MAX_WIDTH));
-    }
-}
+    QRect middleRect = QRect(topRect.left(), topRect.bottom() + 1, BACKGROUND_WIDTH,
+                             this->height() - BACKGROUND_TOP_HEIGHT - BACKGROUND_BOTTOM_HEIGHT);
 
-void UserInfo::backupUpdateLocationDialogData(const QString &status, bool publish)
-{
-    qDebug() << __PRETTY_FUNCTION__;
+    QRect bottomRect = QRect(topRect.left(), middleRect.bottom() + 1, BACKGROUND_WIDTH,
+                             BACKGROUND_BOTTOM_HEIGHT);
 
-    m_backupMessage = status;
-    m_backupFacebookPublishPolicity = publish;
+    painter.drawPixmap(topRect, m_backgroundTopImage);
+    painter.drawPixmap(middleRect, m_backgroundMiddleImage);
+    painter.drawPixmap(bottomRect, m_backgroundBottomImage);
 }
 
-void UserInfo::clearUpdateLocationDialogData()
+void UserInfo::setAddress(const QString &address)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    m_backupMessage.clear();
-    m_backupFacebookPublishPolicity = false;
+    m_locationLabel->setText(address);
 }
 
-void UserInfo::findButtonClicked()
+void UserInfo::setCoordinates(const GeoCoordinate &coordinates)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    emit findUser(m_coordinates);
-}
-
-void UserInfo::mouseReleaseEvent(QMouseEvent *event)
-{
-    qDebug() << __PRETTY_FUNCTION__ << " " << event->pos();
-
-    if ((abs(m_mousePosition.y() - event->pos().y()) <= MOUSE_PRESS_AREA_WIDTH) &&
-        (abs(m_mousePosition.x() - event->pos().x()) <= MOUSE_PRESS_AREA_HEIGHT)) {
-        if (m_expanded) {
-            setText(false);
-            m_expanded = false;
-        }
-        else {
-            setText(true);
-            m_expanded = true;
-        }
-    }
-}
-
-void UserInfo::mousePressEvent(QMouseEvent *event)
-{
-    qDebug() << __PRETTY_FUNCTION__ << " " << event->pos();
-
-    m_mousePosition = event->pos();
+    m_coordinates = coordinates;
 }
 
-void UserInfo::messageUpdate()
+void UserInfo::setMessageText(const QString &text)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    delete m_updateLocation;
-    m_updateLocation = new UpdateLocationDialog(m_backupMessage, m_backupFacebookPublishPolicity,
-                                                this);
-
-    connect(this, SIGNAL(reverseGeoReady(QString)),
-            m_updateLocation, SLOT(setAddress(QString)));
-
-    connect(m_updateLocation, SIGNAL(statusUpdate(QString,bool)),
-            this, SIGNAL(statusUpdate(QString,bool)));
+    m_messageText = TextModifier::splitLongWords(m_statusTextLabel->fontMetrics(), text,
+                                                 LABEL_MAX_WIDTH);
 
-    connect(m_updateLocation, SIGNAL(statusUpdate(QString,bool)),
-            this, SLOT(backupUpdateLocationDialogData(QString,bool)));
-
-    connect(m_updateLocation, SIGNAL(finished(int)),
-            this, SLOT(updateLocationDialogFinished(int)));
-
-    m_updateLocation->show();
-
-    emit requestReverseGeo();
+    setExpanded(false);
 }
 
-void UserInfo::paintEvent(QPaintEvent *aPaintEvent)
+void UserInfo::setProfileImage(const QPixmap &image)
 {
-    qDebug() << __PRETTY_FUNCTION__ << " " << aPaintEvent->rect();
-
-    QPainter painter(this);
-
-    QRect topRect = QRect(0, MARGIN, BACKGROUND_WIDTH, BACKGROUND_TOP_HEIGHT);
-///< @todo Overlaps with topRect?
-    QRect middleRect = QRect(0, topRect.bottom(), BACKGROUND_WIDTH,
-                             this->height() - BACKGROUND_TOP_HEIGHT - BACKGROUND_BOTTOM_HEIGHT);
-///< @todo Overlaps with middleRect
-    QRect bottomRect = QRect(topRect.left(), middleRect.bottom(), BACKGROUND_WIDTH,
-                             BACKGROUND_BOTTOM_HEIGHT);
+    qDebug() << __PRETTY_FUNCTION__;
 
-    painter.drawPixmap(topRect, m_backgroundTopImage);
-    painter.drawPixmap(middleRect, m_backgroundMiddleImage);
-    painter.drawPixmap(bottomRect, m_backgroundBottomImage);
+    if(!image.isNull())
+        m_avatar->setButtonIcon(image);
 }
 
-void UserInfo::restoreUnsendMessage()
+void UserInfo::setExpanded(bool expanded)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    QSettings settings(DIRECTORY_NAME, FILE_NAME);
-    m_backupMessage = settings.value(USER_UNSEND_MESSAGE, EMPTY).toString();
-    m_backupFacebookPublishPolicity =
-            settings.value(USER_UNSEND_MESSAGE_PUBLISH, false).toBool();
+    if (expanded) {
+        m_statusTextLabel->setText(m_messageText);
+    } else {
+        m_statusTextLabel->setText(TextModifier::shortenText(m_statusTextLabel->fontMetrics(),
+                                                             m_messageText, LABEL_MAX_WIDTH));
+    }
 }
 
-QString UserInfo::shortenText(const QLabel *label, const QString &text, int textMaxWidth)
+void UserInfo::setTime(const QString &time)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    QFontMetrics labelMetrics = label->fontMetrics();
-    QString textParam = text;
-    int index = textParam.indexOf('\n');
-    int textWidth = fontMetrics().width(textParam);
-
-        if (index > 0) {
-            textParam.truncate(index);
-            textParam.append("...");
-        }
-            if (textWidth > 250) ///< @todo magic number
-                textParam.insert(LINE_LENGTH, QString("\n"));
-
-   return labelMetrics.elidedText(textParam, Qt::ElideRight, textMaxWidth);
+    m_updatedLabel->setText(time);
 }
 
-void UserInfo::updateLocationDialogFinished(int reason)
+void UserInfo::setUserName(const QString &name)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    Q_UNUSED(reason);
-
-    if (m_updateLocation) {
-        disconnect(this, SIGNAL(reverseGeoReady(QString)),
-                m_updateLocation, SLOT(setAddress(QString)));
-
-        disconnect(m_updateLocation, SIGNAL(statusUpdate(QString,bool)),
-                this, SIGNAL(statusUpdate(QString,bool)));
-
-        disconnect(m_updateLocation, SIGNAL(statusUpdate(QString,bool)),
-                this, SLOT(backupUpdateLocationDialogData(QString,bool)));
-
-        disconnect(m_updateLocation, SIGNAL(finished(int)),
-                this, SLOT(updateLocationDialogFinished(int)));
+    m_userName = name;
 
-        m_updateLocation->deleteLater();
-        m_updateLocation = 0;
-    }
+    m_nameLabel->setText(TextModifier::shortenText(m_nameLabel->fontMetrics(), m_userName,
+                                                   LABEL_MAX_WIDTH));
 }