threadappui.h

来自「这是Symbian平台实现多线程的实例.对初学者非常有帮助.」· C头文件 代码 · 共 78 行

H
78
字号
/*
* ============================================================================
*  Name     : CThreadAppUi from CThreadAppUi.h
*  Part of  : Thread
*  Created  : 04.02.2005 by Forum Nokia
*  Description:
*      Declares UI class for application.
*  Version  : 1.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef THREAD_APPUI_H
#define THREAD_APPUI_H

// INCLUDES
#include <aknappui.h>

// FORWARD DECLARATIONS
class CThreadEngine;
class CThreadAppView;

// CLASS DECLARATION

/*!
* An instance of class CThreadAppUi is the UserInterface part of the AVKON
* application framework for the Thread example application
*/
class CThreadAppUi : public CAknAppUi
    {
public:

/*!
* ConstructL()
*  
* discussion Perform the second phase construction of a CThreadAppUi object.
* This needs to be public due to the way the framework constructs the AppUi 
*/
    void ConstructL();

/*!
* CThreadAppUi()
*  
* discussion Perform the first phase of two phase construction.
* This needs to be public due to the way the framework constructs the AppUi 
*/
    CThreadAppUi();


/*!
* ~CThreadAppUi
*  
* discussion Destroy the object
*/
    ~CThreadAppUi();


public: // from CAknAppUi
/*!
* HandleCommandL()
*  
* discussion Handle user menu selections
* param aCommand The enumerated code for the option selected
*/
    void HandleCommandL(TInt aCommand);

private:

    // The application view
    CThreadAppView* iAppView;

    // Thread engine
    CThreadEngine* iThreadEngine;
    };


#endif // __THREAD_APPUI_H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?