ui/views/detailsview/inc/glxdetailscustomicon.h
changeset 29 2c833fc9e98f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ui/views/detailsview/inc/glxdetailscustomicon.h	Fri May 14 15:52:22 2010 +0300
@@ -0,0 +1,63 @@
+/*
+* 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:   ?Description
+*
+*/
+
+#ifndef GLXDETAILSCUSTOMICON_H
+#define GLXDETAILSCUSTOMICON_H
+
+#include <hbwidget.h>
+class HbIconItem;
+class HbIcon;
+
+class GlxDetailsCustomIcon : public HbWidget 
+{	
+    Q_OBJECT
+    
+public:
+    GlxDetailsCustomIcon(QGraphicsItem *parent);
+    ~GlxDetailsCustomIcon();
+    /*
+     * Sets the Geometry of the Custom Widget
+     */
+    void setItemGeometry(QRect screenRect);
+    
+    /*
+     * Sets the Size of the Favourite Icon
+     */
+	void setItemSize(const QSizeF &size);
+	
+	/*
+	 * Sets the Position of the Favourite Icon
+	 */
+	void setItemPos(qreal ax, qreal ay);
+	
+	/*
+	 * Sets the  Icon of Favourite IconItem.
+	 */
+	void setItemIcon(const HbIcon &icon);
+	
+protected:
+    void mousePressEvent(QGraphicsSceneMouseEvent *event);	
+    void mouseReleaseEvent (QGraphicsSceneMouseEvent *event);
+    
+signals :
+     void updateFavourites();
+
+private:
+   HbIconItem *mFavIcon;   
+};
+
+#endif // GLXDETAILSCUSTOMICON_H