?? helloworldbasicappui.h
字號:
/*
* ==============================================================================
* Name : helloworldbasicappui.h
* Part of : Helloworldbasic
* Interface :
* Description :
* Version :
*
* Copyright (c) 2005-2006 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by copyright controlled by
* Nokia Corporation.
* ==============================================================================
*/
#ifndef __HELLOWORLDBASICAPPUI_H__
#define __HELLOWORLDBASICAPPUI_H__
// INCLUDES
#include <aknappui.h>
#include <MSVAPI.H>
// FORWARD DECLARATIONS
class CHelloWorldBasicAppView;
class CMessagingContainer;
class CSendUi;
class CDummyObserver;
// CLASS DECLARATION
/**
* CHelloWorldBasicAppUi application UI class.
* Interacts with the user through the UI and request message processing
* from the handler class
*/
class CHelloWorldBasicAppUi : public CAknAppUi
{
public: // Constructors and destructor
/**
* ConstructL.
* 2nd phase constructor.
*/
void ConstructL();
/**
* CHelloWorldBasicAppUi.
* C++ default constructor. This needs to be public due to
* the way the framework constructs the AppUi
*/
CHelloWorldBasicAppUi();
void CInboxReceiveL();
/**
* ~CHelloWorldBasicAppUi.
* Virtual Destructor.
*/
virtual ~CHelloWorldBasicAppUi();
private: // Functions from base classes
/**
* From CEikAppUi, HandleCommandL.
* Takes care of command handling.
* @param aCommand Command to be handled.
*/
void HandleCommandL( TInt aCommand );
/**
* HandleResourceChangeL()
* Called by framework when layout is changed.
* @param aType the type of resources that have changed
*/
void HandleResourceChangeL( TInt aType );
private: // Data
/**
* The application view
* Owned by CHelloWorldBasicAppUi
*/
CHelloWorldBasicAppView* iAppView;
CSendUi* iSendUi;
CDummyObserver* iObserver;
CMsvSession* iSession;
};
class CDummyObserver : public CBase, public MMsvSessionObserver
{
public:
void HandleSessionEventL(TMsvSessionEvent, TAny*, TAny*, TAny*) {};
};
#endif // __HELLOWORLDBASICAPPUI_H__
// End of File
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -