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

📄 bmailui.h

📁 brew email program ,comfortable for the basic studier
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -