IHistory.h
资源名称:MenuList.rar [点击查看]
上传用户:duwei1288
上传日期:2009-12-27
资源大小:451k
文件大小:1k
源码类别:
BREW编程
开发平台:
Visual C++
- #ifndef _IHISTORY_H
- #define _IHISTORY_H
- #include "AeeStdLib.h"
- #include "AeeText.h"
- #include "AeeMenu.h"
- #include "IStack.h"
- //////////////////////////////////////////////////////////////////
- // 输入窗口的实现 //
- //////////////////////////////////////////////////////////////////
- //文本输入控件的类型
- /*typedef enum
- {
- IT_TEXT,
- IT_PASSWORD,
- IT_NUMBER
- }TInputType;*/
- //文本输入控件的相关信息
- /*typedef struct _InputTextInfo
- {
- TInputType m_inputType;
- AECHAR* m_pTitle;
- AECHAR* m_pText;
- }InputTextInfo;*/
- //输入窗口数据结构的定义
- typedef struct _IHistoryWin
- {
- IMenuCtl* m_pMenuCtl;
- IMenuCtl* m_pSoftKeyCtl;
- }IHistoryWin;
- boolean HistoryDlg();
- void* HistoryWIN_Create(IShell* pShell,void* pParam);
- boolean HistoryWIN_Release(IShell* pShell,void** pWin);
- boolean HistoryWIN_Redraw(IShell* pShell,void* pWin);
- boolean HISTORYWIN_EventHandle(void* pWin,AEEEvent eCode, uint16 wParam, uint32 dwParam);
- #endif