hgwidgets_plat/ganeswidgets_api/inc/hgmediawall.h
changeset 20 a60f8b6b1d32
parent 17 a10844a9914d
child 21 53314abf04ed
--- a/hgwidgets_plat/ganeswidgets_api/inc/hgmediawall.h	Fri Sep 17 15:55:58 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,63 +0,0 @@
-/*
-* 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 HGMEDIAWALL_H
-#define HGMEDIAWALL_H
-
-#include <hgwidgets/hgwidgets.h>
-
-class HgMediawallPrivate;
-
-class HG_WIDGETS_EXPORT HgMediawall : public HgWidget
-{
-    Q_OBJECT
-    Q_PROPERTY(HbFontSpec titleFontSpec READ titleFontSpec WRITE setTitleFontSpec)
-    Q_PROPERTY(HbFontSpec descriptionFontSpec READ descriptionFontSpec WRITE setDescriptionFontSpec)
-    Q_PROPERTY(QPointF frontItemPositionDelta READ frontItemPositionDelta WRITE setFrontItemPositionDelta)
-    Q_PROPERTY(bool reflectionsEnabled READ reflectionsEnabled WRITE enableReflections)
-
-public:
-
-    explicit HgMediawall(QGraphicsItem *parent = 0 );
-    virtual ~HgMediawall();
-
-    void setTitleFontSpec(const HbFontSpec &fontSpec);
-    HbFontSpec titleFontSpec() const;
-    void setDescriptionFontSpec(const HbFontSpec &fontSpec);
-    HbFontSpec descriptionFontSpec() const;
-
-    void setFrontItemPositionDelta(const QPointF& position);
-    QPointF frontItemPositionDelta() const;
-
-    void enableReflections(bool enabled);
-    bool reflectionsEnabled() const;
-
-signals:
-
-    void animationAboutToEnd(const QModelIndex& targetIndex);
-
-protected:
-    HgMediawall(HgMediawallPrivate &dd, QGraphicsItem *parent);
-    void polish(HbStyleParameters& params);
-
-private:
-    Q_DECLARE_PRIVATE_D(p_ptr, HgMediawall)
-    Q_DISABLE_COPY(HgMediawall)
-};
-
-#endif  //HGMEDIAWALL_H
-