diff -r 84d9eb65b26f -r e4592d119491 messagingapp/msgui/conversationview/inc/msgconversationwidget.h --- a/messagingapp/msgui/conversationview/inc/msgconversationwidget.h Mon May 03 12:29:07 2010 +0300 +++ b/messagingapp/msgui/conversationview/inc/msgconversationwidget.h Fri May 14 15:49:35 2010 +0300 @@ -30,24 +30,23 @@ * This class represents the custom layouted widget to show * the conversation inside a bubble shape in the conversation view. */ -class MsgConversationWidget : public HbWidget +class MsgConversationWidget: public HbWidget { Q_OBJECT - Q_PROPERTY(int priority READ priority WRITE setPriority) - Q_PROPERTY(bool hasAttachment READ hasAttachment WRITE setAttachment) - Q_PROPERTY(bool hasImage READ hasImage WRITE setImage) - Q_PROPERTY(bool hasAudio READ hasAudio WRITE setAudio) - Q_PROPERTY(bool hasVideo READ hasVideo WRITE setVideo) - Q_PROPERTY(bool isPlayable READ isPlayable WRITE setPlayable) - Q_PROPERTY(bool isIncoming READ isIncoming WRITE setIncoming) - Q_PROPERTY(bool isMMS READ isMMS WRITE setMMS) - Q_PROPERTY(bool isMMSNotification READ isMMSNotification WRITE setMMSNotification) - Q_PROPERTY(bool isUnread READ isUnread WRITE setUnread) - Q_PROPERTY(int sendingState READ sendingState WRITE setSendingState) - Q_PROPERTY(int notificationState READ notificationState WRITE setNotificationState) - - Q_ENUMS(MessageState) +Q_ENUMS(SendingState) +Q_PROPERTY(int priority READ priority WRITE setPriority) +Q_PROPERTY(bool hasAttachment READ hasAttachment WRITE setAttachment) +Q_PROPERTY(bool hasImage READ hasImage WRITE setImage) +Q_PROPERTY(bool hasAudio READ hasAudio WRITE setAudio) +Q_PROPERTY(bool hasVideo READ hasVideo WRITE setVideo) +Q_PROPERTY(bool isPlayable READ isPlayable WRITE setPlayable) +Q_PROPERTY(bool isIncoming READ isIncoming WRITE setIncoming) +Q_PROPERTY(bool isMMS READ isMMS WRITE setMMS) +Q_PROPERTY(bool isMMSNotification READ isMMSNotification WRITE setMMSNotification) +Q_PROPERTY(bool isUnread READ isUnread WRITE setUnread) +Q_PROPERTY(SendingState sendingState READ sendingState WRITE setSendingState) +Q_PROPERTY(int notificationState READ notificationState WRITE setNotificationState) public: @@ -66,6 +65,15 @@ public: /** + * Enum defining Message Sending State + * @attention This enum can have values from 0 to 255 only. + */ + enum SendingState + { + Unknown = 0x00, Sent = 0x01, Sending = 0x02, Pending = 0x03, Failed = 0x04 + }; + + /** * Set subject for this widget * @param QString */ @@ -81,7 +89,7 @@ * Set preview icon path for this widget * @param QString */ - void setPreviewIconPath(const QString &previewPath); + void setPreviewIconPath(const QString& filePath,int msgId); /** * Set priority property @@ -210,7 +218,7 @@ * @return bool */ bool isMMSNotification(); - + /** * Set the sending state. * Maps ConvergedMessage::SendingState to MessageState. @@ -222,7 +230,7 @@ * Returns the sending state. * @return Returns one of the states from enum SendingState. */ - int sendingState(); + SendingState sendingState(); /** * Set the notification state. @@ -236,7 +244,7 @@ * @return Returns one of the states from enum NotificationState. */ int notificationState(); - + /** * Sets the Timestamp. * @param timeStamp Timestamp to be set. @@ -264,6 +272,16 @@ */ void pressStateChanged(bool pressed, bool animate); + /** + * Function to reset widget items. + */ + void resetProperties(); + + /** + * Function to repolish the widget + */ + void repolishWidget(); + private: /** @@ -274,19 +292,6 @@ public: /** - * Enum defining Message Sending State - * @attention This enum can have values from 0 to 255 only. - */ - enum MessageState - { - Unknown = 0x00, - Sent = 0x01, - Sending = 0x02, - Pending = 0x03, - Failed = 0x04 - }; - - /** * Enum defining MMS Notification's Msg State * These are added here so that notification state * can be used inside css in future @@ -294,13 +299,13 @@ * Add any new states only at the bottom of this enum */ enum NotificationState - { + { NotifUnknown = 0x00, NotifReadyForFetching = 0x01, NotifRetrieving = 0x02, NotifExpired = 0x03, - NotifFailed = 0x04, - }; + NotifFailed = 0x04, + }; private: @@ -355,7 +360,7 @@ * Holds info if this widget is MMS Notification */ bool mIsMMSNotification; - + /** * Info about message priority. * @attention Stores high/low/normal priority. @@ -366,13 +371,13 @@ /** * Holds sending state information. */ - int mSendingState; + MsgConversationWidget::SendingState mSendingState; /** * Holds Notification state information. */ int mNotificationState; - + /** * Graphics Item to hold new message icon. * Owned