bmailui.h
来自「brew email program ,comfortable for the 」· C头文件 代码 · 共 44 行
H
44 行
#ifndef BmailUI_H
#define BmailUI_H
#include <aeestdlib.h>
#include "AEEModGen.h"
#include "AEEAppGen.h"
#include "AEEShell.h"
#include "CRootForm.h"
#include "CIndexMenuForm.h"
#include "theme.brh"
inline void* operator new (size_t,void* a0) throw() {return(a0);}
inline void* operator new [] (size_t,void* a0) throw() {return(a0);}
inline void* operator new (size_t r0) throw() {return(MALLOC(r0));}
inline void* operator new [] (size_t r0) throw() {return(MALLOC(r0));}
inline void operator delete (void*,void*) {return;}
inline void operator delete [] (void*,void*) {return;}
inline void operator delete (void* a0) {FREE(a0);return;}
inline void operator delete [] (void* a0) {FREE(a0);return;}
typedef struct
{
AEEApplet a ;
class BmailUI *pApp;
} SoApplet;
class BmailUI :public AEEApplet
{
public:
HandlerDesc handleIndexMenuForm;
BmailUI(AEEApplet* p);
static boolean HandleEvent(SoApplet* pi,AEEEvent eCode,uint16 wparam,uint32 dwParam);
static void FreeAppData(SoApplet * pi);
private:
AEEApplet* pAEEApplet;
CRootForm* pCRootForm;
CIndexMenuForm* pCIndexMenuForm;
IDisplay* pIDisplay;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?