emailuis/nmailui/inc/nmmessagelistviewitem.h
author hgs
Fri, 23 Jul 2010 19:09:50 +0300
changeset 56 15bc1d5d6267
parent 47 f83bd4ae1fe3
child 57 ae34e1715e21
permissions -rw-r--r--
201029

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/

#ifndef NMMESSAGELISTVIEWITEM_H_
#define NMMESSAGELISTVIEWITEM_H_

#include <hbtreeviewitem.h>

class HbLabel;
class HbTextItem;
class HbFrameItem;
class NmMessageListModel;
class NmMessageListModelItem;
class NmMessageEnvelope;
class HbIconItem;
class QColor;

class NmMessageListViewItem : public HbTreeViewItem
{
    Q_OBJECT

public:
    explicit NmMessageListViewItem(QGraphicsItem *parent = 0);
    virtual ~NmMessageListViewItem();
    void updateChildItems();
    HbTreeViewItem *createItem();
    bool canSetModelIndex(const QModelIndex &index) const;
    QRectF contiguousSelectionArea() const { return QRectF(); };

private:
    void createMessageItemLayout();
    void setContentsToMessageItem(const NmMessageEnvelope &envelope, bool dividersActive);
    void setFontsRead();
    void setFontsUnread();
    void setFonts(const QColor &colorRole, HbFontSpec &fontSpec);
    void getFontSizes();    
    QString senderFieldText(const NmMessageEnvelope &envelope);

private:
    HbTextItem *mSender;                   // Owned
    HbTextItem *mSubject;                  // Owned
    HbTextItem *mTime;                     // Owned
    HbLabel *mDividerTitle;                // Owned
    HbFrameItem *mNewMsgIcon;              // Owned
    HbIconItem *mIcon1;                    // Owned
    HbIconItem *mIcon2;                    // Owned
    qreal mPrimarySize;
    qreal mSecondarySize;
};


#endif /* NMMESSAGELISTVIEWITEM_H_ */