TarEdit.h
上传用户:czjinwang
上传日期:2007-01-12
资源大小:2484k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*============================================================================
  2.   Copyright (c) 1996
  3.   Hewlett-Packard Company
  4.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  5.   Permission to use, copy, modify, distribute and/or sell this software 
  6.   and/or its documentation is hereby granted without fee. User agrees 
  7.   to display the above copyright notice and this license notice in all 
  8.   copies of the software and any documentation of the software. User 
  9.   agrees to assume all liability for the use of the software; Hewlett-Packard 
  10.   makes no representations about the suitability of this software for any 
  11.   purpose. It is provided "AS-IS without warranty of any kind,either express 
  12.   or implied. User hereby grants a royalty-free license to any and all 
  13.   derivatives based upon this software code base. 
  14.  
  15. =============================================================================*/
  16. // TarEdit.h : header file
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. // TarEdit dialog
  20. class TarEdit : public CPropertyPage
  21. {
  22. DECLARE_DYNCREATE(TarEdit)
  23. // Construction
  24. public:
  25. TarEdit();
  26. ~TarEdit();
  27. // Dialog Data
  28. //{{AFX_DATA(TarEdit)
  29. enum { IDD = IDD_TAREDIT };
  30. CString m_address;
  31. CString m_alias;
  32. CString m_read_community;
  33. CString m_write_community;
  34. UINT m_timeout;
  35. UINT m_retries;
  36. //}}AFX_DATA
  37. // Overrides
  38. // ClassWizard generate virtual function overrides
  39. //{{AFX_VIRTUAL(TarEdit)
  40. public:
  41. virtual void OnCancel();
  42. protected:
  43. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. protected:
  47. void load_target_list();
  48. void toggle_controls( int state);
  49. // Generated message map functions
  50. //{{AFX_MSG(TarEdit)
  51. virtual BOOL OnInitDialog();
  52. afx_msg void OnButtonNew();
  53. afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  54. afx_msg void OnButtonSave();
  55. afx_msg void OnButtonEdit();
  56. afx_msg void OnDblclkListTargets();
  57. afx_msg void OnButtonDelete();
  58. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  59. //}}AFX_MSG
  60. DECLARE_MESSAGE_MAP()
  61. };