IPDRIVW.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // ipdrivw.h : interface of the CDriverView class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. class CDriverView : public CFormView
  13. {
  14. protected: // create from serialization only
  15.     CDriverView();
  16.     DECLARE_DYNCREATE(CDriverView)
  17. public:
  18.     //{{AFX_DATA(CDriverView)
  19.     enum { IDD = IDD_IPDRIVE_FORM };
  20.     CEdit   m_toValue;
  21.     CComboBox   m_toType;
  22.     CEdit   m_ctrlValue;
  23.     CComboBox   m_ctrlType;
  24.     //}}AFX_DATA
  25. // Attributes
  26. public:
  27.     CDriverDoc* GetDocument();
  28. // Operations
  29. public:
  30. // Overrides
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CDriverView)
  33.     public:
  34.     virtual void OnInitialUpdate();
  35.     protected:
  36.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37.     //}}AFX_VIRTUAL
  38. // Implementation
  39. public:
  40.     virtual ~CDriverView();
  41. #ifdef _DEBUG
  42.     virtual void AssertValid() const;
  43.     virtual void Dump(CDumpContext& dc) const;
  44. #endif
  45. protected:
  46.     // formatting strings for the dialog
  47.     CString m_strCurrentCount;
  48.     CString m_strLastType;
  49.     CString m_strLastValue;
  50.     BOOL m_bInitialized;
  51.     _variant_t GetFromVariant();
  52.     _variant_t GetToVariant();
  53.     void UpdateCurrentCount();
  54.     void UpdateToNothing();
  55.     void UpdateCurrentVariant(const _variant_t& va);
  56. // Generated message map functions
  57. protected:
  58.     //{{AFX_MSG(CDriverView)
  59.     afx_msg void OnLookup();
  60.     afx_msg void OnRemove();
  61.     afx_msg void OnAdd();
  62.     afx_msg void OnButton1();
  63.     afx_msg void OnButton2();
  64.     //}}AFX_MSG
  65.     DECLARE_MESSAGE_MAP()
  66. };
  67. #ifndef _DEBUG  // debug version in ipdrivw.cpp
  68. inline CDriverDoc* CDriverView::GetDocument()
  69.    { return (CDriverDoc*)m_pDocument; }
  70. #endif
  71. /////////////////////////////////////////////////////////////////////////////