⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mmsexampleappui.h

📁 有关mms的源代码
💻 H
字号:
/*
* ============================================================================
*  Name     : CMMSExampleAppUi from MMSExampleAppUi.h
*  Part of  : MMSExample
*  Created  : 04.11.2006 by Forum Nokia
*  Description:
*     Declares main application class.
*  Version  : 2.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef MMSEXAMPLEAPPUI_H
#define MMSEXAMPLEAPPUI_H

// INCLUDES
#include <aknappui.h>
#include "MMSExampleContainer.h" 

//
// Application Ui class, this contains all application functionality
//
class CMMSExampleAppUi : public CAknAppUi
    {
public:
	// Symbian default Constructor
    void ConstructL();
    // Command handler
    void HandleCommandL(TInt aCommand);
    //Destructor.     
    ~CMMSExampleAppUi();

private:
    
    /** 
     * This function is called by the EIKON framework just before it displays
	 * a menu pane. Its default implementation is empty, and by overriding it,
	 * the application can set the state of menu items dynamically according
	 * to the state of application data.
 	 */
    void DynInitMenuPaneL(TInt aResourceId,CEikMenuPane* aMenuPane);
    /*
     * Initialize Communications and then send
   	 * the multimedia message.
     */
    void CmdSendL();
    //Exit program
    void CmdExit();
    // Open S60 messaging application
    void CmdOpenMessagingL();
    /**
     * From CEikAppUi,
	 */
 	void HandleStatusPaneSizeChange();

private:

	CMMSExampleContainer* iAppContainer;
	
    };
#endif

⌨️ 快捷键说明

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