ExportOption.h
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. #if !defined(AFX_EXPORTOPTION_H__397174B1_B794_4182_AD46_192A64265D78__INCLUDED_)
  2. #define AFX_EXPORTOPTION_H__397174B1_B794_4182_AD46_192A64265D78__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ExportOption.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CExportOption dialog
  10. /***
  11. K线数据导出选项对话框,选择导出日期,是否除权等
  12. */
  13. class CExportOption : public CPropertyPageEx
  14. {
  15. DECLARE_DYNCREATE(CExportOption)
  16. // Construction
  17. public:
  18. CExportOption();
  19. CExportOption(UINT nIDCaption, UINT nIDTitle, UINT nIDSubTitle);
  20. ~CExportOption();
  21. DWORD m_dwButtonFlags;
  22. void StoreProfile( );
  23. void LoadProfile( );
  24. // dialog return value
  25. BOOL m_bTimeAll;
  26. BOOL m_bTimeDefine;
  27. BOOL m_bNoResumeDR;
  28. BOOL m_bResumeDRUp;
  29. BOOL m_bResumeDRDown;
  30. // Dialog Data
  31. //{{AFX_DATA(CExportOption)
  32. enum { IDD = IDD_EXPORTOPTION };
  33. CButton m_btnAutoResumeDR;
  34. CDateTimeCtrl m_ctrlTimeAutoResumeDRBegin;
  35. CEdit m_editAutoResumeDRLimit;
  36. CDateTimeCtrl m_ctrlTimeEnd;
  37. CDateTimeCtrl m_ctrlTimeBegin;
  38. CSPTime m_tmBegin;
  39. CSPTime m_tmEnd;
  40. BOOL m_bKMonth;
  41. BOOL m_bKWeek;
  42. BOOL m_bKDay;
  43. BOOL m_bKMin60;
  44. BOOL m_bKMin30;
  45. BOOL m_bKMin15;
  46. BOOL m_bKMin5;
  47. BOOL m_bAutoResumeDR;
  48. CSPTime m_tmAutoResumeDRBegin;
  49. UINT m_nAutoResumeDRLimit;
  50. //}}AFX_DATA
  51. // Overrides
  52. // ClassWizard generate virtual function overrides
  53. //{{AFX_VIRTUAL(CExportOption)
  54. public:
  55. virtual BOOL PreTranslateMessage(MSG* pMsg);
  56. protected:
  57. virtual LRESULT OnWizardBack();
  58. virtual BOOL OnSetActive();
  59. virtual LRESULT OnWizardNext();
  60. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  61. //}}AFX_VIRTUAL
  62. // Implementation
  63. protected:
  64. // Generated message map functions
  65. //{{AFX_MSG(CExportOption)
  66. virtual BOOL OnInitDialog();
  67. afx_msg void OnTimeAll();
  68. afx_msg void OnTimeDefine();
  69. afx_msg void OnNoresumedr();
  70. afx_msg void OnResumedrup();
  71. afx_msg void OnResumedrdown();
  72. afx_msg void OnAutoresumedr();
  73. //}}AFX_MSG
  74. DECLARE_MESSAGE_MAP()
  75. };
  76. //{{AFX_INSERT_LOCATION}}
  77. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  78. #endif // !defined(AFX_EXPORTOPTION_H__397174B1_B794_4182_AD46_192A64265D78__INCLUDED_)