mmsexampleappui.h
来自「symbian 彩信发送例子,希望对大家有所帮助」· C头文件 代码 · 共 62 行
H
62 行
/*
* ============================================================================
* 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 + =
减小字号Ctrl + -
显示快捷键?