summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/pjsua/symbian/inc/pjsuaAppUi.h
blob: 8bfd24421f319e0ca9a63848f654f9a1515ed122 (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
65
66
67
68
69
70
/*
========================================================================
 Name        : pjsuaAppUi.h
 Author      : nanang
 Copyright   : Copyright (C) 2013 Teluu Inc. (http://www.teluu.com)
 Description : 
========================================================================
*/
#ifndef PJSUAAPPUI_H
#define PJSUAAPPUI_H

// [[[ begin generated region: do not modify [Generated Includes]
#include <aknviewappui.h>
// ]]] end generated region [Generated Includes]


// [[[ begin generated region: do not modify [Generated Forward Declarations]
class CpjsuaContainerView;
// ]]] end generated region [Generated Forward Declarations]

/**
 * @class	CpjsuaAppUi pjsuaAppUi.h
 * @brief The AppUi class handles application-wide aspects of the user interface, including
 *        view management and the default menu, control pane, and status pane.
 */
class CpjsuaAppUi : public CAknViewAppUi
	{
public: 
	// constructor and destructor
	CpjsuaAppUi();
	virtual ~CpjsuaAppUi();
	void ConstructL();

public:
	// from CCoeAppUi
	TKeyResponse HandleKeyEventL(
				const TKeyEvent& aKeyEvent,
				TEventCode aType );

	// from CEikAppUi
	void HandleCommandL( TInt aCommand );
	void HandleResourceChangeL( TInt aType );

	// from CAknAppUi
	void HandleViewDeactivation( 
			const TVwsViewId& aViewIdToBeDeactivated, 
			const TVwsViewId& aNewlyActivatedViewId );

private:
	void InitializeContainersL();
	// [[[ begin generated region: do not modify [Generated Methods]
public: 
	// ]]] end generated region [Generated Methods]
	
	void PutMsg(const char *msg);
	
	// [[[ begin generated region: do not modify [Generated Instance Variables]
private: 
	CpjsuaContainerView* iPjsuaContainerView;
	// ]]] end generated region [Generated Instance Variables]
	
	
	// [[[ begin [User Handlers]
protected: 
	// ]]] end [User Handlers]
	void PrepareToExit();

	};

#endif // PJSUAAPPUI_H