utilityapps/loadgen/ui/hb/inc/mainview.h
changeset 55 2d9cac8919d3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/utilityapps/loadgen/ui/hb/inc/mainview.h	Mon Oct 18 16:30:05 2010 +0300
@@ -0,0 +1,115 @@
+/*
+* 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: 
+*
+*/
+
+
+#ifndef MAINVIEW_H
+#define MAINVIEW_H
+
+#include "loadgenlistitem.h"
+#include "loadgenloaditem.h"
+#include <hbview.h>
+
+class EngineWrapper;
+class HbMainWindow;
+class HbApplication;
+class HbAction;
+class HbLabel;
+class HbProgressNote;
+class HbListView;
+class HbAbstractViewItem;
+
+class QStandardItemModel;
+class QSignalMapper;
+class QPointF;
+class LoadGenListItem;
+class LoadGenLoadItem;
+
+class MainView : public HbView
+{
+    Q_OBJECT
+    
+public:
+
+    MainView(HbMainWindow &mainWindow);
+	~MainView();
+	void init(HbApplication &app);
+	int currentItemIndex();
+	void setCurrentItemIndex(int index);
+	void clearListSelection();
+	void setLoadListData(QStringList& items);
+	QList<int> listSelectionIndexes();
+	
+private:
+    void createMenu(HbApplication &app);
+	void loadListIinit();
+	bool showItemActionPopup(int &index);
+	void loadListDelete();
+	bool stopLoad(bool stopAll /*, int selectedLoad = 0*/);
+   
+private slots:
+    void handleLoadListEvent(HbAbstractViewItem */*listViewItem*/, const QPointF &/*coords*/);
+    void ItemActionPopupClosed(HbAction* action );
+    void loadActionPopupClosed( HbAction* action );
+	void showAboutPopup();
+	void stopAllLoads();
+	void updateMenu();
+	void launchPerfMon();
+	void suspendAllLoads();
+	void resumeAllLoads();
+	void activated( const QModelIndex& );
+	void LoadEdit();
+	void NewLoad();
+	
+	/**
+	* calls engine wrapper to complete service request, specified by cmd.
+	*/
+	void executeMenuCommand(int cmd);
+    
+private:
+    HbMainWindow &mMainWindow;
+    EngineWrapper *mEngineWrapper;
+	HbListView *mListView;
+	QStandardItemModel *mListModel;
+	QSignalMapper *mSm;
+	bool mIsLoadListEmpty;
+	LoadGenListItem* mListItem;
+	LoadGenLoadItem* mLoadItem;
+	
+	HbAction *mActionAbout;
+	HbMenu   *mLoadSubMenu1;
+	HbMenu   *mLoadSubMenu2;
+	HbAction *mActionExit;
+	HbAction *mStopAll;
+	HbAction *mSuspendAll;	
+	HbAction *mResumeAll;	
+	HbAction *mActionPerfMon;
+	HbAction *mCpuLoadAction;
+	HbAction *mMemoryEatLoadAction;
+	HbAction *mPhoneCallLoadAction;
+	HbAction *mMessagesLoadAction;
+	HbAction *mNetConnLoadAction;
+	HbAction *mAppsLoadAction;
+	HbAction *mKeyPressLoadAction;
+	HbAction *mPhotoCapturesLoadAction;
+	HbAction *mBtActionsLoadAction;
+	HbAction *mPointerEventsLoadAction;
+	
+	QList<bool> mListItemExpanded;
+	int mPrevExpandedItem;
+};
+
+#endif // MAINVIEW_H