activityfw/testapplications/activitytestanimal/animalwidget.h
changeset 117 c63ee96dbe5f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/activityfw/testapplications/activitytestanimal/animalwidget.h	Thu Sep 16 12:11:40 2010 +0100
@@ -0,0 +1,46 @@
+/*
+* 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 ANIMALWIDGET_H
+#define ANIMALWIDGET_H
+
+#include <QWidget>
+
+class QLabel;
+class QString;
+
+class AnimalWidget: public QWidget
+{
+
+    Q_OBJECT
+
+public:
+    AnimalWidget(QWidget *parent = 0);
+    ~AnimalWidget();
+
+private slots:
+    void changeAnimalImage(const QString &image);
+    void saveActivity();
+    void loadActivity(const QString &name);
+
+private:
+    QLabel *mAnimalLabel;
+    QLabel *mFileNameLabel;
+    QString mCurrentImage;
+    QObject *mActivityClient;
+};
+
+#endif //ANIMALWIDGET_H