diff -r 89c329efa980 -r e48454f237ca ganeswidgets/tsrc/fute/HgWidgetTest/inc/hgwidgetoptionsview.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ganeswidgets/tsrc/fute/HgWidgetTest/inc/hgwidgetoptionsview.h Mon May 03 13:32:54 2010 +0300 @@ -0,0 +1,68 @@ +/* +* 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 HGWIDGETOPTIONSVIEW_H_ +#define HGWIDGETOPTIONSVIEW_H_ + +#include +#include +#include "hgtestdefs.h" + +class HbDataForm; +class HbDataFormModel; + +class HgWidgetOptionsView : public HbView +{ + Q_OBJECT + +public: + + HgWidgetOptionsView(QGraphicsItem *parent = 0); + ~HgWidgetOptionsView(); + +signals: + void optionsClosed(); + void widgetTypeChanged(HgTestWidgetType); + void scrollBarVisibilityChanged(HgWidget::ScrollBarPolicy); + void scrollBarInteractivityChanged(bool); + void imageTypeChanged(HgTestImageType); + void lowResImageUseChanged(bool); + void titlePositionChanged(HgMediawall::LabelPosition); + void titleFontChanged(const HbFontSpec &); + void descriptionPositionChanged(HgMediawall::LabelPosition); + void descriptionFontChanged(const HbFontSpec &); + void widgetHeightChanged(int); + void widgetWidthChanged(int); + void reflectionsEnabledChanged(bool); +private slots: + void updateData(QModelIndex startIn, QModelIndex endIn); + +private: + void setCoverflowEnabled(bool value); + void storeWidgetSize(); + void setupData(); + void resizeEvent(QGraphicsSceneResizeEvent *event); + +private: // data + HbDataForm *mForm; + HbDataFormModel *mModel; + bool mContentReady; + bool mUpdateWidgetSize; +}; + + +#endif /* HGWIDGETOPTIONSVIEW_H_ */