OptionReplyDlg.h
上传用户:zslianheng
上传日期:2013-04-03
资源大小:946k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Visual C++

  1. /***************************************************************************
  2.  *                                                                         *
  3.  *   This program is free software; you can redistribute it and/or modify  *
  4.  *   it under the terms of the GNU General Public License as published by  *
  5.  *   the Free Software Foundation; either version 2 of the License, or     *
  6.  *   (at your option) any later version.                                   *
  7.  *                                                                         *
  8.  *   copyright            : (C) 2002 by Zhang Yong                         *
  9.  *   email                : z-yong163@163.com                              *
  10.  ***************************************************************************/
  11. #if !defined(AFX_OPTIONREPLYDLG_H__4128E474_876B_449D_BFEC_9621DF817ECA__INCLUDED_)
  12. #define AFX_OPTIONREPLYDLG_H__4128E474_876B_449D_BFEC_9621DF817ECA__INCLUDED_
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16. // OptionReplyDlg.h : header file
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. // COptionReplyDlg dialog
  20. class COptionReplyDlg : public CPropertyPage
  21. {
  22. DECLARE_DYNCREATE(COptionReplyDlg)
  23. // Construction
  24. public:
  25. COptionReplyDlg();
  26. ~COptionReplyDlg();
  27. // Dialog Data
  28. //{{AFX_DATA(COptionReplyDlg)
  29. enum { IDD = IDD_OPTION_REPLY };
  30. CComboBox m_cmbQuickReply;
  31. CComboBox m_cmbAutoReply;
  32. BOOL m_autoSwitchStatus;
  33. BOOL m_autoCancelAway;
  34. int m_autoStatusTime;
  35. int m_autoStatus;
  36. //}}AFX_DATA
  37. // Overrides
  38. // ClassWizard generate virtual function overrides
  39. //{{AFX_VIRTUAL(COptionReplyDlg)
  40. public:
  41. virtual void OnOK();
  42. protected:
  43. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44. //}}AFX_VIRTUAL
  45. private:
  46. void enableControls(BOOL enable);
  47. CStringList autoReplyList;
  48. CStringList quickReplyList;
  49. int curAutoReply;
  50. int curQuickReply;
  51. // Implementation
  52. protected:
  53. // Generated message map functions
  54. //{{AFX_MSG(COptionReplyDlg)
  55. afx_msg void OnAutoReply();
  56. virtual BOOL OnInitDialog();
  57. afx_msg void OnAddAutoReply();
  58. afx_msg void OnDelAutoReply();
  59. afx_msg void OnSelchangeAutoReply();
  60. afx_msg void OnAddQuickReply();
  61. afx_msg void OnDelQuickReply();
  62. afx_msg void OnSelchangeQuickReply();
  63. afx_msg void OnAutoSwitchStatus();
  64. //}}AFX_MSG
  65. DECLARE_MESSAGE_MAP()
  66. };
  67. //{{AFX_INSERT_LOCATION}}
  68. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  69. #endif // !defined(AFX_OPTIONREPLYDLG_H__4128E474_876B_449D_BFEC_9621DF817ECA__INCLUDED_)