GShiEdit.h
上传用户:wenjimin
上传日期:2014-08-12
资源大小:111k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. #if !defined(AFX_GSHIEDIT_H__DA25FEE8_09DC_40F1_8A71_5F47498F80F4__INCLUDED_)
  2. #define AFX_GSHIEDIT_H__DA25FEE8_09DC_40F1_8A71_5F47498F80F4__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // GShiEdit.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CGShiEdit dialog
  10. class CGShiEdit : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CGShiEdit(CWnd* pParent = NULL);   // standard constructor
  15. BOOL m_isFirst;
  16. void SetFormatRange(int nStart, int nEnd, BOOL bBold, COLORREF clr);
  17. // Dialog Data
  18. //{{AFX_DATA(CGShiEdit)
  19. enum { IDD = IDD_GONGSHI };
  20. CEdit m_edit2;
  21. CEdit m_edit1;
  22. CRichEditCtrl m_RichEdit;
  23. BOOL m_passw;
  24. //}}AFX_DATA
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CGShiEdit)
  28. protected:
  29. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. protected:
  33. int IsConstant(LPCTSTR lpszSymbol);
  34. void ChangeCase(int nStart, int nEnd, LPCTSTR lpszStr);
  35. BOOL IsStringQuote(TCHAR ch);
  36. int IsKeyword(LPCTSTR lpszSymbol);//是关键词
  37. struct SymbolColor
  38. {
  39. COLORREF clrColor;
  40. BOOL bBold;
  41. };
  42. BOOL m_bInForcedChange;
  43. BOOL m_bCaseSensitive;
  44. BOOL m_bChangeCase;
  45. TCHAR m_chComment;
  46. TCHAR m_chComment2;
  47. CString m_strComment;
  48. CString m_strStringQuotes;
  49. CString m_strKeywords;
  50. CString m_strKeywordsLower;
  51. CString m_strConstants;
  52. CString m_strConstantsLower;
  53. SymbolColor m_icComment;
  54. SymbolColor m_icNumber;
  55. SymbolColor m_icString;
  56. SymbolColor m_icKeyword;
  57. SymbolColor m_icConstant;
  58. CHARRANGE m_crOldSel;
  59. void FormatTextRange(int nStart, int nEnd);
  60.     void FormatTextLines(int nStart, int nEnd);
  61. // Generated message map functions
  62. //{{AFX_MSG(CGShiEdit)
  63. virtual BOOL OnInitDialog();
  64. afx_msg void OnSize(UINT nType, int cx, int cy);
  65. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  66. afx_msg void OnChangeRichedit();
  67. afx_msg void OnButton7();
  68. afx_msg void OnCheck1();
  69. //}}AFX_MSG
  70. DECLARE_MESSAGE_MAP()
  71. };
  72. //{{AFX_INSERT_LOCATION}}
  73. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  74. #endif // !defined(AFX_GSHIEDIT_H__DA25FEE8_09DC_40F1_8A71_5F47498F80F4__INCLUDED_)