diff -r 612c4815aebe -r 4cc1412daed0 mpviewplugins/mpmediawallviewplugin/tsrc/unittest_mpmediawallview/stub/inc/hgmediawall.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mpviewplugins/mpmediawallviewplugin/tsrc/unittest_mpmediawallview/stub/inc/hgmediawall.h Fri Aug 06 16:51:36 2010 -0500 @@ -0,0 +1,98 @@ +/* +* 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: HgMediawall stub for testing mpmediawallview +* +*/ + +#ifndef HGMEDIAWALL_H +#define HGMEDIAWALL_H + +//includes +#include +#include +#include +#include + +class HgWidget : public HbWidget +{ + Q_OBJECT + Q_PROPERTY(QSizeF itemSize READ itemSize WRITE setItemSize) + +public: + + enum ScrollBarPolicy { + ScrollBarAsNeeded = Qt::ScrollBarAsNeeded, + ScrollBarAlwaysOff = Qt::ScrollBarAlwaysOff, + ScrollBarAlwaysOn = Qt::ScrollBarAlwaysOn, + ScrollBarAutoHide + }; + + enum IndexFeedbackPolicy { + IndexFeedbackNone = 0, + IndexFeedbackSingleCharacter, + IndexFeedbackThreeCharacter, + IndexFeedbackString + }; + + explicit HgWidget ( QGraphicsItem *parent = 0 ); + virtual ~HgWidget (); + + void setScrollBarPolicy( ScrollBarPolicy policy ); + virtual void setModel(QAbstractItemModel *model); + void scrollTo(const QModelIndex &index); + QModelIndex currentIndex() const; + + void setItemSize(const QSizeF& size); + QSizeF itemSize() const; + void setDefaultImage(QImage defaultImage); + void setIndexFeedbackPolicy( IndexFeedbackPolicy policy); + HbScrollBar *scrollBar() const; + bool getItemOutline(const QModelIndex& index, QPolygonF& points); + +signals: + + void scrollingEnded(); + +}; + +class HgMediawall : public HgWidget +{ + Q_OBJECT + +public: + + enum LabelPosition { + PositionNone = 0, + PositionAboveImage, + PositionBelowImage + }; + + explicit HgMediawall( QGraphicsItem *parent = 0 ); + virtual ~HgMediawall(); + + void setTitlePosition( LabelPosition position ); + void setDescriptionPosition( LabelPosition position ); + void setTitleFontSpec( const HbFontSpec &fontSpec ); + void setDescriptionFontSpec( const HbFontSpec &fontSpec ); + + void enableReflections( bool enabled ); + bool reflectionsEnabled() const; + +public: + + bool mReflectionEnabled; + +}; + +#endif // HGMEDIAWALL_H