AjaxParserDlg.h
上传用户:kalinte
上传日期:2013-04-07
资源大小:127k
文件大小:2k
源码类别:

DNA

开发平台:

C++ Builder

  1. // AjaxParserDlg.h : header file
  2. //
  3. #if !defined(AFX_AJAXPARSERDLG_H__9B06BE87_8A8B_41C7_945A_69C041454756__INCLUDED_)
  4. #define AFX_AJAXPARSERDLG_H__9B06BE87_8A8B_41C7_945A_69C041454756__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "ajax.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CAjaxParserDlg dialog
  11. class CAjaxParserDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. void Log(LPCTSTR psz);
  16. void Logln(LPCTSTR psz);
  17. CAjaxParserDlg(CWnd* pParent = NULL); // standard constructor
  18. int Route(int nCurState, BYTE c);
  19. void Accept(int nCurrent, int nNext, LPCTSTR psz, int nLen);
  20. // Dialog Data
  21. //{{AFX_DATA(CAjaxParserDlg)
  22. enum { IDD = IDD_AJAXPARSER_DIALOG };
  23. CEdit m_edit;
  24. //}}AFX_DATA
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CAjaxParserDlg)
  27. protected:
  28. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. protected:
  32. HICON m_hIcon;
  33. StateChangeRuleArray m_ruleArr;
  34. StateArray m_stateArr;
  35. // Generated message map functions
  36. //{{AFX_MSG(CAjaxParserDlg)
  37. virtual BOOL OnInitDialog();
  38. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  39. afx_msg void OnPaint();
  40. afx_msg HCURSOR OnQueryDragIcon();
  41. afx_msg void OnParse();
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_AJAXPARSERDLG_H__9B06BE87_8A8B_41C7_945A_69C041454756__INCLUDED_)