summaryrefslogtreecommitdiffstats
path: root/plugins/contacts/symbian/contactsmodel/tsrc/performance/t_perfresortview.h
blob: 89e590f14769b477195cbeccf155ac26c8992dab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
* Contact: http://www.qt-project.org/legal
* 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 __TPERFRESORTVIEW__
#define __TPERFRESORTVIEW__

#include "../t_utils.h"
#include <e32std.h>
#include <e32test.h>
#include <cntview.h>

class CViewResort : public CActive, public MContactViewObserver
	{
public:
	enum TViewType
		{
		ERemoteContactsView = 0,
		ERemoteGroupsView
		};
	enum TViewState
		{
		ECreatedView = 0,
		EResortedViewByName,
		EResortedViewByNumber
		};
public:
	static CViewResort* NewLC(RTest& aTest);
	void RunL();
	void DoCancel();
	void HandleContactViewEvent(const CContactViewBase& aView, const TContactViewEvent& aEvent);
	void DoTestL(const TDesC& aDbName);
	
private:
	~CViewResort();
	CViewResort(RTest& aTest);
	void ConstructL();
	void CreateRemoteViewL();
	void Cleanup();
	void ResortL();
		
private:
	RTest& iTest; // not owned
	CContactDatabase* iContactsDb;
	CContactNamedRemoteView* iNamedRemoteView;
	TViewState iViewState;
	TCntPerfTimer iTimer;
	};

#endif //__TPERFRESORTVIEW__