IHistory.h
上传用户:duwei1288
上传日期:2009-12-27
资源大小:451k
文件大小:1k
源码类别:

BREW编程

开发平台:

Visual C++

  1. #ifndef _IHISTORY_H
  2. #define _IHISTORY_H
  3. #include "AeeStdLib.h"
  4. #include "AeeText.h"
  5. #include "AeeMenu.h"
  6. #include "IStack.h"
  7. //////////////////////////////////////////////////////////////////
  8. // 输入窗口的实现 //
  9. ////////////////////////////////////////////////////////////////// 
  10. //文本输入控件的类型
  11. /*typedef enum
  12. {
  13. IT_TEXT,
  14. IT_PASSWORD,
  15. IT_NUMBER
  16. }TInputType;*/
  17. //文本输入控件的相关信息
  18. /*typedef struct _InputTextInfo
  19. {
  20. TInputType  m_inputType;
  21. AECHAR*          m_pTitle;
  22. AECHAR*          m_pText;
  23. }InputTextInfo;*/
  24. //输入窗口数据结构的定义
  25. typedef struct _IHistoryWin
  26. {
  27. IMenuCtl*     m_pMenuCtl;
  28. IMenuCtl*     m_pSoftKeyCtl;
  29. }IHistoryWin;
  30. boolean HistoryDlg();
  31. void*   HistoryWIN_Create(IShell* pShell,void* pParam);
  32. boolean HistoryWIN_Release(IShell* pShell,void** pWin);
  33. boolean HistoryWIN_Redraw(IShell* pShell,void* pWin);
  34. boolean HISTORYWIN_EventHandle(void* pWin,AEEEvent eCode, uint16 wParam, uint32 dwParam);
  35. #endif