ganeswidgets/tsrc/fute/HgWidgetTest/inc/hgitemsizedialog.h
changeset 1 e48454f237ca
child 6 1cdcc61142d2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ganeswidgets/tsrc/fute/HgWidgetTest/inc/hgitemsizedialog.h	Mon May 03 13:32:54 2010 +0300
@@ -0,0 +1,59 @@
+/*
+* Copyright (c) 2010 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:  Another view for test application.
+*
+*/
+#ifndef HGITEMSIZEDIALOG_H_
+#define HGITEMSIZEDIALOG_H_
+
+#include <hbdialog>
+#include <hblabel>
+#include <hbwidget>
+#include <hbslider>
+
+class HgItemSizeDialog : public HbDialog
+{
+    Q_OBJECT
+public:
+    
+	HgItemSizeDialog(QSizeF size, QSizeF spacing, HbWidget *parent=0);
+    
+    QSizeF itemSize() const;
+    QSizeF itemSpacing() const;
+        
+    void setSliderLimits(int min, int max);
+    
+signals:
+    void updateItemSizeAndSpacing();
+    void closed();
+private slots:
+    void itemSizeXChanged(int);
+    void itemSizeYChanged(int);
+    void itemSpacingXChanged(int);
+    void itemSpacingYChanged(int);    
+    void buttonClosed(bool);
+private:
+    HbLabel*                mSizeXLabel;
+    HbLabel*                mSizeYLabel;
+    HbLabel*                mSpacingXLabel;
+    HbLabel*                mSpacingYLabel;
+    QSizeF                  mSize;
+    QSizeF                  mSpacing;
+    HbSlider*               mSizeXSlider;
+    HbSlider*               mSizeYSlider;
+    HbSlider*               mSpacingXSlider;
+    HbSlider*               mSpacingYSlider;
+};
+
+#endif /* HGTESTVIEW_H_ */